Home
last modified time | relevance | path

Searched refs:QPlaceIdReply (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplaceidreply.cpp44 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 Dqplacemanagerengine.cpp183 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 Dqplaceidreply.h46 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 Dqplacemanager.h80 QPlaceIdReply *savePlace(const QPlace &place);
81 QPlaceIdReply *removePlace(const QString &placeId);
83QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId = QString());
84 QPlaceIdReply *removeCategory(const QString &categoryId);
H A Dqplacemanagerengine.h70 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 Dqplacemanager.cpp242 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 Dunsupportedreplies_p.h157 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 Dtst_qplacemanager_nokia.cpp50 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 Dqplaceidreplyimpl.cpp41 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 Dqplaceidreplyimpl.h44 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 Dqplacemanagerengine_nokiav2.h82 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 Dqplacemanagerengine_nokiav2.cpp531 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 Dplacemanager_utils.cpp53 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 Dqplacemanagerengine_test.h160 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 Dqdeclarativecategory.cpp385 QPlaceIdReply *idReply = qobject_cast<QPlaceIdReply *>(m_reply); in replyFinished()
388 case QPlaceIdReply::SaveCategory: in replyFinished()
391 case QPlaceIdReply::RemoveCategory: in replyFinished()
H A Dqdeclarativeplace.cpp671 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 Dtst_qplacemanager_unsupported.cpp167 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 Drequesthandler.h284 QPlaceIdReply *saveReply; in saveBetweenManagers()
527 QPlaceIdReply *savePlaceReply;
528 QPlaceIdReply *removePlaceReply;
529 QPlaceIdReply *saveCategoryReply;
530 QPlaceIdReply *removeCategoryReply;