Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/
H A Drequesthandler.h137 /*QPlaceContentReply * */ contentReply = manager->getPlaceContent(request); in images()
138 connect(contentReply, SIGNAL(finished()), this, SLOT(handleImagesReply())); in images()
251 QPlaceContentReply *contentReply = manager->getPlaceContent(request); in content() local
255 Q_UNUSED(contentReply); in content()
360 if (contentReply->error() == QPlaceReply::NoError) { in handleImagesReply()
361 const auto content = contentReply->content(); in handleImagesReply()
370 foreach (const QPlaceImage &image, contentReply->content()) { in handleImagesReply()
378 place.insertContent(contentReply->request().contentType(), contentReply->content()); in handleImagesReply()
379 … place.setTotalContentCount(contentReply->request().contentType(), contentReply->totalCount()); in handleImagesReply()
382 contentReply->deleteLater(); in handleImagesReply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/places_semiauto/
H A Dtst_places.cpp641 QPlaceContentReply *contentReply = placeManager->getPlaceContent(request); in content() local
642 QSignalSpy contentSpy(contentReply, SIGNAL(finished())); in content()
644 QVERIFY(contentReply->totalCount() > 0); in content()
646 if (contentReply->totalCount() >= 2) { in content()