/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | uobject_test.cpp | 32 * @tc.desc: AddItemToObject() 47 uObject.AddItemToObject("char", value); in HWTEST_F() 50 uObject.AddItemToObject("char", const_cast<char*>(stringValue.c_str())); in HWTEST_F() 54 uObject.AddItemToObject("string", stringValue); in HWTEST_F() 59 uObject.AddItemToObject("double", doubleValue); in HWTEST_F() 64 uObject.AddItemToObject("size_t", sizeValue); in HWTEST_F() 70 uObject.AddItemToObject("int32_t", int32Value); in HWTEST_F() 76 uObject.AddItemToObject("int64_t", int64Value); in HWTEST_F() 82 uObject.AddItemToObject("bool", boolValue); in HWTEST_F() 87 uObject.AddItemToObject("shared_pt in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/base/json/ |
H A D | node_object.cpp | 34 object->AddItemToObject(item->GetKey(), item->GetString()); in FromJsonObject() 36 object->AddItemToObject(item->GetKey(), item->GetBool()); in FromJsonObject() 38 object->AddItemToObject(item->GetKey(), item->GetDouble()); in FromJsonObject() 40 object->AddItemToObject(item->GetKey(), FromJsonObject(item)); in FromJsonObject() 135 uobject_->AddItemToObject(std::string(key), std::string(value)); in Put() 146 uobject_->AddItemToObject(std::string(key), value); in Put() 157 uobject_->AddItemToObject(std::string(key), value); in Put() 168 uobject_->AddItemToObject(std::string(key), value); in Put() 179 uobject_->AddItemToObject(std::string(key), value); in Put() 190 uobject_->AddItemToObject(st in Put() [all...] |
H A D | uobject.h | 39 void AddItemToObject(const std::string& key, const char* value); 40 void AddItemToObject(const std::string& key, const std::string& value); 41 void AddItemToObject(const std::string& key, size_t value); 42 void AddItemToObject(const std::string& key, int32_t value); 43 void AddItemToObject(const std::string& key, int64_t value); 44 void AddItemToObject(const std::string& key, double value); 45 void AddItemToObject(const std::string& key, bool value); 46 void AddItemToObject(const std::string& key, const std::shared_ptr<UObject>& value);
|
H A D | uobject.cpp | 30 void UObject::AddItemToObject(const std::string& key, const char* value) in AddItemToObject() function in OHOS::UObject 37 void UObject::AddItemToObject(const std::string& key, const std::string& value) in AddItemToObject() function in OHOS::UObject 42 void UObject::AddItemToObject(const std::string& key, size_t value) in AddItemToObject() function in OHOS::UObject 47 void UObject::AddItemToObject(const std::string& key, int32_t value) in AddItemToObject() function in OHOS::UObject 52 void UObject::AddItemToObject(const std::string& key, int64_t value) in AddItemToObject() function in OHOS::UObject 57 void UObject::AddItemToObject(const std::string& key, double value) in AddItemToObject() function in OHOS::UObject 62 void UObject::AddItemToObject(const std::string& key, bool value) in AddItemToObject() function in OHOS::UObject 67 void UObject::AddItemToObject(const std::string& key, const std::shared_ptr<UObject>& value) in AddItemToObject() function in OHOS::UObject 471 AddItemToObject(key, value); in ReadKV() 475 AddItemToObject(ke in ReadKV() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/ |
H A D | rd_json_object.h | 81 int AddItemToObject(const std::string &fieldName, const JsonObject &item); 82 int AddItemToObject(const std::string &fieldName);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/ |
H A D | json_common.cpp | 362 errCode = (i == 0) ? hitItem.AddItemToObject(abandonPath[i], item) : hitItem.AddItemToObject(abandonPath[i]); in AddSpliteHitField() 404 errCode = (i == 0 ? hitItem.AddItemToObject(abandonPath[i], item) : hitItem.AddItemToObject(abandonPath[i])); in AddSpliteField() 522 errCode = srcFatherItem.AddItemToObject(lastFieldName, item); in JsonNodeAppend()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/ |
H A D | rd_json_object.cpp | 329 int JsonObject::AddItemToObject(const std::string &fieldName, const JsonObject &item) in AddItemToObject() function in DocumentDB::JsonObject 361 int JsonObject::AddItemToObject(const std::string &fieldName) in AddItemToObject() function in DocumentDB::JsonObject 821 int JsonObject::AddItemToObject(const std::string &fieldName, const JsonObject &item) 828 int JsonObject::AddItemToObject(const std::string &fieldName)
|