Home
last modified time | relevance | path

Searched refs:QPlaceSearchResult (Results 1 – 25 of 28) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplacesearchresult.cpp49 inline QPlaceSearchResultPrivate *QPlaceSearchResult::d_func() in d_func()
54 inline const QPlaceSearchResultPrivate *QPlaceSearchResult::d_func() const in d_func()
105 QPlaceSearchResult::QPlaceSearchResult() in QPlaceSearchResult() function in QPlaceSearchResult
113 QPlaceSearchResult::QPlaceSearchResult(const QPlaceSearchResult &other) in QPlaceSearchResult() function in QPlaceSearchResult
121 QPlaceSearchResult::~QPlaceSearchResult() in ~QPlaceSearchResult()
129 QPlaceSearchResult &QPlaceSearchResult::operator =(const QPlaceSearchResult &other) in operator =()
142 bool QPlaceSearchResult::operator==(const QPlaceSearchResult &other) const in operator ==()
163 QPlaceSearchResult::SearchResultType QPlaceSearchResult::type() const in type()
174 QString QPlaceSearchResult::title() const in title()
176 Q_D(const QPlaceSearchResult); in title()
[all …]
H A Dqplacesearchresult.h53 Class(const QPlaceSearchResult &other);
59 class Q_LOCATION_EXPORT QPlaceSearchResult
62 QPlaceSearchResult();
63 QPlaceSearchResult(const QPlaceSearchResult &other);
65 virtual ~QPlaceSearchResult();
67 QPlaceSearchResult &operator=(const QPlaceSearchResult &other);
69 bool operator==(const QPlaceSearchResult &other) const;
70 bool operator!=(const QPlaceSearchResult &other) const {
89 explicit QPlaceSearchResult(QPlaceSearchResultPrivate *d);
99 Q_DECLARE_TYPEINFO(QPlaceSearchResult, Q_MOVABLE_TYPE);
[all …]
H A Dqplacesearchresult_p.h65 …Class::Class(const QPlaceSearchResult &other) : QPlaceSearchResult() { Class##Private::copyIfPossi…
69 virtual QPlaceSearchResult::SearchResultType type() const override {return ResultType;} \
70 …IfPossible(QSharedDataPointer<QPlaceSearchResultPrivate> &d_ptr, const QPlaceSearchResult &other) \
87 &extract_d(const QPlaceSearchResult &other) { return other.d_ptr; } in extract_d()
90 …virtual QPlaceSearchResult::SearchResultType type() const { return QPlaceSearchResult::UnknownSea… in type()
91 …pyIfPossible(QSharedDataPointer<QPlaceSearchResultPrivate> &d_ptr, const QPlaceSearchResult &other) in copyIfPossible()
93 if (other.type() == QPlaceSearchResult::UnknownSearchResult) in copyIfPossible()
H A Dqplacesearchreply.h45 class QPlaceSearchResult; variable
57 QList<QPlaceSearchResult> results() const;
64 void setResults(const QList<QPlaceSearchResult> &results);
H A Dqplacesearchreply.cpp48 QList<QPlaceSearchResult> results;
94 QList<QPlaceSearchResult> QPlaceSearchReply::results() const in results()
103 void QPlaceSearchReply::setResults(const QList<QPlaceSearchResult> &results) in setResults()
H A Dqplacematchrequest.cpp208 void QPlaceMatchRequest::setResults(const QList<QPlaceSearchResult> &results) in setResults()
212 foreach (const QPlaceSearchResult &result, results) { in setResults()
213 if (result.type() == QPlaceSearchResult::PlaceResult) { in setResults()
H A Dqplaceresult.h47 class Q_LOCATION_EXPORT QPlaceResult : public QPlaceSearchResult
53 QPlaceResult::QPlaceResult(const QPlaceSearchResult &other);
H A Dqplaceproposedsearchresult_p.h65 …Q_DEFINE_SEARCHRESULT_PRIVATE_HELPER(QPlaceProposedSearchResult, QPlaceSearchResult::ProposedSearc…
H A Dqplaceresult_p.h65 Q_DEFINE_SEARCHRESULT_PRIVATE_HELPER(QPlaceResult, QPlaceSearchResult::PlaceResult)
H A Dqplaceproposedsearchresult.h46 class Q_LOCATION_EXPORT QPlaceProposedSearchResult : public QPlaceSearchResult
H A Dqplacematchrequest.h66 void setResults(const QList<QPlaceSearchResult> &results);
H A Dqplaceproposedsearchresult.cpp77 : QPlaceSearchResult(new QPlaceProposedSearchResultPrivate) in QPlaceProposedSearchResult()
H A Dqplaceresult.cpp95 : QPlaceSearchResult(new QPlaceResultPrivate) in QPlaceResult()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qproposedsearchresult/
H A Dtst_qproposedsearchresult.cpp45 bool checkType(const QPlaceSearchResult &result);
46 void detach(QPlaceSearchResult *result);
76 bool tst_QPlaceProposedSearchResult::checkType(const QPlaceSearchResult &result) in checkType()
78 return result.type() == QPlaceSearchResult::ProposedSearchResult; in checkType()
81 void tst_QPlaceProposedSearchResult::detach(QPlaceSearchResult *result) in detach()
96 QCOMPARE(result.type(), QPlaceSearchResult::ProposedSearchResult); in constructorTest()
123 QPlaceSearchResult searchResult(result); in constructorTest()
127 QVERIFY(searchResult.type() == QPlaceSearchResult::ProposedSearchResult); in constructorTest()
133 QPlaceSearchResult searchResult2(searchResult); in constructorTest()
138 QVERIFY(searchResult2.type() == QPlaceSearchResult::ProposedSearchResult); in constructorTest()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchresult/
H A Dtst_qplacesearchresult.cpp49 QPlaceSearchResult result; in constructorTest()
51 QCOMPARE(result.type(), QPlaceSearchResult::UnknownSearchResult); in constructorTest()
62 QPlaceSearchResult result2(result); in constructorTest()
72 QPlaceSearchResult result; in title()
82 QPlaceSearchResult result; in icon()
95 QPlaceSearchResult result1; in operators()
96 QPlaceSearchResult result2; in operators()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplaceresult/
H A Dtst_qplaceresult.cpp44 bool checkType(const QPlaceSearchResult &);
45 void detach(QPlaceSearchResult *);
80 bool tst_QPlaceResult::checkType(const QPlaceSearchResult &result) in checkType()
82 return result.type() == QPlaceSearchResult::PlaceResult; in checkType()
85 void tst_QPlaceResult::detach(QPlaceSearchResult * result) in detach()
98 QCOMPARE(result.type(), QPlaceSearchResult::PlaceResult); in constructorTest()
130 QPlaceSearchResult searchResult(result); in constructorTest()
134 QVERIFY(searchResult.type() == QPlaceSearchResult::PlaceResult); in constructorTest()
140 QPlaceSearchResult searchResult2(searchResult); in constructorTest()
145 QVERIFY(searchResult2.type() == QPlaceSearchResult::PlaceResult); in constructorTest()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/
H A Dqdeclarativesearchresultmodel_p.h81 UnknownSearchResult = QPlaceSearchResult::UnknownSearchResult,
82 PlaceResult = QPlaceSearchResult::PlaceResult,
83 ProposedSearchResult = QPlaceSearchResult::ProposedSearchResult
169 QList<QPlaceSearchResult> resultsFromPages() const;
175 QMap<int, QList<QPlaceSearchResult>> m_pages;
176 QList<QPlaceSearchResult> m_results;
177 QList<QPlaceSearchResult> m_resultsBuffer;
H A Dqdeclarativesearchresultmodel.cpp628 const QPlaceSearchResult &result = m_results.at(index.row()); in data()
639 if (result.type() == QPlaceSearchResult::PlaceResult) { in data()
645 if (result.type() == QPlaceSearchResult::PlaceResult) in data()
649 if (result.type() == QPlaceSearchResult::PlaceResult) { in data()
693 if (m_results.at(proposedSearchIndex).type() != QPlaceSearchResult::ProposedSearchResult) in updateWith()
903 const QPlaceSearchResult &result = m_results.at(i); in updateLayout()
905 if (result.type() == QPlaceSearchResult::PlaceResult) { in updateLayout()
913 } else if (result.type() == QPlaceSearchResult::ProposedSearchResult) { in updateLayout()
963 QList<QPlaceSearchResult> QDeclarativeSearchResultModel::resultsFromPages() const in resultsFromPages()
965 QList<QPlaceSearchResult> res; in resultsFromPages()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchreply/
H A Dtst_qplacesearchreply.cpp47 void setResults(const QList<QPlaceSearchResult> &results) { in setResults()
110 QList<QPlaceSearchResult> results; in resultsTest()
128 reply->setResults(QList<QPlaceSearchResult>()); in resultsTest()
129 QCOMPARE(reply->results(), QList<QPlaceSearchResult>()); in resultsTest()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/
H A Drequesthandler.h301 QList<QPlaceSearchResult> results; in matchPlaces()
317 foreach (const QPlaceSearchResult &result, searchReply->results()) { in processSearchReply()
318 if (result.type() == QPlaceSearchResult::PlaceResult) in processSearchReply()
332 foreach (const QPlaceSearchResult &result, searchReply->results()) { in handleSearchReply()
333 if (result.type() == QPlaceSearchResult::PlaceResult) { in handleSearchReply()
511 QPlaceSearchResult result; in convertSearchResult()
513 if (result.type() == QPlaceSearchResult::PlaceResult) { in convertSearchResult()
548 void setResults(const QList<QPlaceSearchResult> &results);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/
H A Dplacemanager_utils.cpp102 QList<QPlaceSearchResult> *results, in doSearch()
117 QList<QPlaceSearchResult> searchResults; in doSearch()
119 foreach (const QPlaceSearchResult &searchResult, searchResults) { in doSearch()
120 if (searchResult.type() == QPlaceSearchResult::PlaceResult) { in doSearch()
H A Dplacemanager_utils.h55 class QPlaceSearchResult; variable
80 QList<QPlaceSearchResult> *results,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacematchrequest/
H A Dtst_qplacematchrequest.cpp116 QList<QPlaceSearchResult> results; in resultsTest()
125 request.setResults(QList<QPlaceSearchResult>()); in resultsTest()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqplacesearchreplymapbox.cpp184 QList<QPlaceSearchResult> results; in onReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dplacesearchreply_esri.cpp131 QList<QPlaceSearchResult> results; in replyFinished()

12