| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/ |
| H A D | qplaceidreply.cpp | 44 QPlaceIdReplyPrivate(QPlaceIdReply::OperationType operationType) in QPlaceIdReplyPrivate() 48 QPlaceIdReply::OperationType operationType; 85 QPlaceIdReply::QPlaceIdReply(QPlaceIdReply::OperationType operationType, QObject *parent) in QPlaceIdReply() function in QPlaceIdReply 91 QPlaceIdReply::~QPlaceIdReply() in ~QPlaceIdReply() 98 QPlaceReply::Type QPlaceIdReply::type() const in type() 108 QPlaceIdReply::OperationType QPlaceIdReply::operationType() const in operationType() 110 Q_D(const QPlaceIdReply); in operationType() 119 QString QPlaceIdReply::id() const in id() 121 Q_D(const QPlaceIdReply); in id() 128 void QPlaceIdReply::setId(const QString &identifier) in setId() [all …]
|
| H A D | qplacemanagerengine.cpp | 183 QPlaceIdReply *QPlaceManagerEngine::savePlace(const QPlace &place) in savePlace() 188 QPlaceIdReply::SavePlace, this); in savePlace() 194 QPlaceIdReply *QPlaceManagerEngine::removePlace(const QString &placeId) in removePlace() 199 QPlaceIdReply::RemovePlace, this); in removePlace() 206 QPlaceIdReply *QPlaceManagerEngine::saveCategory(const QPlaceCategory &category, in saveCategory() 213 QPlaceIdReply::SaveCategory, this); in saveCategory() 220 QPlaceIdReply *QPlaceManagerEngine::removeCategory(const QString &categoryId) in removeCategory() 225 QPlaceIdReply::RemoveCategory, this); in removeCategory()
|
| H A D | qplaceidreply.h | 46 class Q_LOCATION_EXPORT QPlaceIdReply : public QPlaceReply 58 explicit QPlaceIdReply(OperationType operationType, QObject *parent = nullptr); 59 virtual ~QPlaceIdReply(); 69 Q_DISABLE_COPY(QPlaceIdReply) 70 Q_DECLARE_PRIVATE(QPlaceIdReply)
|
| H A D | qplacemanager.h | 80 QPlaceIdReply *savePlace(const QPlace &place); 81 QPlaceIdReply *removePlace(const QString &placeId); 83 … QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId = QString()); 84 QPlaceIdReply *removeCategory(const QString &categoryId);
|
| H A D | qplacemanagerengine.h | 70 virtual QPlaceIdReply *savePlace(const QPlace &place); 71 virtual QPlaceIdReply *removePlace(const QString &placeId); 73 virtual QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId); 74 virtual QPlaceIdReply *removeCategory(const QString &categoryId);
|
| H A D | qplacemanager.cpp | 242 QPlaceIdReply *QPlaceManager::savePlace(const QPlace &place) in savePlace() 252 QPlaceIdReply *QPlaceManager::removePlace(const QString &placeId) in removePlace() 263 QPlaceIdReply *QPlaceManager::saveCategory(const QPlaceCategory &category, const QString &parentId) in saveCategory() 273 QPlaceIdReply *QPlaceManager::removeCategory(const QString &categoryId) in removeCategory()
|
| H A D | unsupportedreplies_p.h | 157 class Q_LOCATION_PRIVATE_EXPORT QPlaceIdReplyUnsupported : public QPlaceIdReply 162 QPlaceIdReplyUnsupported(const QString &message, QPlaceIdReply::OperationType type, in QPlaceIdReplyUnsupported() 164 : QPlaceIdReply(type, parent) in QPlaceIdReplyUnsupported()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager_nokia/ |
| H A D | tst_qplacemanager_nokia.cpp | 50 Q_DECLARE_METATYPE(QPlaceIdReply *); 76 qRegisterMetaType<QPlaceIdReply *>(); in initTestCase() 92 QPlaceIdReply *savePlaceReply = placeManager->savePlace(place); in unsupportedFunctions() 95 QCOMPARE(savePlaceReply->operationType(), QPlaceIdReply::SavePlace); in unsupportedFunctions() 97 QPlaceIdReply *removePlaceReply = placeManager->removePlace(place.placeId()); in unsupportedFunctions() 100 QCOMPARE(removePlaceReply->operationType(), QPlaceIdReply::RemovePlace); in unsupportedFunctions() 104 QPlaceIdReply *saveCategoryReply = placeManager->saveCategory(category); in unsupportedFunctions() 107 QCOMPARE(saveCategoryReply->operationType(), QPlaceIdReply::SaveCategory); in unsupportedFunctions() 109 QPlaceIdReply *removeCategoryReply = placeManager->removeCategory(category.categoryId()); in unsupportedFunctions() 112 QCOMPARE(removeCategoryReply->operationType(), QPlaceIdReply::RemoveCategory); in unsupportedFunctions()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/placesv2/ |
| H A D | qplaceidreplyimpl.cpp | 41 QPlaceIdReplyImpl::QPlaceIdReplyImpl(QPlaceIdReply::OperationType type, QObject *parent) in QPlaceIdReplyImpl() 42 : QPlaceIdReply(type, parent) in QPlaceIdReplyImpl() 52 QPlaceIdReply::setId(id); in setId() 58 QPlaceIdReply::setError(error_, errorString); in setError()
|
| H A D | qplaceidreplyimpl.h | 44 class QPlaceIdReplyImpl : public QPlaceIdReply 49 QPlaceIdReplyImpl(QPlaceIdReply::OperationType type, QObject *parent = 0);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qplacemanagerengine_nokiav2.h | 82 QPlaceIdReply *savePlace(const QPlace &place) override; 83 QPlaceIdReply *removePlace(const QString &placeId) override; 85 QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId) override; 86 QPlaceIdReply *removeCategory(const QString &categoryId) override;
|
| H A D | qplacemanagerengine_nokiav2.cpp | 531 QPlaceIdReply *QPlaceManagerEngineNokiaV2::savePlace(const QPlace &place) in savePlace() 533 QPlaceIdReplyImpl *reply = new QPlaceIdReplyImpl(QPlaceIdReply::SavePlace, this); in savePlace() 544 QPlaceIdReply *QPlaceManagerEngineNokiaV2::removePlace(const QString &placeId) in removePlace() 546 QPlaceIdReplyImpl *reply = new QPlaceIdReplyImpl(QPlaceIdReply::RemovePlace, this); in removePlace() 557 QPlaceIdReply *QPlaceManagerEngineNokiaV2::saveCategory(const QPlaceCategory &category, const QStri… in saveCategory() 561 QPlaceIdReplyImpl *reply = new QPlaceIdReplyImpl(QPlaceIdReply::SaveCategory, this); in saveCategory() 572 QPlaceIdReply *QPlaceManagerEngineNokiaV2::removeCategory(const QString &categoryId) in removeCategory() 574 QPlaceIdReplyImpl *reply = new QPlaceIdReplyImpl(QPlaceIdReply::RemoveCategory, this); in removeCategory()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/ |
| H A D | placemanager_utils.cpp | 53 QPlaceIdReply *saveReply = manager->savePlace(place); in doSavePlace() 73 QPlaceIdReply *saveReply; in doSavePlaces() 86 QPlaceIdReply *saveReply; in doSavePlaces() 147 QPlaceIdReply *removeReply = manager->removePlace(place.placeId()); in doRemovePlace() 191 QPlaceIdReply *idReply = manager->saveCategory(category, parentId); in doSaveCategory() 207 QPlaceIdReply *idReply = manager->removeCategory(category.categoryId()); in doRemoveCategory()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/ |
| H A D | qplacemanagerengine_test.h | 160 class IdReply : public QPlaceIdReply 167 IdReply(QPlaceIdReply::OperationType type, QObject *parent = 0) 168 : QPlaceIdReply(type, parent) in QPlaceIdReply() function 525 QPlaceIdReply *savePlace(const QPlace &place) override in savePlace() 527 IdReply *reply = new IdReply(QPlaceIdReply::SavePlace, this); in savePlace() 548 QPlaceIdReply *removePlace(const QString &placeId) override in removePlace() 550 IdReply *reply = new IdReply(QPlaceIdReply::RemovePlace, this); in removePlace() 565 QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId) override in saveCategory() 567 IdReply *reply = new IdReply(QPlaceIdReply::SaveCategory, this); in saveCategory() 603 QPlaceIdReply *removeCategory(const QString &categoryId) override in removeCategory() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/ |
| H A D | qdeclarativecategory.cpp | 385 QPlaceIdReply *idReply = qobject_cast<QPlaceIdReply *>(m_reply); in replyFinished() 388 case QPlaceIdReply::SaveCategory: in replyFinished() 391 case QPlaceIdReply::RemoveCategory: in replyFinished()
|
| H A D | qdeclarativeplace.cpp | 671 QPlaceIdReply *idReply = qobject_cast<QPlaceIdReply *>(m_reply); in finished() 674 case QPlaceIdReply::SavePlace: in finished() 677 case QPlaceIdReply::RemovePlace: in finished()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager_unsupported/ |
| H A D | tst_qplacemanager_unsupported.cpp | 167 QPlaceIdReply *reply = m_manager->savePlace(QPlace()); in testSavePlace() 174 QPlaceIdReply *reply = m_manager->removePlace(QString()); in testRemovePlace() 181 QPlaceIdReply *reply = m_manager->saveCategory(QPlaceCategory()); in testSaveCategory() 188 QPlaceIdReply *reply = m_manager->removeCategory(QString()); in testRemoveCategory()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/ |
| H A D | requesthandler.h | 284 QPlaceIdReply *saveReply; in saveBetweenManagers() 527 QPlaceIdReply *savePlaceReply; 528 QPlaceIdReply *removePlaceReply; 529 QPlaceIdReply *saveCategoryReply; 530 QPlaceIdReply *removeCategoryReply;
|