Lines Matching refs:Proxy
590 // We need to store the global proxy size upfront in case we need the
591 // bootstrapper to create a global proxy before we deserialize the context.
3808 void v8::Proxy::CheckCast(Value* that) {
3809 Utils::ApiCheck(that->IsProxy(), "v8::Proxy::Cast",
3810 "Could not convert to proxy");
4519 // IsTemplateFor() ensures that iter.GetCurrent() can't be a Proxy here.
6280 // Create a fresh template for the global proxy object.
6286 // global proxy template.
6461 // TODO(dcarney): This should always return the global proxy
6583 // If it's a global proxy, then test with the global object. Note that the
6586 // The global proxy should always have a prototype, as it is a bug to call
7477 Local<Object> Proxy::GetTarget() {
7484 Local<Value> Proxy::GetHandler() {
7491 bool Proxy::IsRevoked() {
7497 void Proxy::Revoke() {
7503 MaybeLocal<Proxy> Proxy::New(Local<Context> context, Local<Object> local_target,
7505 PREPARE_FOR_EXECUTION(context, Proxy, New, Proxy);
7508 Local<Proxy> result;
7510 !ToLocal<Proxy>(i::JSProxy::New(isolate, target, handler), &result);
7511 RETURN_ON_FAILED_EXECUTION(Proxy);