Home
last modified time | relevance | path

Searched refs:hasOwn (Results 1 – 25 of 510) sorted by relevance

12345678910>>...21

/dports/lang/spidermonkey60/firefox-60.9.0/dom/bindings/
H A DDOMJSProxyHandler.cpp38 bool hasOwn; in DOMProxyShadows() local
39 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
42 if (hasOwn) { in DOMProxyShadows()
53 bool hasOwn; in DOMProxyShadows() local
54 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
57 return hasOwn ? js::Shadows : js::DoesntShadowUnique; in DOMProxyShadows()
/dports/www/firefox-esr/firefox-91.8.0/dom/bindings/
H A DDOMJSProxyHandler.cpp40 bool hasOwn; in DOMProxyShadows() local
41 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
44 if (hasOwn) { in DOMProxyShadows()
56 bool hasOwn; in DOMProxyShadows() local
57 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
60 return hasOwn ? DOMProxyShadowsResult::Shadows in DOMProxyShadows()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/bindings/
H A DDOMJSProxyHandler.cpp37 bool hasOwn; in DOMProxyShadows() local
38 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
41 if (hasOwn) { in DOMProxyShadows()
52 bool hasOwn; in DOMProxyShadows() local
53 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
56 return hasOwn ? js::Shadows : js::DoesntShadowUnique; in DOMProxyShadows()
/dports/www/firefox/firefox-99.0/dom/bindings/
H A DDOMJSProxyHandler.cpp41 bool hasOwn; in DOMProxyShadows() local
42 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
45 if (hasOwn) { in DOMProxyShadows()
57 bool hasOwn; in DOMProxyShadows() local
58 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
61 return hasOwn ? DOMProxyShadowsResult::Shadows in DOMProxyShadows()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/bindings/
H A DDOMJSProxyHandler.cpp40 bool hasOwn; in DOMProxyShadows() local
41 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
44 if (hasOwn) { in DOMProxyShadows()
56 bool hasOwn; in DOMProxyShadows() local
57 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
60 return hasOwn ? DOMProxyShadowsResult::Shadows in DOMProxyShadows()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/bindings/
H A DDOMJSProxyHandler.cpp40 bool hasOwn; in DOMProxyShadows() local
41 if (!JS_AlreadyHasOwnPropertyById(cx, expando, id, &hasOwn)) in DOMProxyShadows()
44 if (hasOwn) { in DOMProxyShadows()
55 bool hasOwn; in DOMProxyShadows() local
56 if (!GetProxyHandler(proxy)->hasOwn(cx, proxy, id, &hasOwn)) in DOMProxyShadows()
59 return hasOwn ? js::Shadows : js::DoesntShadowUnique; in DOMProxyShadows()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/proxy/
H A DProxy.cpp227 if (!handler->hasOwn(cx, proxy, id, bp)) return false; in has()
252 bool Proxy::hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) { in hasOwn() function in Proxy
258 return handler->hasOwn(cx, proxy, id, bp); in hasOwn()
266 bool hasOwn; in ProxyHasOwn() local
267 if (!Proxy::hasOwn(cx, proxy, id, &hasOwn)) return false; in ProxyHasOwn()
269 result.setBoolean(hasOwn); in ProxyHasOwn()
293 if (!handler->hasOwn(cx, proxy, id, &own)) return false; in getInternal()
H A DOpaqueCrossCompartmentWrapper.cpp120 bool OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, in hasOwn() function in OpaqueCrossCompartmentWrapper
122 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DScriptedProxyHandler.h62 virtual bool hasOwn(JSContext* cx, HandleObject proxy, HandleId id, in hasOwn() function
64 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
/dports/www/firefox-esr/firefox-91.8.0/js/src/proxy/
H A DOpaqueCrossCompartmentWrapper.cpp115 bool OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, in hasOwn() function in OpaqueCrossCompartmentWrapper
117 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DScriptedProxyHandler.h65 virtual bool hasOwn(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, in hasOwn() function
67 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
/dports/www/firefox/firefox-99.0/js/src/proxy/
H A DOpaqueCrossCompartmentWrapper.cpp115 bool OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, in hasOwn() function in OpaqueCrossCompartmentWrapper
117 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DScriptedProxyHandler.h65 virtual bool hasOwn(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, in hasOwn() function
67 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/proxy/
H A DScriptedProxyHandler.h57 virtual bool hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) const override { in hasOwn() function
58 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
H A DOpaqueCrossCompartmentWrapper.cpp149 OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, HandleId id, in hasOwn() function in OpaqueCrossCompartmentWrapper
152 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/proxy/
H A DOpaqueCrossCompartmentWrapper.cpp115 bool OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, in hasOwn() function in OpaqueCrossCompartmentWrapper
117 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DScriptedProxyHandler.h65 virtual bool hasOwn(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, in hasOwn() function
67 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/proxy/
H A DScriptedProxyHandler.h62 virtual bool hasOwn(JSContext* cx, HandleObject proxy, HandleId id, in hasOwn() function
64 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
H A DOpaqueCrossCompartmentWrapper.cpp113 bool OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, in hasOwn() function in OpaqueCrossCompartmentWrapper
115 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DProxy.cpp237 if (!handler->hasOwn(cx, proxy, id, bp)) { in has()
268 bool Proxy::hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) { in hasOwn() function in Proxy
278 return handler->hasOwn(cx, proxy, id, bp); in hasOwn()
288 return Proxy::hasOwn(cx, proxy, id, result); in ProxyHasOwn()
316 if (!handler->hasOwn(cx, proxy, id, &own)) { in getInternal()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/proxy/
H A DOpaqueCrossCompartmentWrapper.cpp140 OpaqueCrossCompartmentWrapper::hasOwn(JSContext* cx, HandleObject wrapper, HandleId id, in hasOwn() function in OpaqueCrossCompartmentWrapper
143 return BaseProxyHandler::hasOwn(cx, wrapper, id, bp); in hasOwn()
H A DScriptedDirectProxyHandler.h55 virtual bool hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) const override { in hasOwn() function
56 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
H A DScriptedIndirectProxyHandler.cpp32 name == cx->names().hasOwn || in GetDerivedTrap()
275 ScriptedIndirectProxyHandler::hasOwn(JSContext* cx, HandleObject proxy, HandleId id, bool* bp) const in hasOwn() function in ScriptedIndirectProxyHandler
279 if (!GetDerivedTrap(cx, handler, cx->names().hasOwn, &fval)) in hasOwn()
282 return BaseProxyHandler::hasOwn(cx, proxy, id, bp); in hasOwn()
/dports/lang/spidermonkey78/firefox-78.9.0/js/rust/src/
H A Djsglue.cpp67 bool (*hasOwn)(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, member
142 virtual bool hasOwn(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, \
144 return mTraps.hasOwn ? mTraps.hasOwn(cx, proxy, id, bp) \
145 : _base::hasOwn(cx, proxy, id, bp); \
374 return static_cast<const js::BaseProxyHandler*>(handler)->hasOwn(cx, proxy, in InvokeHasOwn()
/dports/lang/spidermonkey60/firefox-60.9.0/js/rust/src/
H A Djsglue.cpp67 bool (*hasOwn)(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, member
143 virtual bool hasOwn(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, \
145 return mTraps.hasOwn ? mTraps.hasOwn(cx, proxy, id, bp) \
146 : _base::hasOwn(cx, proxy, id, bp); \
387 return static_cast<const js::BaseProxyHandler*>(handler)->hasOwn(cx, proxy, in InvokeHasOwn()

12345678910>>...21