/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_array.h | 112 V("with", With, 2, ArrayWith) 199 static JSTaggedValue With(EcmaRuntimeCallInfo *argv); // done
|
H A D | builtins_typedarray.h | 133 V("with", With, 2, TypedArrayWith) 235 static JSTaggedValue With(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_typedarray.cpp | 1961 JSTaggedValue BuiltinsTypedArray::With(EcmaRuntimeCallInfo* argv) in With() function in panda::ecmascript::builtins::BuiltinsTypedArray 1964 BUILTINS_API_TRACE(argv->GetThread(), TypedArray, With); in With()
|
H A D | builtins_array.cpp | 3050 JSTaggedValue BuiltinsArray::With(EcmaRuntimeCallInfo *argv) in With() function in panda::ecmascript::builtins::BuiltinsArray 3054 BUILTINS_API_TRACE(thread, Array, With); in With() 3091 return JSStableArray::With(thread, JSHandle<JSArray>::Cast(thisHandle), len, actualIndex, value); in With()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_typedarray_test.cpp | 469 HWTEST_F_L0(BuiltinsTypedArrayTest, With) in HWTEST_F_L0() 488 JSTaggedValue result1 = TypedArray::With(ecmaRuntimeCallInfo1); in HWTEST_F_L0() 506 JSTaggedValue result2 = TypedArray::With(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
|
H A D | builtins_array_test.cpp | 1512 HWTEST_F_L0(BuiltinsArrayTest, With) in HWTEST_F_L0() 1534 JSTaggedValue result = Array::With(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_stable_array.h | 78 static JSTaggedValue With(JSThread *thread, JSHandle<JSArray> receiver,
|
H A D | runtime_call_id.h | 300 V(Array, With) \ 334 V(SharedArray, With) \ 891 V(TypedArray, With) \
|
H A D | js_stable_array.cpp | 1309 JSTaggedValue JSStableArray::With(JSThread *thread, JSHandle<JSArray> receiver,
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_stable_array_test.cpp | 568 * @tc.name: With 572 * check whether the value returned through calling With function with the source Array 577 HWTEST_F_L0(JSStableArrayTest, With) in HWTEST_F_L0() 589 JSTaggedValue resultArr = JSStableArray::With(thread, handleArr, in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_call_signature.h | 93 V(With, Array, Undefined()) \
181 V(With, TypedArray, Undefined()) \
|
H A D | builtins_typedarray_stub_builder.cpp | 1718 void BuiltinsTypedArrayStubBuilder::With(GateRef glue, GateRef thisValue, GateRef numArgs,
in With() function in panda::ecmascript::kungfu::BuiltinsTypedArrayStubBuilder
|
H A D | builtins_array_stub_builder.cpp | 47 void BuiltinsArrayStubBuilder::With(GateRef glue, GateRef thisValue, GateRef numArgs, in With() function in panda::ecmascript::kungfu::BuiltinsArrayStubBuilder
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 399 reinterpret_cast<uintptr_t>(BuiltinsArray::With), 429 reinterpret_cast<uintptr_t>(BuiltinsTypedArray::With),
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.h | 1570 return type == Global() || type == Local() || type == With() || type == Closure() || type == Catch() || in Valid() 1582 static std::string With() in With() function
|