Home
last modified time | relevance | path

Searched refs:Proxy (Results 1 - 25 of 65) sorted by relevance

123

/arkcompiler/ets_runtime/test/moduletest/proxy/
H A Dproxy.js18 * @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 Dsynchronized.h58 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 Dregressproxy.js22 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 Dforin.js79 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 Dsafe_hole3.js19 const dummy = new Proxy(function () {
31 let v12 = new Proxy(Object.create(null, {
H A Dsafe_hole5.js17 const dummy = new Proxy(function () {
H A Dsafe_hole6.js17 const dummy = new Proxy(function () {
H A Dsafe_hole2.js17 const dummy = new Proxy(function () {
H A Dsafe_hole1.js17 const dummy = new Proxy(function () {
/arkcompiler/ets_runtime/test/moduletest/arrayConcat/
H A DarrayConcat.js54 var obj=new Proxy(target,{
67 let px = new Proxy([], {});
/arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/
H A Dasmstackoverflow.js45 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 Dcontainer_stack.js28 let proxy = new Proxy(stack, {});
78 let popProxy = new Proxy(popStack, {});
154 const v7 = new Proxy(v6, o5)
H A Dcontainer_plainarray.js28 let proxy = new Proxy(plainArray, {});
109 let proxy1 = new Proxy(arr2, {});
202 const v7 = new Proxy(v6, o5)
H A Dcontainer_queue.js31 let proxy = new Proxy(queue, {});
159 const v7 = new Proxy(v6, o5)
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_proxy.cpp21 // 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 Darrayjoin.js82 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 Dproxy.js16 return new Proxy(target, handler);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/indexed_signature/
H A Dutils.js17 return new Proxy(target, handler);
/arkcompiler/ets_runtime/test/moduletest/assignproxy/
H A Dassignproxy.js23 var proxy = new Proxy({"cc":"dd", "ee":"ff"}, {
/arkcompiler/ets_runtime/test/moduletest/supercallRelease/
H A DsupercallRelease.js27 const v = new Proxy(C4, {});
/arkcompiler/ets_runtime/test/aottest/exception_case7/
H A Dexception_case7.js22 const p = new Proxy({}, handler)
/arkcompiler/ets_runtime/test/moduletest/forin_special_object/
H A Dforin_special_object.js48 const proxy_has = new Proxy(targetObj, {
/arkcompiler/ets_runtime/test/moduletest/rangeerror/
H A Drangeerror.js34 let px = new Proxy(obj, {});
/arkcompiler/ets_runtime/test/moduletest/jsonstringifier/
H A Djsonstringifier.js29 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 Ddebug_connection.py33 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]()

Completed in 5 milliseconds

123