| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/ |
| H A D | places.pri | 1 INCLUDEPATH += places 4 places/placemacro.h \ 6 places/qplace.h \ 7 places/qplaceattribute.h \ 8 places/qplacecontactdetail.h \ 9 places/qplacecategory.h \ 10 places/qplacecontent.h \ 11 places/qplacecontentreply.h \ 12 places/qplaceeditorial.h \ 13 places/qplaceimage.h \ [all …]
|
| H A D | qplacematchrequest.cpp | 57 QList<QPlace> places; member in QPlaceMatchRequestPrivate 68 places(other.places), in QPlaceMatchRequestPrivate() 80 places = other.places; in operator =() 89 return (places == other.places in operator ==() 95 places.clear(); in clear() 185 QList<QPlace> QPlaceMatchRequest::places() const in places() function in QPlaceMatchRequest 188 return d->places; in places() 196 void QPlaceMatchRequest::setPlaces(const QList<QPlace> places) in setPlaces() argument 199 d->places = places; in setPlaces() 211 QList<QPlace> places; in setResults() local [all …]
|
| H A D | qplacematchreply.cpp | 46 QList<QPlace> places; member in QPlaceMatchReplyPrivate 104 QList<QPlace> QPlaceMatchReply::places() const in places() function in QPlaceMatchReply 107 return d->places; in places() 113 void QPlaceMatchReply::setPlaces(const QList<QPlace> &places) in setPlaces() argument 116 d->places = places; in setPlaces()
|
| H A D | qplacematchrequest.h | 63 QList<QPlace> places() const; 64 void setPlaces(const QList<QPlace> places);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacematchrequest/ |
| H A D | tst_qplacematchrequest.cpp | 68 QList<QPlace> places; in constructorTest() local 69 places << place1 << place2; in constructorTest() 71 request.setPlaces(places); in constructorTest() 76 QCOMPARE(copy.places(), places); in constructorTest() 83 QCOMPARE(request.places().count(), 0); in placesTest() 91 QList<QPlace> places; in placesTest() local 92 places << place1 << place2; in placesTest() 94 request.setPlaces(places); in placesTest() 95 QCOMPARE(request.places(), places); in placesTest() 98 QCOMPARE(request.places().count(), 0); in placesTest() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/ |
| H A D | places.qdoc | 29 \page location-places-qml.html 34 The Places API allows users to discover places of interest and view 35 details about them, such as address and contact information. Some places may have 37 The Places API also facilitates management of places and 43 A \l Plugin is an abstraction for a backend. One \l Plugin might access places from a 44 REST server while another may access places from a local database. The following 169 In order to save bandwidth, sometimes a backend will only return places which 175 \snippet declarative/places.qml Place fetchDetails 178 Some backends may support saving and removing places. This can be done by 186 \snippet declarative/places.qml Place createAndSavePlace [all …]
|
| H A D | qtlocation-cpp.qdoc | 38 with maps, navigational data and places of interest. This is particularly useful 43 Then the Places API could be used to populate places on the Map or even 81 \annotatedlist QtLocation-places
|
| H A D | qtlocation-qml.qdoc | 40 can be places of business, entertainment, and so on. They may include 88 and geocoding, maps, and places, however the default plugin handles all 96 The following links provide more information about maps and places: 125 \annotatedlist qml-QtLocation5-places
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/doc/src/ |
| H A D | places.qdoc | 29 \example places 36 \image places.png 51 desired category. The place search query will be for places that are near the current location 58 Clicking on a search result will display details about the place. If a places has rich content 60 To find similar places click the "Find similar" button. 69 \snippet places/places.qml CategoryModel model 78 \snippet places/views/CategoryView.qml CategoryModel view 94 \snippet places/views/CategoryDelegate.qml CategoryModel delegate text 98 \snippet places/views/CategoryDelegate.qml CategoryModel delegate arrow 109 \snippet places/places.qml PlaceSearchSuggestionModel search text changed 1 [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_object.c | 130 struct ttm_place *places = abo->placements; in amdgpu_bo_placement_from_domain() local 137 places[c].fpfn = 0; in amdgpu_bo_placement_from_domain() 138 places[c].lpfn = 0; in amdgpu_bo_placement_from_domain() 139 places[c].mem_type = TTM_PL_VRAM; in amdgpu_bo_placement_from_domain() 140 places[c].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED; in amdgpu_bo_placement_from_domain() 143 places[c].lpfn = visible_pfn; in amdgpu_bo_placement_from_domain() 145 places[c].flags |= TTM_PL_FLAG_TOPDOWN; in amdgpu_bo_placement_from_domain() 148 places[c].flags |= TTM_PL_FLAG_CONTIGUOUS; in amdgpu_bo_placement_from_domain() 153 places[c].fpfn = 0; in amdgpu_bo_placement_from_domain() 154 places[c].lpfn = 0; in amdgpu_bo_placement_from_domain() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/ |
| H A D | placemanager_utils.h | 74 static void doSavePlaces(QPlaceManager *manager, QList<QPlace> &places); 77 static void doSavePlaces(QPlaceManager *manager, const QList<QPlace *> &places); 124 QList<QPlace> *places, 133 static void setVisibility(QList<QPlace *>places, QLocation::Visibility visibility); 144 void doSavePlaces(QList<QPlace> &places) { in doSavePlaces() argument 145 return doSavePlaces(placeManager, places); in doSavePlaces() 148 void doSavePlaces(const QList<QPlace *> &places) { in doSavePlaces() argument 149 return doSavePlaces(placeManager, places); in doSavePlaces() 216 QList<QPlace> *places, 219 places, expectedError);
|
| H A D | placemanager_utils.cpp | 71 void PlaceManagerUtils::doSavePlaces(QPlaceManager *manager, QList<QPlace> &places) in doSavePlaces() argument 75 foreach (QPlace place, places) { in doSavePlaces() 84 void PlaceManagerUtils::doSavePlaces(QPlaceManager *manager, const QList<QPlace *> &places) in doSavePlaces() argument 89 foreach (QPlace *place, places) { in doSavePlaces() 252 QList<QPlace> *places, in doMatch() argument 258 *places = reply->places(); in doMatch() 372 void PlaceManagerUtils::setVisibility(QList<QPlace *> places, QLocation::Visibility visibility) in setVisibility() argument 374 foreach (QPlace *place, places) in setVisibility()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacematchreply/ |
| H A D | tst_qplacematchreply.cpp | 43 void setPlaces(const QList<QPlace> &places) { in setPlaces() argument 44 QPlaceMatchReply::setPlaces(places); in setPlaces() 95 QList<QPlace> places; in requestTest() local 96 places << place1 << place2; in requestTest() 98 request.setPlaces(places); in requestTest()
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.at91 | 20 U-Boot environment variables can be stored at different places: 42 U-Boot environment variables can be stored at different places: 63 U-Boot environment variables can be stored at different places: 86 U-Boot environment variables can be stored at different places: 103 U-Boot environment variables can be stored at different places: 120 U-Boot environment variables can be stored at different places: 141 U-Boot environment variables can be stored at different places:
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places_list/doc/src/ |
| H A D | places_list.qdoc | 33 …\brief The Places List example demonstrates how to search for and display a list of places using a… 38 The \c {Places List} example demonstrates how to search for a list of places 40 for places associated with the term \c pizza is performed. 44 To write a QML application that will show places in a list, we start by 50 from where places are sourced from. Depending on the type of the plugin, 60 search parameters and perform a places search operation. For illustrative
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places_map/doc/src/ |
| H A D | places_map.qdoc | 33 \brief The Places Map example demonstrates how to search for and display a list of places 38 available, it uses Brisbane/Australia. Subsequently a search for places 45 To write the QML application that will show places on a map, we start by 51 from where places are sourced from. Depending on the chosen plugin 59 search parameters and perform a places search operation. For illustrative 78 location and find "pizza" places in the new area. The position information
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/ |
| H A D | tst_placesearchmodel.qml | 117 places: [ 127 places: [ 137 places: [ 145 places: [ 154 places: [ 164 places: [ ] 192 if (data.places.length > 0) 202 verify(data.places.indexOf(place.placeId) >= 0); 217 if (data.places.length > 0)
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/ |
| H A D | places.pro | 8 places.qrc 11 places.qml \ 42 target.path = $$[QT_INSTALL_EXAMPLES]/location/places
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/ |
| H A D | location.pro | 39 include(places/places.pri) 45 # FIXME: this should be moved out of plugin source code, geojson is referenced from other places
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/ |
| H A D | changes-5.5.1 | 28 - Improved places-list and places-map examples. 32 The required osm.places.host parameter was not handled at all.
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/plugins/ |
| H A D | places-backend.qdoc | 29 \page location-places-backend.html 32 \brief The Places backend is responsible for managing a places datastore whether 41 A places backend implementer needs to derive from QPlaceManagerEngine and provide implementations 52 \snippet places/requesthandler.h Implement reply pt1 54 \snippet places/requesthandler.h Implement reply pt2 61 \snippet places/requesthandler.h Trigger done 109 Sometimes a situation may arise where we wish to cross-reference and match places between managers. 110 Such a situation may arise where one manager provides read-only access to places (origin manager), … 132 This indicates that the identifiers of places in the QPlaceMatchRequest should be matched against t… 143 and a parameter value of the distance two places must be in order to detect a match. for example i…
|
| H A D | nokia.qdoc | 156 \li here.places.host 159 \li here.places.api_version 160 \li Version of the REST API used by the places manager. Currently versions 1 and 2 are 191 The HERE provider remotely accesses places (read-only) from a REST based server. The specific capa… 242 \li Notifications for added/removed places/categories 286 The HERE plugin only supports provision of a \e {search center} when searching for places via \l Pl… 315 At the time of writing, it is known that some places provide \c openingHours 318 places provided by the plugin will have the \c x_provider 322 The extended attributes and rich content of places are not permitted 327 (Note that the HERE plugin is a read-only source of places and
|
| /OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/aicasm/ |
| H A D | aicasm_gram.y | 95 expression_t *places, symbol_ref_t *src, int ret); 1723 format_2_instr(int opcode, symbol_ref_t *dest, expression_t *places, in format_2_instr() argument 1746 if (places->value > 8 || places->value <= 0) { in format_2_instr() 1752 if (places->value == 8) in format_2_instr() 1755 shift_control = (places->value << 4) | places->value; in format_2_instr() 1758 if (places->value == 8) { in format_2_instr() 1761 shift_control = (places->value << 4) in format_2_instr() 1762 | (8 - places->value) in format_2_instr() 1767 shift_control = places->value & 0x7; in format_2_instr() 1770 shift_control = (8 - places->value) | 0x08; in format_2_instr() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativegeoserviceprovider.cpp | 832 QGeoServiceProvider::PlacesFeatures places = in matches() local 835 if (places == QGeoServiceProvider::AnyPlacesFeatures) { in matches() 839 if ((provider->placesFeatures() & places) != places) in matches()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-bus-usb-devices-usbsevseg | 41 Description: Controls the decimal places on the device. 44 the value k and has 1 or more decimal places set,
|