Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_schema_object_test.cpp905 …int errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F1", "L4F1"}, FieldType::LEAF_FI…
908 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F1", "L4F2"}, FieldType::LEAF_FIELD_…
911 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F2"}, FieldType::LEAF_FIELD_LONG, va…
913 errCode = testObject.InsertField(FieldPath{"L1F1", "L2F2"}, FieldType::LEAF_FIELD_OBJECT, val);
916 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F2", "L3F3"}, FieldType::LEAF_FIELD_INTEGER,…
919 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F2", "L3F4"}, FieldType::LEAF_FIELD_BOOL, va…
921 errCode = testObject.InsertField(FieldPath{"L1F2"}, FieldType::LEAF_FIELD_NULL, val);
953 …int errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F1"}, FieldType::LEAF_FIELD_STRI…
956 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F1"}, FieldType::LEAF_FIELD_DOUBLE, …
959 …errCode = testObject.InsertField(FieldPath{"L1F1", "L2F1", "L3F1", "L4F1"}, FieldType::LEAF_FIELD_…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Djson_object.h92 …int InsertField(const FieldPath &inPath, FieldType inType, const FieldValue &inValue, bool isAppen…
96 int InsertField(const FieldPath &inPath, const JsonObject &inValue, bool isAppend = false);
H A Dvalue_object.h64 int InsertField(const FieldPath &inPath, FieldType inType, const FieldValue &inValue);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dvalue_object.cpp156 int ValueObject::InsertField(const FieldPath &inPath, FieldType inType, const FieldValue &inValue) in InsertField() function in DistributedDB::ValueObject
158 int errCode = value_.InsertField(inPath, inType, inValue); in InsertField()
H A Djson_object.cpp523 int JsonObject::InsertField(const FieldPath &inPath, const JsonObject &inValue, bool isAppend) in InsertField() function in DistributedDB::JsonObject
547 int JsonObject::InsertField(const FieldPath &inPath, FieldType inType, const FieldValue &inValue, b… in InsertField() function in DistributedDB::JsonObject
906 int JsonObject::InsertField(const FieldPath &inPath, FieldType inType, const FieldValue &inValue)
914 int JsonObject::InsertField(const FieldPath &inPath, const JsonObject &inValue, bool isAppend = fal…
H A Dschema_object.cpp1139 …int errCode = inValue.InsertField(eachLackingPath, lackingPathAttr.type, lackingPathAttr.defaultVa… in AmendValueIfNeed()