Home
last modified time | relevance | path

Searched refs:getValue (Results 1 - 18 of 18) sorted by relevance

/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/
H A DRdbStoreValueType.test.js79 let value1 = resultSet.getValue(0);
81 console.log(TAG + "getValue(0):=>" + value1 + " type:" + type);
84 let value2 = resultSet.getValue(1);
86 console.log(TAG + "getValue(1):=>" + value2 + " type:" + type);
118 let value1 = resultSet.getValue(0);
120 console.log(TAG + "getValue(0):=>" + value1 + " type:" + type);
123 let value2 = resultSet.getValue(1);
125 console.log(TAG + "getValue(1):=>" + value2 + " type:" + type);
H A DRdbStoreReadOnlyJsunit.test.js209 expect(resultSet.getValue(0) === 0).assertTrue();
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Dpac_map_test.cpp360 std::vector<short> getValue; in HWTEST_F() local
365 pacmap_->GetShortValueArray("key_short_array", getValue); in HWTEST_F()
367 bool isEqual = (putValue == getValue); in HWTEST_F()
383 std::vector<int> getValue; in HWTEST_F() local
388 pacmap_->GetIntValueArray("key_int_array", getValue); in HWTEST_F()
390 bool isEqual = (putValue == getValue); in HWTEST_F()
406 std::vector<long> getValue; in HWTEST_F() local
411 pacmap_->GetLongValueArray("key_long_array", getValue); in HWTEST_F()
413 bool isEqual = (putValue == getValue); in HWTEST_F()
429 std::vector<AAFwk::byte> getValue; in HWTEST_F() local
452 std::vector<float> getValue; HWTEST_F() local
475 std::vector<double> getValue; HWTEST_F() local
499 std::vector<std::string> getValue; HWTEST_F() local
775 std::vector<char> getValue; HWTEST_F() local
1079 std::vector<char> getValue; HWTEST_F() local
1101 std::vector<bool> getValue; HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_slider.cpp138 auto getValue = paramObject->GetProperty("value"); in Create() local
147 if (!getValue->IsNull() && getValue->IsNumber()) { in Create()
148 value = getValue->ToNumber<double>(); in Create()
149 } else if (!getValue->IsNull() && getValue->IsObject()) { in Create()
150 JSRef<JSObject> valueObj = JSRef<JSObject>::Cast(getValue); in Create()
H A Djs_textpicker.cpp640 auto getValue = paramObject->GetProperty("value"); in ParseMultiTextArray() local
652 if (getValue->IsObject()) { in ParseMultiTextArray()
653 JSRef<JSObject> valueObj = JSRef<JSObject>::Cast(getValue); in ParseMultiTextArray()
656 getValue = valueObj->GetProperty("value"); in ParseMultiTextArray()
659 if (!ParseMultiTextArrayValue(getValue, param)) { in ParseMultiTextArray()
746 auto getValue = paramObject->GetProperty("value"); in ParseCascadeTextArray() local
747 if (getValue->IsArray()) { in ParseCascadeTextArray()
748 if (!ParseJsStrArray(getValue, values)) { in ParseCascadeTextArray()
753 if (!ParseJsString(getValue, value)) { in ParseCascadeTextArray()
781 auto getValue in ParseTextArray() local
1408 auto getValue = paramObject->GetProperty("value"); Show() local
1816 auto getValue = paramObj->GetProperty("value"); ParseText() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/delegate_fuzzer/
H A Ddelegate_fuzzer.cpp108 auto valueCallback = [&value] (DBStatus status, const Value &getValue) { in MultiCombineFuzzer()
109 value = getValue; in MultiCombineFuzzer()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_nb_delegate_local_batch_test.cpp1029 Value getValue; in HWTEST_F() local
1030 EXPECT_EQ(g_kvNbDelegatePtr->GetLocal(key, getValue), OK); in HWTEST_F()
1031 EXPECT_TRUE(DistributedDBToolsUnitTest::IsValueEqual(getValue, value)); in HWTEST_F()
1038 getValue.clear(); in HWTEST_F()
1039 EXPECT_EQ(g_kvNbDelegatePtr->GetLocal(key, getValue), NOT_FOUND); in HWTEST_F()
1118 Value getValue; in HWTEST_F() local
1119 EXPECT_EQ(g_kvNbDelegatePtr->GetLocal(key, getValue), OK); in HWTEST_F()
1120 EXPECT_TRUE(DistributedDBToolsUnitTest::IsValueEqual(getValue, value)); in HWTEST_F()
1123 getValue.clear(); in HWTEST_F()
1124 EXPECT_EQ(g_kvNbDelegatePtr->GetLocal(key, getValue), NOT_FOUN in HWTEST_F()
[all...]
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dscreen_setting_helper.cpp101 int32_t getValue; in GetSettingValue() local
102 ErrCode ret = settingData.GetIntValue(key, getValue); in GetSettingValue()
107 value = static_cast<uint32_t>(getValue); in GetSettingValue()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_utils.h112 std::function<T(const EcmaVM *, const Local<JSValueRef> &)> getValue) in ParseArray()
129 *(array + i) = getValue(vm, value); in ParseArray()
111 ParseArray(const EcmaVM *vm, const Local<JSValueRef> &arg, T *array, int32_t defaultLength, std::function<T(const EcmaVM *, const Local<JSValueRef> &)> getValue) ParseArray() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dview_abstract.cpp4090 auto getValue = flexItemProperty->GetAlignSelf(); in GetAlignSelf() local
4091 if (getValue.has_value()) { in GetAlignSelf()
4092 return getValue.value(); in GetAlignSelf()
4104 auto getValue = property->GetFlexGrow(); in GetFlexGrow() local
4105 if (getValue.has_value()) { in GetFlexGrow()
4106 return getValue.value(); in GetFlexGrow()
4118 auto getValue = property->GetFlexShrink(); in GetFlexShrink() local
4119 if (getValue.has_value()) { in GetFlexShrink()
4120 return getValue.value(); in GetFlexShrink()
4132 auto getValue in GetFlexBasis() local
4299 auto getValue = property->propBlurRadius; GetFrontBlur() local
4322 auto getValue = property->GetAlignment(); GetAlign() local
[all...]
/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp1692 bool getValue = false;
1693 int32_t ret = AVRecorderNapi::GetPropertyInt32(env, args, "audioSourceType", audioSource, getValue);
1696 if (getValue) {
1702 ret = AVRecorderNapi::GetPropertyInt32(env, args, "videoSourceType", videoSource, getValue);
1705 if (getValue) {
1711 ret = AVRecorderNapi::GetPropertyInt32Vec(env, args, "metaSourceTypes", metaSource, getValue);
1714 if (getValue) {
1861 bool getValue = false;
1862 ret = AVRecorderNapi::GetPropertyInt32(env, args, "rotation", config->rotation, getValue);
1909 bool getValue
[all...]
H A Davrecorder_napi.h342 bool &getValue);
344 std::vector<int32_t> &result, bool &getValue);
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dpixelmap_native_ndk_test.cpp714 OH_Pixelmap_HdrMetadataValue getValue; in HWTEST_F() local
715 GetMetadata(getValue, pixelmap); in HWTEST_F()
716 DumpMetadata(getValue); in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/core/base/
H A Dframe_node_test_ng.cpp1810 std::string getValue; in HWTEST_F() local
1811 bool result = frameNode->GetJSCustomProperty("key", getValue); in HWTEST_F()
1813 EXPECT_EQ(getValue, "getFuncA"); in HWTEST_F()
1834 std::string getValue; in HWTEST_F() local
1835 bool result = frameNode->GetJSCustomProperty("key", getValue); in HWTEST_F()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/pixel_map_test/
H A Dimage_pixel_map_test.cpp1950 std::string getValue; in HWTEST_F() local
1951 pixelMap->GetImagePropertyString(key, getValue); in HWTEST_F()
1952 EXPECT_EQ(getValue, "Test"); in HWTEST_F()
1953 imageSource->GetImagePropertyString(0, key, getValue); in HWTEST_F()
1954 EXPECT_EQ(getValue, imagesource_org_value); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/json_fuzzer/
H A Djson_fuzzer.cpp1595 GRD_KVItemT getValue = { nullptr, 0 }; in TestGrdDbApGrdGetItem002Fuzz() local
1596 GRD_KVGet(g_db, COLLECTION_NAME, &key, &getValue); in TestGrdDbApGrdGetItem002Fuzz()
1597 GRD_KVFreeItem(&getValue); in TestGrdDbApGrdGetItem002Fuzz()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/jsoninner_fuzzer/
H A Djsoninner_fuzzer.cpp1604 GRD_KVItemT getValue = { nullptr, 0 }; in TestGrdDbApGrdGetItem002Fuzz() local
1605 GRD_KVGetInner(g_db, COLLECTION_NAME, &key, &getValue); in TestGrdDbApGrdGetItem002Fuzz()
1606 GRD_KVFreeItemInner(&getValue); in TestGrdDbApGrdGetItem002Fuzz()
/foundation/arkui/ace_engine/advanced_ui_component/counter/interfaces/
H A Dcounter.js1491 getValue() {
1499 return this.getValue().length > 0 ? this.getValue().length : 1;

Completed in 39 milliseconds