Home
last modified time | relevance | path

Searched refs:JsonFieldPath (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/
H A Djson_common.cpp253 JsonFieldPath SplitePath(const JsonFieldPath &path, bool &isCollapse) in SplitePath()
258 JsonFieldPath splitPath; in SplitePath()
273 JsonFieldPath ExpendPathForField(const JsonFieldPath &path, bool &isCollapse) in ExpendPathForField()
275 JsonFieldPath splitPath; in ExpendPathForField()
301 JsonFieldPath childPath = path; in JsonObjectIterator()
315 JsonFieldPath childPath = path; in JsonObjectIterator()
339 JsonFieldPath preHitPath = hitPath; in AddSpliteHitField()
375 JsonFieldPath abandonPath; in AddSpliteField()
376 JsonFieldPath hitPath = itemPath; in AddSpliteField()
397 JsonFieldPath newHitPath; in AddSpliteField()
[all …]
H A Dcollection_option.cpp77 static const JsonFieldPath maxDocField = { OPT_MAX_DOC }; in ReadOption()
H A Ddb_config.cpp54 const JsonFieldPath configField = { name }; in CheckAndGetDBConfig()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Drd_json_object.h61 using JsonFieldPath = std::vector<std::string>; variable
64 using JsonFieldPath = std::vector<std::string>; variable
92 bool IsFieldExists(const JsonFieldPath &jsonPath) const;
93 bool IsFieldExistsPowerMode(const JsonFieldPath &jsonPath) const;
94 JsonObject FindItem(const JsonFieldPath &jsonPath, int &errCode) const;
95 JsonObject FindItemPowerMode(const JsonFieldPath &jsonPath, int &errCode) const;
96 ValueObject GetObjectByPath(const JsonFieldPath &jsonPath, int &errCode) const;
97 int DeleteItemDeeplyOnTarget(const JsonFieldPath &path);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Drd_json_object.cpp534 cJSON *MoveToPath(cJSON *cjson, const JsonFieldPath &jsonPath, bool caseSens) in MoveToPath()
556 bool JsonObject::IsFieldExists(const JsonFieldPath &jsonPath) const in IsFieldExists()
561 bool JsonObject::IsFieldExistsPowerMode(const JsonFieldPath &jsonPath) const in IsFieldExistsPowerMode()
623 int JsonObject::DeleteItemDeeplyOnTarget(const JsonFieldPath &path) in DeleteItemDeeplyOnTarget()
630 JsonFieldPath patherPath = path; in DeleteItemDeeplyOnTarget()
642 JsonFieldPath fatherPath(path.begin(), path.end() - 1); in DeleteItemDeeplyOnTarget()
648 JsonFieldPath fatherPath(path.begin(), path.end() - 1); in DeleteItemDeeplyOnTarget()
660 JsonFieldPath fatherPath(path.begin(), path.end() - 1); in DeleteItemDeeplyOnTarget()
902 bool JsonObject::IsFieldExists(const JsonFieldPath &jsonPath) const
908 bool JsonObject::IsFieldExistsPowerMode(const JsonFieldPath &jsonPath) const
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/include/
H A Djson_common.h43 …static bool JsonEqualJudge(const JsonFieldPath &itemPath, const JsonObject &src, const JsonObject …