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

1 2 3

  /external/v8/src/
bootstrapper.cc 161 Handle<Context> global_context() { return global_context_; } function in class:BASE_EMBEDDED
202 static bool InstallExtensions(Handle<Context> global_context,
206 static void InstallSpecialObjects(Handle<Context> global_context);
405 global_context()->set_function_instance_map(*function_instance_map);
411 global_context()->set_function_without_prototype_map(
418 global_context()->set_function_map(*function_map);
439 global_context()->set_object_function(*object_fun);
446 global_context()->set_initial_object_prototype(*prototype);
473 global_context()->function_map()->set_prototype(*empty_function);
474 global_context()->function_instance_map()->set_prototype(*empty_function)
    [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 126 bool InstallExtensions(Handle<Context> global_context,
top.cc 435 // avoid using Isolate::global_context() because it uses Handle.
436 Context* global_context = isolate->context()->global()->global_context();
437 if (receiver_context == global_context) return YES;
440 global_context->security_token())
926 Handle<Context> Isolate::global_context() { function in class:v8::internal::Isolate
    [all...]
builtins.cc 196 isolate->context()->global_context()->array_function();
260 heap->isolate()->context()->global_context()->array_function();
367 Context* global_context,
379 if (array_proto != global_context->initial_object_prototype()) return false;
401 Context* global_context = heap->isolate()->context()->global_context(); local
403 JSObject::cast(global_context->array_function()->prototype());
405 ArrayPrototypeHasNoElements(heap, global_context, array_proto);
417 isolate->global_context()->builtins()),
648 isolate->context()->global_context()->arguments_boilerplate()->map()
910 Context* global_context = isolate->context()->global_context(); local
    [all...]
compiler.cc 296 Handle<Context> global_context(info->closure()->context()->global_context());
297 TypeFeedbackOracle oracle(code, global_context);
361 ASSERT(!isolate->global_context().is_null());
363 script->set_context_data((*isolate->global_context())->data());
objects.cc 75 MaybeObject* Object::ToObject(Context* global_context) {
77 return CreateJSValue(global_context->number_function(), this);
79 return CreateJSValue(global_context->boolean_function(), this);
81 return CreateJSValue(global_context->string_function(), this);
93 Context* global_context = isolate->context()->global_context(); local
94 return CreateJSValue(global_context->number_function(), this);
97 Context* global_context = isolate->context()->global_context(); local
98 return CreateJSValue(global_context->boolean_function(), this)
101 Context* global_context = isolate->context()->global_context(); local
139 Context* global_context = heap->isolate()->context()->global_context(); local
148 Context* global_context = heap->isolate()->context()->global_context(); local
151 Context* global_context = heap->isolate()->context()->global_context(); local
154 Context* global_context = heap->isolate()->context()->global_context(); local
561 Context* global_context = Isolate::Current()->context()->global_context(); local
572 Context* global_context = isolate->context()->global_context(); local
5806 Context* global_context = context()->global_context(); local
    [all...]
contexts.h 284 Context* global_context();
execution.cc 230 isolate->global_context()->call_as_function_delegate());
249 isolate->global_context()->call_as_constructor_delegate());
547 pattern->GetIsolate()->global_context()->regexp_function());
592 isolate->global_context()->function_cache()->
isolate.h 759 Handle<Context> global_context();
799 return Handle<type>(context()->global_context()->name()); \
    [all...]
type-info.h 239 TypeFeedbackOracle(Handle<Code> code, Handle<Context> global_context);
factory.cc 444 context->global_context());
912 fun->set_context(isolate()->context()->global_context());
937 fun->set_context(isolate()->context()->global_context());
948 Handle<Context> global_context) {
949 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
    [all...]
accessors.cc 93 ASSERT(Isolate::Current()->context()->global_context()->number_function()->
95 Map* number_map = Isolate::Current()->context()->global_context()->
type-info.cc 65 Handle<Context> global_context) {
66 global_context_ = global_context;
factory.h 264 Handle<Context> global_context);
  /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 ()
scalar_opts.ml 14 let context = global_context ()
bitreader.ml 10 let context = Llvm.global_context ()
target.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 ()
  /external/v8/test/cctest/
test-compiler.cc 128 Isolate::Current()->global_context());

Completed in 1341 milliseconds

1 2 3