Home
last modified time | relevance | path

Searched refs:Substring (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dets_string_substring.sts18 //! CHECKER Equal Substring JIT
27 //! CHECKER Equal Substring AOT
37 //! CHECKER Equal Substring INT
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/strings/
Dstring_api.sts72 assert str3.substring(0).equals("hello" as Object): "Substring from idx 0 must be 'hello'";
73 assert str3.substring(3).equals("lo" as Object): "Substring from idx 3 must be 'lo'";
74 assert str3.substring(0, 3).equals("hel" as Object): "Substring from idx 0 to 3 must be 'hel'";
75 assert str3.substring(1, 3).equals("el" as Object): "Substring from idx 1 to 3 must be 'el'";
76 assert str3.substring(4, 5).equals("o" as Object): "Substring from idx 4 to 5 must be 'o'";
77 …assert str3.substring(4, 4).equals("" as Object): "Substring from idx 4 to 4 must be empty string";
78 assert !str3.substring(3, 5).equals("o" as Object): "Substring from idx 3 to 4 must not be 'o'";
/arkcompiler/runtime_core/static_core/tools/sampler/
DREADME.md38 | --substitute-source-str | {dir1}, {dir2} | Substring that will be repl…
39 | --substitute-destination-str | {dir_target1}, {dir_target2} | Substring that will be plac…
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.h94 V("substring", Substring, 2, StringSubstring) \
211 static JSTaggedValue Substring(EcmaRuntimeCallInfo *argv);
Dbuiltins_string.cpp1842 JSTaggedValue BuiltinsString::Substring(EcmaRuntimeCallInfo *argv) in Substring() function in panda::ecmascript::builtins::BuiltinsString
1845 BUILTINS_API_TRACE(argv->GetThread(), String, Substring); in Substring()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_string_test.cpp754 JSTaggedValue result = BuiltinsString::Substring(ecmaRuntimeCallInfo); in HWTEST_F_L0()
774 JSTaggedValue result = BuiltinsString::Substring(ecmaRuntimeCallInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_call_signature.h68 V(Substring, String, IntToTaggedPtr(Int32(-1))) \
Dbuiltins_string_stub_builder.cpp387 void BuiltinsStringStubBuilder::Substring(GateRef glue, GateRef thisValue, GateRef numArgs, in Substring() function in panda::ecmascript::kungfu::BuiltinsStringStubBuilder
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h815 V(String, Substring) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp477 reinterpret_cast<uintptr_t>(BuiltinsString::Substring),