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

1 2 3

  /external/v8/src/
bootstrapper.cc 165 Handle<Context> global_context() { return global_context_; } function in class:BASE_EMBEDDED
229 static bool InstallExtensions(Handle<Context> global_context,
235 static void InstallSpecialObjects(Handle<Context> global_context);
445 global_context()->set_function_instance_map(*function_instance_map);
451 global_context()->set_function_without_prototype_map(
458 global_context()->set_function_map(*function_map);
478 global_context()->set_object_function(*object_fun);
485 global_context()->set_initial_object_prototype(*prototype);
512 global_context()->function_map()->set_prototype(*empty_function);
513 global_context()->function_instance_map()->set_prototype(*empty_function)
    [all...]
contexts.cc 58 Context* Context::global_context() { function in class:v8::internal::Context
63 return global()->global_context();
79 return global_context()->global_proxy_object();
83 global_context()->set_global_proxy_object(object);
type-info.h 238 Handle<Context> global_context,
268 static bool CanRetainOtherContext(Map* map, Context* global_context);
270 Context* global_context);
builtins.cc 202 Context* global_context = isolate->context()->global_context(); local
204 !global_context->object_js_array_map()->IsUndefined()) {
205 array->set_map(Map::cast(global_context->object_js_array_map()));
302 isolate->context()->global_context()->internal_array_function());
310 isolate->context()->global_context()->array_function());
392 Context* global_context,
401 if (array_proto != global_context->initial_object_prototype()) return false;
451 Context* global_context = heap->isolate()->context()->global_context();
932 Context* global_context = isolate->context()->global_context(); local
    [all...]
bootstrapper.h 129 bool InstallExtensions(Handle<Context> global_context,
type-info.cc 63 Handle<Context> global_context,
65 global_context_ = global_context;
521 Context* global_context) {
531 global_context)) {
540 return CanRetainOtherContext(function, global_context);
545 Context* global_context) {
546 return function->context()->global() != global_context->global()
547 && function->context()->global() != global_context->builtins();
execution.cc 243 isolate->global_context()->call_as_function_delegate());
267 isolate->global_context()->call_as_function_delegate());
300 isolate->global_context()->call_as_constructor_delegate());
328 isolate->global_context()->call_as_constructor_delegate());
658 pattern->GetIsolate()->global_context()->regexp_function());
704 isolate->global_context()->function_cache()->
compiler.cc 296 Handle<Context> global_context(info->closure()->context()->global_context());
297 TypeFeedbackOracle oracle(code, global_context, info->isolate());
362 ASSERT(!isolate->global_context().is_null());
364 script->set_context_data((*isolate->global_context())->data());
isolate.cc 788 // avoid using Isolate::global_context() because it uses Handle.
789 Context* global_context = isolate->context()->global()->global_context();
790 if (receiver_context == global_context) return YES;
793 global_context->security_token())
1308 Handle<Context> Isolate::global_context() { function in class:v8::internal::Isolate
    [all...]
isolate.h 744 Handle<Context> global_context();
784 return Handle<type>(context()->global_context()->name()); \
    [all...]
accessors.cc 95 ASSERT(Isolate::Current()->context()->global_context()->number_function()->
97 Map* number_map = Isolate::Current()->context()->global_context()->
contexts.h 338 Context* global_context();
factory.cc 553 context->global_context());
    [all...]
objects-inl.h 3932 Context* global_context = context()->global_context(); local
    [all...]
objects.cc 77 MaybeObject* Object::ToObject(Context* global_context) {
79 return CreateJSValue(global_context->number_function(), this);
81 return CreateJSValue(global_context->boolean_function(), this);
83 return CreateJSValue(global_context->string_function(), this);
95 Context* global_context = isolate->context()->global_context(); local
96 return CreateJSValue(global_context->number_function(), this);
99 Context* global_context = isolate->context()->global_context(); local
100 return CreateJSValue(global_context->boolean_function(), this)
103 Context* global_context = isolate->context()->global_context(); local
142 Context* global_context = Isolate::Current()->context()->global_context(); local
659 Context* global_context = isolate->context()->global_context(); local
2465 Context* global_context = GetIsolate()->context()->global_context(); local
7510 Context* global_context = context()->global_context(); local
    [all...]
  /external/llvm/test/Bindings/Ocaml/
ext_exc.ml 5 let context = Llvm.global_context ()
executionengine.ml 13 let context = global_context ()
29 let b = builder_at_end (global_context ()) (entry_block fn) in
36 let b = builder_at_end (global_context ()) (entry_block fn) in
62 let m = create_module (global_context ()) "test_module" in
65 let m2 = create_module (global_context ()) "test_module2" in
analysis.ml 12 let context = global_context ()
bitwriter.ml 10 let context = Llvm.global_context ()
target.ml 14 let context = global_context ()
bitreader.ml 10 let context = Llvm.global_context ()
ipo_opts.ml 14 let context = global_context ()
scalar_opts.ml 14 let context = global_context ()
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 9 let context = global_context ()
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 9 let context = global_context ()

Completed in 469 milliseconds

1 2 3