HomeSort by relevance Sort by last modified time
    Searched refs:global_context (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/src/
bootstrapper.cc 199 Handle<Context> global_context() { return global_context_; } function in class:BASE_EMBEDDED
233 static bool InstallExtensions(Handle<Context> global_context,
237 static void InstallSpecialObjects(Handle<Context> global_context);
411 global_context()->set_function_instance_map(*fm);
420 global_context()->set_function_map(*fm);
434 global_context()->set_object_function(*object_fun);
440 global_context()->set_initial_object_prototype(*prototype);
463 global_context()->function_map()->set_prototype(*empty_function);
464 global_context()->function_instance_map()->set_prototype(*empty_function);
469 empty_fm->set_prototype(global_context()->object_function()->prototype())
    [all...]
contexts.cc 48 Context* Context::global_context() { function in class:v8::internal::Context
53 return global()->global_context();
69 return global_context()->global_proxy_object();
73 global_context()->set_global_proxy_object(object);
bootstrapper.h 98 static bool InstallExtensions(Handle<Context> global_context,
contexts.h 257 Context* global_context();
264 return global_context()->out_of_memory() == Heap::true_value();
269 global_context()->set_out_of_memory(Heap::true_value());
top.cc 472 // avoid using Top::global_context() because it uses Handle.
473 Context* global_context = Top::context()->global()->global_context();
474 if (receiver_context == global_context) return YES;
477 global_context->security_token())
924 Handle<Context> Top::global_context() { function in class:v8::internal::Top
926 return Handle<Context>(global->global_context());
937 if (context->global_context() == *Debug::debug_context()) {
948 return Handle<Context>(context->global_context());
961 FixedArray* table = context()->global_context()->special_function_table()
    [all...]
messages.cc 76 Handle<JSFunction> fun(Top::global_context()->make_message_fun());
top.h 335 static Handle<Context> global_context();
355 return Handle<type>(context()->global_context()->name()); \
builtins.cc 191 Top::context()->global_context()->array_function();
313 Top::context()->global_context()->array_function();
341 Top::context()->global_context()->array_function();
384 Top::context()->global_context()->array_function();
434 GetProperty(Handle<JSObject>(Top::global_context()->builtins()),
499 Top::context()->global_context()->array_function();
575 Top::context()->global_context()->array_function();
    [all...]
execution.cc 186 Top::global_context()->call_as_function_delegate());
204 Top::global_context()->call_as_constructor_delegate());
516 Top::global_context()->function_cache()->GetElement(serial_number);
accessors.cc 92 Top::context()->global_context()->number_function()->has_initial_map());
94 Top::context()->global_context()->number_function()->initial_map();
compiler.cc 131 ASSERT(!i::Top::global_context().is_null());
132 script->set_context_data((*i::Top::global_context())->data());
factory.cc 317 context->global_context());
716 fun->set_context(Top::context()->global_context());
727 Handle<Context> global_context) {
728 CALL_HEAP_FUNCTION(object->ToObject(*global_context), Object);
    [all...]
factory.h 234 Handle<Context> global_context);
objects.cc 64 Object* Object::ToObject(Context* global_context) {
66 return CreateJSValue(global_context->number_function(), this);
68 return CreateJSValue(global_context->boolean_function(), this);
70 return CreateJSValue(global_context->string_function(), this);
78 Context* global_context = Top::context()->global_context(); local
82 return CreateJSValue(global_context->number_function(), this);
84 return CreateJSValue(global_context->boolean_function(), this);
86 return CreateJSValue(global_context->string_function(), this);
118 Context* global_context = Top::context()->global_context() local
    [all...]
debug.cc 704 Handle<Context> context = Top::global_context();
    [all...]
string-stream.cc 468 Object* token = context->global_context()->security_token();
runtime.cc 480 Top::context()->global_context()->context_extension_function();
    [all...]
handles.cc 569 Top::context()->global_context()->arguments_boilerplate());
objects-debug.cc 800 global_context()->ShortPrint();
    [all...]
api.cc     [all...]
heap.cc     [all...]
objects.h 639 // global_context is used when creating wrapper object.
640 Object* ToObject(Context* global_context);
    [all...]
objects-inl.h     [all...]
  /external/v8/test/cctest/
test-compiler.cc 126 Top::global_context());
test-serialize.cc 285 CHECK(Top::global_context()->IsContext());

Completed in 1008 milliseconds

1 2