Lines Matching refs:Proxy
719 // We need to store the global proxy size upfront in case we need the
720 // bootstrapper to create a global proxy before we deserialize the context.
3805 void v8::Proxy::CheckCast(Value* that) {
3806 Utils::ApiCheck(that->IsProxy(), "v8::Proxy::Cast",
3807 "Could not convert to proxy");
4464 // IsTemplateFor() ensures that iter.GetCurrent() can't be a Proxy here.
6150 // Create a fresh template for the global proxy object.
6156 // global proxy template.
6333 // TODO(dcarney): This should always return the global proxy
6500 // If it's a global proxy, then test with the global object. Note that the
6504 // The global proxy should always have a prototype, as it is a bug to call
7378 Local<Value> Proxy::GetTarget() {
7385 Local<Value> Proxy::GetHandler() {
7392 bool Proxy::IsRevoked() {
7398 void Proxy::Revoke() {
7404 MaybeLocal<Proxy> Proxy::New(Local<Context> context, Local<Object> local_target,
7406 PREPARE_FOR_EXECUTION(context, Proxy, New, Proxy);
7409 Local<Proxy> result;
7411 !ToLocal<Proxy>(i::JSProxy::New(isolate, target, handler), &result);
7412 RETURN_ON_FAILED_EXECUTION(Proxy);