Home
last modified time | relevance | path

Searched defs:proxy (Results 1 – 25 of 74) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_proxy_stub_builder.h41 void SetMethod(GateRef glue, GateRef proxy, GateRef method) in SetMethod()
47 void SetTarget(GateRef glue, GateRef proxy, GateRef target) in SetTarget()
53 GateRef GetHandler(GateRef glue, GateRef proxy) in GetHandler()
59 void SetHandler(GateRef glue, GateRef proxy, GateRef handler) in SetHandler()
65 void SetPrivateField(GateRef glue, GateRef proxy, GateRef privateField) in SetPrivateField()
71 void SetIsRevoked(GateRef glue, GateRef proxy, GateRef value) in SetIsRevoked()
/arkcompiler/ets_runtime/test/moduletest/container/
Dutility.js15 export function testCommon(proxy, res) { argument
44 export function testdProxySet(proxy, res, dProxy) { argument
93 export function testdProxyArray1(proxy, res, testArray) { argument
Dcontainer_lightweightmap.js30 let proxy = new Proxy(map, {}); variable
52 function TestForEach(value, key, proxy) { argument
Dcontainer_hashmap.js86 let proxy = new Proxy(map1, {}); variable
108 function TestForEachHashmap(valueHashMap, keyHashMap, proxy) { argument
Dcontainer_lightweightset.js28 let proxy = new Proxy(set, {}); variable
62 function TestForEach1(value, key, proxy) { argument
Dcontainer_treemap.js70 let proxy = new Proxy(map1, {}); variable
97 function TestForEachTreeMap(valueTreeMap, keyTreeMap, proxy) { argument
Dcontainer_hashset.js84 let proxy = new Proxy(set1, {}); variable
Dcontainer_treeset.js156 let proxy = new Proxy(set1, {}); variable
197 function TestForEach1(value, key, proxy) { argument
Dcontainer_vector.js84 let proxy = new Proxy(vector1, {}); variable
Dcontainer_stack.js28 let proxy = new Proxy(stack, {}); variable
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_proxy.cpp36 …JSHandle<JSProxy> proxy = JSProxy::ProxyCreate(argv->GetThread(), GetCallArg(argv, 0), GetCallArg(… in ProxyConstructor() local
50 … JSHandle<JSProxy> proxy = JSProxy::ProxyCreate(thread, GetCallArg(argv, 0), GetCallArg(argv, 1)); in Revocable() local
84 JSHandle<JSTaggedValue> proxy = GetConstructor(argv); in InvalidateProxyFunction() local
/arkcompiler/ets_runtime/test/aottest/instanceof/
Dinstanceof.ts72 const proxy = new Proxy(foo, {}); constant
88 const proxy = new Proxy( target, {}); constant
/arkcompiler/ets_runtime/test/aottest/optimized_call/
Doptimized_call.ts27 const proxy = new Proxy(sum, object); constant
/arkcompiler/ets_runtime/test/aottest/proxy2/
Dproxy2.ts26 const proxy = new Proxy(sum, handler); constant
/arkcompiler/ets_runtime/ecmascript/
Djs_proxy.cpp48 JSTaggedValue JSProxy::GetPrototype(JSThread *thread, const JSHandle<JSProxy> &proxy) in GetPrototype()
108 bool JSProxy::SetPrototype(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTagge… in SetPrototype()
171 bool JSProxy::IsExtensible(JSThread *thread, const JSHandle<JSProxy> &proxy) in IsExtensible()
220 bool JSProxy::PreventExtensions(JSThread *thread, const JSHandle<JSProxy> &proxy) in PreventExtensions()
270 bool JSProxy::GetOwnProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTag… in GetOwnProperty()
374 bool JSProxy::DefineOwnProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JS… in DefineOwnProperty()
458 bool JSProxy::HasProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTagged… in HasProperty()
558 OperationResult JSProxy::GetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, in GetProperty()
628 bool JSProxy::SetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTagged… in SetProperty()
672 bool JSProxy::DeleteProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTag… in DeleteProperty()
[all …]
Ddate_parse.cpp26 DateProxy proxy(&reader); in ParseDateString() local
45 bool DateParse::IsIsoDateTime(DateProxy *proxy, DayValue *dayValue) in IsIsoDateTime()
92 bool DateParse::ParseIsoDateTime(DateProxy *proxy, DayValue *dayValue, TimeValue *timeValue, TimeZo… in ParseIsoDateTime()
180 bool DateParse::ParseLegacyDates(DateProxy *proxy, DayValue *dayValue, TimeValue *timeValue, TimeZo… in ParseLegacyDates()
Djs_proxy.h48 static inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, in GetProperty()
/arkcompiler/ets_runtime/test/moduletest/regressproxy/
Dregressproxy.js35 const proxy = new Proxy(options, { get: () => 'proxied cause'}); constant
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/indexed_type/
Darktsconfig.in.json10 "proxy": { "language": "js", "ohmUrl": "${CMAKE_CURRENT_BINARY_DIR}/proxy" } object
/arkcompiler/ets_runtime/test/moduletest/isin/
Disin.js85 const proxy = new Proxy(target, { constant
/arkcompiler/ets_runtime/test/moduletest/forin/
Dforin.js110 const proxy = new Proxy(new Array(100), obj); constant
122 const proxy = new Proxy([7], C); constant
/arkcompiler/ets_runtime/test/moduletest/assignproxy/
Dassignproxy.js23 var proxy = new Proxy({"cc":"dd", "ee":"ff"}, { variable
/arkcompiler/ets_runtime/test/moduletest/objecthasownproperty/
Dobjecthasownproperty.js68 var proxy = new Proxy(person, { variable
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/xgc/
Dmark_deep_js2sts_test.cpp55 ObjectHeader *proxy = nullptr; in GCStarted() local
/arkcompiler/ets_runtime/common_components/heap/collector/
Dcollector_resources.h33 explicit CollectorResources(CollectorProxy& proxy) : collectorProxy_(proxy) {} in CollectorResources()

123