Home
last modified time | relevance | path

Searched refs:idValue (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/
H A Ddistributeddb_cloud_check_sync_test.cpp731 std::vector<std::string> idValue = {"0", "1", "2"}; variable
1057 std::vector<std::string> idValue = {"0", "1", "2"}; variable
1077 for (size_t i = 0u; i < idValue.size(); i++) { in __anonc8f560be1302()
1079 EXPECT_EQ(val, idValue[i]); in __anonc8f560be1302()
1164 std::vector<std::string> idValue = {"0"}; variable
1182 idValue.resize(101); // 101 > 100
1372 std::vector<std::string> idValue = {"0"}; variable
1395 idValue = {"1"};
1435 std::vector<std::string> idValue = {"0"}; variable
1539 idValue = {"0", "1", "2"};
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_camera.cpp29 JSRef<JSVal> idValue = sizeObj->GetProperty("id"); in Create() local
30 if (!idValue->IsNull() && !idValue->IsEmpty()) { in Create()
31 cameraComponent->SetCameraId(idValue->ToString()); in Create()
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_step_result_get_row_test.cpp111 int idValue = rowEntity.Get("id"); variable
112 EXPECT_EQ(1, idValue);
163 int idValue = rowEntity.Get("id"); variable
164 EXPECT_EQ(1, idValue);
201 int idValue = rowEntity.Get("id"); variable
207 EXPECT_EQ(1, idValue);
H A Drdb_sqlite_shared_result_set_test.cpp1094 int idValue = rowEntity.Get("id"); variable
1099 EXPECT_EQ(1, idValue);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/
H A Dcheck_common.cpp127 ValueObject idValue = JsonCommon::GetValueInSameLevel(idObjChild, KEY_ID, isIdExisit); in CheckIdFormat() local
128 if ((idValue.GetValueType() == ValueObject::ValueType::VALUE_NULL) && isIdExisit == false) { in CheckIdFormat()
131 if (idValue.GetValueType() != ValueObject::ValueType::VALUE_STRING) { in CheckIdFormat()
134 if (idValue.GetStringValue().length() + 1 > MAX_ID_LENS) { // with '\0' in CheckIdFormat()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Dresult_set.cpp78 ValueObject idValue = JsonCommon::GetValueInSameLevel(filterObjChild, KEY_ID); in GetNextWithField() local
79 std::string idKey = idValue.GetStringValue(); in GetNextWithField()
H A Ddocument_store.cpp360 ValueObject idValue = JsonCommon::GetValueInSameLevel(filterObjChild, KEY_ID, isIdExist); in InsertIdToDocument() local
367 docId = idValue.GetStringValue(); in InsertIdToDocument()
509 ValueObject idValue = JsonCommon::GetValueInSameLevel(documentObjChild, KEY_ID); in InsertDataIntoDB() local
510 id = idValue.GetStringValue(); in InsertDataIntoDB()
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dpaste_data_entry_test.cpp79 int32_t idValue = 123; in InitWantEntry() local
81 want->SetParam(idKey, idValue); in InitWantEntry()
H A Dpasteboard_client_udmf_delay_test.cpp314 int32_t idValue = 456; in SetWantUnifiedData() local
317 want->SetParam(idKey, idValue); in SetWantUnifiedData()
H A Dpasteboard_utils_test.cpp120 int32_t idValue = 123; in InitWantData() local
122 want->SetParam(idKey, idValue); in InitWantData()
H A Dpasteboard_unified_data_test.cpp115 int32_t idValue = 123; in InitWantData() local
117 want->SetParam(idKey, idValue); in InitWantData()
/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/unittest/
H A Dtlv_util_test.cpp524 int32_t idValue = 123; variable
525 want->SetParam(idKey, idValue);
541 EXPECT_EQ(idValue, wantResult->GetIntParam(idKey, 0));
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/test/unittest/common/
H A Dstylemgr_tdd_test.cpp586 constexpr char idValue[] = "test"; in ACELiteStyleManagerIDSelector003() local
587 jerry_value_t styleOption = PrepareAttrOption(idKey, idValue); in ACELiteStyleManagerIDSelector003()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dpac_map.cpp75 sptr<id> idValue = id::Query(it->second.GetRefPtr()); \
77 idValue->GetValue(retVal); \
89 sptr<id> idValue = id::Query(it->second.GetRefPtr()); \
91 idValue->GetString(retVal); \
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/napi/src/
H A Dnapi_accessibility_utils.cpp1412 napi_value idValue = nullptr; in SetInputEventProperty() local
1414 NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, id, &idValue)); in SetInputEventProperty()
1415 NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, result, "id", idValue)); in SetInputEventProperty()
/ohos5.0/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_native_engine.cpp1003 napi_value idValue = JsValueFromLocalValue(idStr); in GetModuleFromName() local
1009 idProperty.value = idValue; in GetModuleFromName()