Home
last modified time | relevance | path

Searched refs:stringValue (Results 1 – 12 of 12) sorted by relevance

/test/xts/acts/arkui/ace_ets_module_noui/ace_ets_module_StateMangagement/ace_ets_module_StateMangagement_api12/entry/src/main/ets/MainAbility/pages/provide_consume/
DProvideConsume0020.ets30 @Consume('stringValue') stringValue: string
40 Text(this.stringValue).id('tvString')
54 @Provide('stringValue') stringValue: string = 'hello'
/test/xts/acts/distributed_schedule_lite/distributed_schedule_posix/src/utils/
Ddms_packet.cpp115 bool DmsPacket::StringToHex(const std::string& stringValue) in StringToHex() argument
117 if (stringValue.empty()) { in StringToHex()
121 for_each(std::begin(stringValue), std::end(stringValue), [this] (char ch) { in StringToHex()
Ddms_packet.h57 bool StringToHex(const std::string& stringValue);
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreEtstest/entry/src/ohosTest/ets/test/
DRelationalStorePredicatesJsunit.test.ets25 + "doubleValue REAL , floatValue REAL , stringValue TEXT , blobValue BLOB , clobValue TEXT , "
77 "stringValue": "ABCDEFGHIJKLMN",
97 "stringValue": "ABCDEFGHIJKLMN",
117 "stringValue": "ABCDEFGHIJKLMN",
181 predicates.equalTo("stringValue", "ABCDEFGHIJKLMN");
353 predicates.notEqualTo("stringValue", "ABCDEFGHIJKLMN");
516 predicates.isNull("stringValue");
592 predicates.isNotNull("stringValue");
631 predicates.greaterThan("stringValue", "ABC");
715 predicates.greaterThan("stringValue", "ZZZ");
[all …]
/test/xts/acts/distributeddatamgr/dataAbilityEtsTest/src/main/ets/test/
DDataAbilityPredicatesJsunit.test.ets24 + "doubleValue REAL , floatValue REAL , stringValue TEXT , blobValue BLOB , clobValue TEXT , "
87 "stringValue": "ABCDEFGHIJKLMN",
107 "stringValue": "ABCDEFGHIJKLMN",
127 "stringValue": "ABCDEFGHIJKLMN",
195 dataAbilityPredicates.equalTo("stringValue", "ABCDEFGHIJKLMN");
381 dataAbilityPredicates.notEqualTo("stringValue", "ABCDEFGHIJKLMN");
560 dataAbilityPredicates.isNull("stringValue");
644 dataAbilityPredicates.isNotNull("stringValue");
687 dataAbilityPredicates.greaterThan("stringValue", "ABC");
780 dataAbilityPredicates.greaterThan("stringValue", "ZZZ");
[all …]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_scroll/ace_ets_module_scroll_api11/entry/src/main/ets/MainAbility/pages/Swiper/swiperUI/
Dswipe_add.ets44 @State stringValue : string = "hello"
80 this.stringValue = 'swiper'
109 Text(this.stringValue).key('swiperValue')
/test/xts/acts/arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/
Dswipe_add.ets44 @State stringValue : string = "hello"
80 this.stringValue = 'swiper'
109 Text(this.stringValue).key('swiperValue')
/test/xts/acts/multimedia/media/media_cpp_standard/codecFormatNdk/
DActsCodecFormatNdkTest.cpp138 const char *stringValue = "string_value"; variable
152 OH_AVFormat_SetStringValue(codecFormatIn, stringKey, stringValue);
169 ASSERT_EQ(*stringValueOut, *stringValue);
/test/xts/acts/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/
DRdbPredicates.test.ets27 …"stringValue CHAR(50) DEFAULT NULL , blobValue BLOB , clobValue TEXT DEFAULT NULL , byteValue INTE…
53 stringValue: "ABCDEFGHIJKLMN",
73 stringValue: "ABCDEFGHIJKLMN",
93 stringValue: "ABCDEFGHIJKLMN",
266 predicates.equalTo("stringValue", "ABCDEFGHIJKLMN");
586 predicates.notEqualTo("stringValue", "ABCDEFGHIJKLMN");
859 predicates.equalTo("stringValue", "ABCDEFGHIJKLMN")
886 …predicates.equalTo("stringValue", "ABCDEFGHIJKLMN").beginWrap().equalTo("characterValue", " ").end…
908 …predicates.equalTo("stringValue", "ABCDEFGHIJKLMN").beginWrap().equalTo("characterValue", "中").end…
930 … predicates.equalTo("stringValue", "ABCDEFGHIJKLMN").equalTo("characterValue", "中").endWrap();
[all …]
DRdbStoreIgnoretest.ets28 …"stringValue CHAR(50) DEFAULT NULL , blobValue BLOB , clobValue TEXT DEFAULT NULL , byteValue INTE…
60 stringValue: "ABCDEFGHIJKLMN",
80 stringValue: "ABCDEFGHIJKLMN",
100 stringValue: "ABCDEFGHIJKLMN",
602 predicates.equalTo("stringValue", "ABCDEFGHIJKLMN").orderByDesc().distinct();
627 predicates.equalTo("stringValue", "ABCDEFGHIJKLMN").orderByDesc(123).distinct();
/test/xts/acts/multimedia/avsource/entry/src/main/cpp/
DmultimediaCore.cpp97 const char *stringValue = "string_value"; variable
562 OH_AVFormat_SetStringValue(AVFormat, stringKey, stringValue); in MultimediaCoreAVFormatGetStringValueOne()
587 OH_AVFormat_SetStringValue(AVFormat, stringKey, stringValue); in MultimediaCoreAVFormatGetStringValueThree()
600 OH_AVFormat_SetStringValue(AVFormat, stringKey, stringValue); in MultimediaCoreAVFormatGetStringValueFour()
613 OH_AVFormat_SetStringValue(AVFormat, stringKey, stringValue); in MultimediaCoreAVFormatGetStringValueFive()
815 bool ReturnValue = OH_AVFormat_SetStringValue(AVFormat, stringKey, stringValue); in MultimediaCoreAVFormatSetStringValueOne()
826 bool ReturnValue = OH_AVFormat_SetStringValue(nullptr, stringKey, stringValue); in MultimediaCoreAVFormatSetStringValueTwo()
837 bool ReturnValue = OH_AVFormat_SetStringValue(AVFormat, nullptr, stringValue); in MultimediaCoreAVFormatSetStringValueThree()
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/napi/
Dnapi_test.cpp6970 JSVM_Value stringValue; in DefineStringProperties() local
6971 OH_JSVM_CreateStringUtf8(env, "Hello!", JSVM_AUTO_LENGTH, &stringValue); in DefineStringProperties()
6973 … {"defineStringPropertiesExample", nullptr, nullptr, nullptr, nullptr, stringValue, JSVM_DEFAULT} in DefineStringProperties()