Searched refs:thisVal (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_string_test.cpp | 167 JSHandle<EcmaString> thisVal = factory->NewFromASCII("abcabcabc"); in HWTEST_F_L0() local 171 ecmaRuntimeCallInfo->SetThis(thisVal.GetTaggedValue()); in HWTEST_F_L0() 186 JSHandle<EcmaString> thisVal = factory->NewFromUtf8("一二三四"); in HWTEST_F_L0() local 190 ecmaRuntimeCallInfo->SetThis(thisVal.GetTaggedValue()); in HWTEST_F_L0() 205 JSHandle<EcmaString> thisVal = factory->NewFromASCII("abcabcabc"); in HWTEST_F_L0() local 209 ecmaRuntimeCallInfo->SetThis(thisVal.GetTaggedValue()); in HWTEST_F_L0() 224 JSHandle<EcmaString> thisVal = factory->NewFromASCII("ABC"); in HWTEST_F_L0() local 228 ecmaRuntimeCallInfo->SetThis(thisVal.GetTaggedValue()); in HWTEST_F_L0() 241 JSHandle<EcmaString> thisVal = factory->NewFromASCII("ABC"); in HWTEST_F_L0() local 245 ecmaRuntimeCallInfo->SetThis(thisVal.GetTaggedValue()); in HWTEST_F_L0() [all …]
|
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.cpp | 1182 Local<JSValueRef> thisVal = JSNApiHelper::ToLocal<JSValueRef>( in GetLocalScopeChain() local 1184 GetLocalVariables(frameHandler, methodId, jsPandaFile, thisVal, localObj); in GetLocalScopeChain() 1185 GetClosureVariables(frameHandler, thisVal, localObj); in GetLocalScopeChain() 1186 *thisObj = RemoteObject::FromTagged(vm_, thisVal); in GetLocalScopeChain() 1187 runtime_->CacheObjectIfNeeded(thisVal, (*thisObj).get()); in GetLocalScopeChain() 1233 const JSPandaFile *jsPandaFile, Local<JSValueRef> &thisVal, Local<ObjectRef> &localObj) in GetLocalVariables() argument 1255 thisVal = value; in GetLocalVariables() 1279 void DebuggerImpl::GetClosureVariables(const FrameHandler *frameHandler, Local<JSValueRef> &thisVal, in GetClosureVariables() argument 1303 if (thisVal->IsHole()) { in GetClosureVariables() 1305 thisVal = value; in GetClosureVariables() [all …]
|
D | debugger_impl.h | 159 const JSPandaFile *jsPandaFile, Local<JSValueRef> &thisVal, Local<ObjectRef> &localObj); 160 void GetClosureVariables(const FrameHandler *frameHandler, Local<JSValueRef> &thisVal,
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_string.cpp | 627 JSHandle<EcmaString> thisVal = JSTaggedValue::ToString(thread, thisTag); in Match() local 634 info->SetCallArg(thisVal.GetTaggedValue()); in Match() 698 JSHandle<EcmaString> thisVal = JSTaggedValue::ToString(thread, thisTag); in MatchAll() local 705 info->SetCallArg(thisVal.GetTaggedValue()); in MatchAll() 1299 JSHandle<EcmaString> thisVal = JSTaggedValue::ToString(thread, thisTag); in Search() local 1306 info->SetCallArg(thisVal.GetTaggedValue()); in Search()
|