Home
last modified time | relevance | path

Searched refs:fieldSet (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Drd_json_object.cpp207 std::set<std::string> fieldSet; in CheckJsonRepeatField() local
210 ret = CheckSubObj(fieldSet, subObj, type, isFirstFloor); in CheckJsonRepeatField()
229 int JsonObject::CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool is… in CheckSubObj() argument
253 if (fieldSet.find(fieldName) == fieldSet.end()) { in CheckSubObj()
254 fieldSet.insert(fieldName); in CheckSubObj()
784 int JsonObject::CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool is…
786 (void)fieldSet;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/
H A Djson_common.cpp91 std::set<std::string> fieldSet; in CheckNode() local
100 if (fieldSet.find(fieldName) != fieldSet.end()) { in CheckNode()
104 fieldSet.insert(fieldName); in CheckNode()
138 std::set<std::string> fieldSet; in CheckProjectionNode() local
146 if (fieldSet.find(fieldName) == fieldSet.end() && ret == E_OK) { in CheckProjectionNode()
147 fieldSet.insert(fieldName); in CheckProjectionNode()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Drd_json_object.h111 …int CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool isFirstFloor);