Home
last modified time | relevance | path

Searched refs:thenKey (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_promise_handler.cpp74 JSHandle<JSTaggedValue> thenKey(thread->GlobalConstants()->GetHandledPromiseThenString()); in Resolve() local
75 … JSHandle<JSTaggedValue> thenValue = JSObject::GetProperty(thread, resolution, thenKey).GetValue(); in Resolve()
291 JSHandle<JSTaggedValue> thenKey(globalConst->GetHandledPromiseThenString()); in ThenFinally() local
297 return JSFunction::Invoke(invokeInfo, thenKey); in ThenFinally()
330 JSHandle<JSTaggedValue> thenKey(globalConst->GetHandledPromiseThenString()); in CatchFinally() local
339 return JSFunction::Invoke(invokeInfo, thenKey); in CatchFinally()
Dbuiltins_promise.cpp342 JSHandle<JSTaggedValue> thenKey = globalConst->GetHandledPromiseThenString(); in Catch() local
349 return JSFunction::Invoke(info, thenKey); in Catch()
554 JSHandle<JSTaggedValue> thenKey = globalConst->GetHandledPromiseThenString(); in PerformPromiseAll() local
560 JSTaggedValue taggedResult = JSFunction::Invoke(runtimeInfo, thenKey); in PerformPromiseAll()
825 JSHandle<JSTaggedValue> thenKey = globalConst->GetHandledPromiseThenString(); in PerformPromiseAny() local
831 JSFunction::Invoke(invokeInfo, thenKey); in PerformPromiseAny()
1030 JSHandle<JSTaggedValue> thenKey = globalConst->GetHandledPromiseThenString(); in PerformPromiseAllSettled() local
1035 JSFunction::Invoke(invokeInfo, thenKey); in PerformPromiseAllSettled()
1102 JSHandle<JSTaggedValue> thenKey(globalConst->GetHandledPromiseThenString()); in Finally() local
1108 return JSFunction::Invoke(invokeInfo, thenKey); in Finally()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp3879 JSHandle<JSTaggedValue> thenKey(thread, constants->GetPromiseThenString()); in Then() local
3886 JSTaggedValue result = JSFunction::Invoke(info, thenKey); in Then()
3899 JSHandle<JSTaggedValue> thenKey(thread, constants->GetPromiseThenString()); in Then() local
3907 JSTaggedValue result = JSFunction::Invoke(info, thenKey); in Then()