/arkcompiler/ets_runtime/test/moduletest/proxy/ |
H A D | proxy.js | 18 * @tc.desc:test Proxy 26 let addProxy = new Proxy(add, { 38 let obj = new Proxy(EmployeeEntity,{}); 46 const a3 = new Proxy(a1, a2); 54 const v5 = new Proxy(v0, {}); 61 const proxy = new Proxy(arr2, handler); 71 var P = new Proxy(Target, handler1); 78 const v5 = new Proxy({}, {}); 86 const v6 = new Proxy(v3, o3); 94 let pro1 = new Proxy(arr [all...] |
/arkcompiler/runtime_core/static_core/verification/util/ |
H A D | synchronized.h | 58 struct Proxy { struct 59 Proxy() = delete; 60 Proxy(const Proxy &) = delete; 61 Proxy(Proxy &&other) in Proxy() function 67 explicit Proxy(Synchronized *paramObj) ACQUIRE(obj->rwLock_) : obj {paramObj} 76 ~Proxy() RELEASE(obj->rwLock_) 82 NO_COPY_OPERATOR(Proxy); 83 NO_MOVE_OPERATOR(Proxy); [all...] |
/arkcompiler/ets_runtime/test/moduletest/regressproxy/ |
H A D | regressproxy.js | 22 var proxy = new Proxy({}, {});
23 var proxy2 = new Proxy({}, { set() { return ""; } });
35 const proxy = new Proxy(options, { get: () => 'proxied cause'});
|
/arkcompiler/ets_runtime/test/moduletest/forin/ |
H A D | forin.js | 79 const proxy_has = new Proxy(targetObj, { 110 const proxy = new Proxy(new Array(100), obj); 122 const proxy = new Proxy([7], C);
|
/arkcompiler/ets_frontend/es2panda/test/compiler/interpreter/lexicalEnv/ |
H A D | safe_hole3.js | 19 const dummy = new Proxy(function () { 31 let v12 = new Proxy(Object.create(null, {
|
H A D | safe_hole5.js | 17 const dummy = new Proxy(function () {
|
H A D | safe_hole6.js | 17 const dummy = new Proxy(function () {
|
H A D | safe_hole2.js | 17 const dummy = new Proxy(function () {
|
H A D | safe_hole1.js | 17 const dummy = new Proxy(function () {
|
/arkcompiler/ets_runtime/test/moduletest/arrayConcat/ |
H A D | arrayConcat.js | 54 var obj=new Proxy(target,{ 67 let px = new Proxy([], {});
|
/arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/ |
H A D | asmstackoverflow.js | 45 const pro = new Proxy({}, obj);
56 Function.prototype.__proto__ = new Proxy(func, {})
57 Function.prototype.__proto__ = new Proxy(func, {})
331 const v6 = new Proxy(C1, Reflect);
341 const v3 = new Proxy([123], {});
|
/arkcompiler/ets_runtime/test/moduletest/container/ |
H A D | container_stack.js | 28 let proxy = new Proxy(stack, {}); 78 let popProxy = new Proxy(popStack, {}); 154 const v7 = new Proxy(v6, o5)
|
H A D | container_plainarray.js | 28 let proxy = new Proxy(plainArray, {}); 109 let proxy1 = new Proxy(arr2, {}); 202 const v7 = new Proxy(v6, o5)
|
H A D | container_queue.js | 31 let proxy = new Proxy(queue, {}); 159 const v7 = new Proxy(v6, o5)
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_proxy.cpp | 21 // 26.2.1.1 Proxy( [ value ] ) 25 BUILTINS_API_TRACE(argv->GetThread(), Proxy, Constructor); in ProxyConstructor() 41 // 26.2.2.1 Proxy.revocable ( target, handler ) 45 BUILTINS_API_TRACE(argv->GetThread(), Proxy, Revocable); in Revocable() 76 // A Proxy revocation function to invalidate a specific Proxy object 80 BUILTINS_API_TRACE(argv->GetThread(), Proxy, InvalidateProxyFunction); in InvalidateProxyFunction()
|
/arkcompiler/ets_runtime/test/moduletest/arrayjoin/ |
H A D | arrayjoin.js | 82 let proxy1 = new Proxy([123], {}); 88 let proxy2 = new Proxy([123, 456], {});
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/indexed_type/ |
H A D | proxy.js | 16 return new Proxy(target, handler);
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/indexed_signature/ |
H A D | utils.js | 17 return new Proxy(target, handler);
|
/arkcompiler/ets_runtime/test/moduletest/assignproxy/ |
H A D | assignproxy.js | 23 var proxy = new Proxy({"cc":"dd", "ee":"ff"}, {
|
/arkcompiler/ets_runtime/test/moduletest/supercallRelease/ |
H A D | supercallRelease.js | 27 const v = new Proxy(C4, {});
|
/arkcompiler/ets_runtime/test/aottest/exception_case7/ |
H A D | exception_case7.js | 22 const p = new Proxy({}, handler)
|
/arkcompiler/ets_runtime/test/moduletest/forin_special_object/ |
H A D | forin_special_object.js | 48 const proxy_has = new Proxy(targetObj, {
|
/arkcompiler/ets_runtime/test/moduletest/rangeerror/ |
H A D | rangeerror.js | 34 let px = new Proxy(obj, {});
|
/arkcompiler/ets_runtime/test/moduletest/jsonstringifier/ |
H A D | jsonstringifier.js | 29 const v2 = new Proxy({}, v1); 75 var proxy2 = new Proxy({},handler2); 113 var proxy2 = new Proxy({}, handler2);
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | debug_connection.py | 33 class Proxy(typing.Generic[E]): class 66 async def wait_for(self, event_type: typing.Type[T], buffer_size=10) -> AsyncGenerator[Proxy[T], None]: 68 proxy = Proxy[T]()
|