/arkcompiler/ets_runtime/test/moduletest/objecthasownproperty/ |
H A D | objecthasownproperty.js | 26 var str4 = str1 + str2;
variable 32 this[str4] = "hao3";
|
/arkcompiler/ets_runtime/test/moduletest/stringfromcharcode/ |
H A D | stringfromcharcode.js | 38 var str4 = "wode每一天"; variable 40 print(str4.charAt(4));
|
/arkcompiler/ets_runtime/test/moduletest/jsonstringifier/ |
H A D | jsonstringifier.js | 132 let str4=new String("\uDE0E\"测试2") 138 obj[str4]=str4; 146 print(JSON.stringify(str4))
|
/arkcompiler/ets_runtime/ecmascript/snapshot/tests/ |
H A D | snapshot_test.cpp | 119 JSHandle<EcmaString> str4 = factory->ConcatFromString(str1, str3); in HWTEST_F_L0() local 128 constpool->SetObjectToCache(thread, 7, str4.GetTaggedValue()); in HWTEST_F_L0() 129 constpool->SetObjectToCache(thread, 8, str4.GetTaggedValue()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/moduletest/string/ |
H A D | string.js | 65 let str4 = tmp1.substring(13, 26); 72 print(obj[str4]); 74 print((str4 == str6).toString());
|
/arkcompiler/ets_runtime/test/moduletest/regexp/ |
H A D | regexp.js | 515 const str4 = "abc"; 518 print(str4.search(re1)); 519 print(str4.search(/b/y)); 520 print(str4.search(re1));
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_string_test.cpp | 293 EtsString *str4 = EtsString::CreateFromUtf16(data4.data(), data4.size() - 1); in TEST_F() local 295 EtsString *str6 = EtsString::Concat(str4, str5); in TEST_F() 306 EtsString *str7 = EtsString::Concat(str1, str4); in TEST_F()
|
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/ |
H A D | codegen_intrinsics_ets.cpp | 380 auto str4 = src[FOURTH_OPERAND]; in CreateStringConcat() local 381 CallFastPath(inst, EntrypointId::STRING_CONCAT4_TLAB, dst, {}, str1, str2, str3, str4); in CreateStringConcat()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
H A D | std_core_String.cpp | 468 EtsString *StdCoreStringConcat4(EtsString *str1, EtsString *str2, EtsString *str3, EtsString *str4) in StdCoreStringConcat4() argument 473 auto s4 = reinterpret_cast<coretypes::String *>(str4); in StdCoreStringConcat4()
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
H A D | entrypoints.cpp | 1828 coretypes::String *str3, coretypes::String *str4) in CoreStringConcat4() 1835 VMHandle<String> str4Handle(thread, str4); in CoreStringConcat4() 1847 str4 = str4Handle.GetPtr(); in CoreStringConcat4() 1848 str = coretypes::String::Concat(str, str4, ctx, vm); in CoreStringConcat4() 1827 CoreStringConcat4(coretypes::String *str1, coretypes::String *str2, coretypes::String *str3, coretypes::String *str4) CoreStringConcat4() argument
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 39 CString str4 = "-9007199254740991012"; in HWTEST_F_L0() local 43 JSHandle<BigInt> bigint4 = BigIntHelper::SetBigInt(thread, str4); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_date_test.cpp | 616 JSHandle<EcmaString> str4 = in HWTEST_F_L0() local 621 ecmaRuntimeCallInfo4->SetCallArg(0, str4.GetTaggedValue()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/regexp/tests/ |
H A D | regexp_test.cpp | 1923 JSHandle<EcmaString> str4 = factory->NewFromASCII("5"); in HWTEST_F_L0() local 1928 ASSERT_TRUE(EcmaStringAccessor::Compare(instance, resultStr4, str4) == 0); in HWTEST_F_L0()
|