Home
last modified time | relevance | path

Searched refs:suggestionReply (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/
H A Dqdeclarativesearchsuggestionmodel.cpp327 … QPlaceSearchSuggestionReply *suggestionReply = qobject_cast<QPlaceSearchSuggestionReply *>(reply); in queryFinished() local
328 m_suggestions = suggestionReply->suggestions(); in queryFinished()
335 if (suggestionReply->error() != QPlaceReply::NoError) in queryFinished()
336 setStatus(Error, suggestionReply->errorString()); in queryFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/
H A Drequesthandler.h149 /* QPlaceSearchSuggestion * */suggestionReply = manager->searchSuggestions(request); in suggestion()
150 connect(suggestionReply, SIGNAL(finished()), this, SLOT(handleSuggestionReply())); in suggestion()
389 if (suggestionReply->error() == QPlaceReply::NoError) { in handleSuggestionReply()
390 foreach (const QString &suggestion, suggestionReply->suggestions()) in handleSuggestionReply()
394 suggestionReply->deleteLater(); //discard reply in handleSuggestionReply()
395 suggestionReply = 0; in handleSuggestionReply()
526 QPlaceSearchSuggestionReply *suggestionReply; variable