Searched refs:Substring (Results 1 – 11 of 11) sorted by relevance
18 //! CHECKER Equal Substring JIT27 //! CHECKER Equal Substring AOT37 //! CHECKER Equal Substring INT
81 assert str3.substring(0).equals("hello" as Object): "Substring from idx 0 must be 'hello'";82 assert str3.substring(3).equals("lo" as Object): "Substring from idx 3 must be 'lo'";83 assert str3.substring(0, 3).equals("hel" as Object): "Substring from idx 0 to 3 must be 'hel'";84 assert str3.substring(1, 3).equals("el" as Object): "Substring from idx 1 to 3 must be 'el'";85 assert str3.substring(4, 5).equals("o" as Object): "Substring from idx 4 to 5 must be 'o'";86 …assert str3.substring(4, 4).equals("" as Object): "Substring from idx 4 to 4 must be empty string";87 assert !str3.substring(3, 5).equals("o" as Object): "Substring from idx 3 to 4 must not be 'o'";
38 | --substitute-source-str | {dir1}, {dir2} | Substring that will be repl…39 | --substitute-destination-str | {dir_target1}, {dir_target2} | Substring that will be plac…
90 V("substring", Substring, 2, StringSubstring) \190 static JSTaggedValue Substring(EcmaRuntimeCallInfo *argv);
1624 JSTaggedValue BuiltinsString::Substring(EcmaRuntimeCallInfo *argv) in Substring() function in panda::ecmascript::builtins::BuiltinsString1627 BUILTINS_API_TRACE(argv->GetThread(), String, Substring); in Substring()1963 BUILTINS_API_TRACE(argv->GetThread(), String, Substring); in At()
39 …void Substring(GateRef glue, GateRef thisValue, GateRef numArgs, Variable* res, Label *exit, Label…
176 V(Substring, JS_ANY, IntToTaggedPtr(Int32(-1))) \
339 void BuiltinsStringStubBuilder::Substring(GateRef glue, GateRef thisValue, GateRef numArgs, in Substring() function in panda::ecmascript::kungfu::BuiltinsStringStubBuilder
827 JSTaggedValue result = BuiltinsString::Substring(ecmaRuntimeCallInfo); in HWTEST_F_L0()847 JSTaggedValue result = BuiltinsString::Substring(ecmaRuntimeCallInfo); in HWTEST_F_L0()
735 V(String, Substring) \
502 reinterpret_cast<uintptr_t>(BuiltinsString::Substring),