Searched defs:global_proxy (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/v8/src/
H A Dcontexts.cc64 JSObject* Context::global_proxy() { function in class:v8::internal::Context
H A Dv8natives.js176 var global_proxy = %GlobalProxy(global); variable
181 return %_CallFunction(global_proxy, f);
1859 var global_proxy = %GlobalProxy(global);
1862 var f = %_CallFunction(global_proxy, %CompileString(source, true));
H A Disolate.h674 JSObject* global_proxy() { function in class:v8::internal::Isolate
675 return context()->global_proxy();
H A Dbootstrapper.cc198 Handle<JSGlobalProxy> global_proxy);
360 Handle<JSGlobalProxy> global_proxy(JSGlobalProxy::cast(env->global_proxy()));
361 global_proxy->set_native_context(*factory->null_value());
362 SetObjectPrototype(global_proxy, factory->null_value());
363 global_proxy->map()->set_constructor(*factory->null_value());
753 // global_proxy. The global_proxy_constructor also has a prototype_template
835 // Set global_proxy.__proto__ to js_global after ConfigureGlobalObjects
838 Handle<JSGlobalProxy> global_proxy; local
839 if (maybe_global_proxy.ToHandle(&global_proxy)) {
850 HookUpGlobalProxy(Handle<GlobalObject> global_object, Handle<JSGlobalProxy> global_proxy) argument
2639 Handle<JSGlobalProxy> global_proxy = CreateNewGlobals( local
2654 Handle<JSGlobalProxy> global_proxy = CreateNewGlobals( local
[all...]
H A Dobjects-inl.h5277 ACCESSORS(GlobalObject, global_proxy, JSObject, kGlobalProxyOffset)
5890 JSObject* JSFunction::global_proxy() { function in class:v8::internal::Code::FindAndReplacePattern::JSFunction
5891 return context()->global_proxy();
6693 return JSGlobalProxy::cast(global_proxy())->IsDetachedFrom(this);
/external/chromium_org/v8/test/cctest/
H A Dtest-heap-profiler.cc439 v8::Handle<v8::Object> global_proxy = env->Global(); local
440 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>();
650 v8::Handle<v8::Object> global_proxy = env->Global(); local
651 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>();
1725 const v8::HeapGraphNode* global_proxy = local
1726 GetProperty(global, v8::HeapGraphEdge::kInternal, "global_proxy");
1727 CHECK_NE(NULL, global_proxy);
2690 v8::Handle<v8::Object> global_proxy = env->Global(); local
2691 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>();
H A Dtest-api.cc2630 v8::Handle<v8::Object> global_proxy = env->Global(); local
2631 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>();
2801 Handle<Object> global_proxy = env->Global(); local
2802 int hash1 = global_proxy->GetIdentityHash();
2805 int hash2 = global_proxy->GetIdentityHash();
2809 LocalContext env2(NULL, Handle<ObjectTemplate>(), global_proxy);
2810 int hash3 = global_proxy->GetIdentityHash();

Completed in 242 milliseconds