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

1 2 3 4 5 6 7 8

  /external/v8/src/
v8threads.cc 32 isolate_ = reinterpret_cast<i::Isolate*>(isolate);
36 if (!isolate_->thread_manager()->IsLockedByCurrentThread()) {
37 isolate_->thread_manager()->Lock();
42 if (isolate_->thread_manager()->RestoreThread()) {
45 internal::ExecutionAccess access(isolate_);
46 isolate_->stack_guard()->ClearThread(access);
47 isolate_->stack_guard()->InitThread(access);
50 DCHECK(isolate_->thread_manager()->IsLockedByCurrentThread());
67 DCHECK(isolate_->thread_manager()->IsLockedByCurrentThread());
70 isolate_->thread_manager()->FreeThreadResources()
    [all...]
vm-state-inl.h 41 : isolate_(isolate), previous_tag_(isolate->current_vm_state()) {
43 LOG(isolate_, TimerEvent(Logger::START, TimerEventExternal::name()));
45 isolate_->set_current_vm_state(Tag);
52 LOG(isolate_, TimerEvent(Logger::END, TimerEventExternal::name()));
54 isolate_->set_current_vm_state(previous_tag_);
59 : isolate_(isolate),
65 isolate_->set_external_callback_scope(this);
69 isolate_->set_external_callback_scope(previous_scope_);
prototype.h 38 isolate_(isolate),
50 isolate_(isolate),
60 isolate_(receiver_map->GetIsolate()) {}
66 isolate_(receiver_map->GetIsolate()) {}
75 return isolate_->MayAccess(handle(isolate_->context()),
97 object_ = isolate_->heap()->null_value();
101 handle_ = handle(isolate_->heap()->null_value(), isolate_);
111 object_ = object_->GetRootMap(isolate_)->prototype()
180 Isolate* isolate_; member in class:v8::internal::PrototypeIterator
    [all...]
execution.cc 17 : isolate_(NULL) {
22 DCHECK(isolate_ != NULL);
25 isolate_->heap()->SetStackLimits();
30 DCHECK(isolate_ != NULL);
33 isolate_->heap()->SetStackLimits();
229 ExecutionAccess access(isolate_);
232 uintptr_t jslimit = SimulatorStack::JsLimitFromCLimit(isolate_, limit);
245 ExecutionAccess access(isolate_);
249 uintptr_t jslimit = SimulatorStack::JsLimitFromCLimit(isolate_, climit);
252 isolate_->heap()->SetStackLimits()
    [all...]
vm-state.h 26 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
48 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
handles-inl.h 30 isolate_ = isolate;
46 int before = NumberOfHandles(isolate_);
47 CloseScope(isolate_, prev_next_, prev_limit_);
48 int after = NumberOfHandles(isolate_);
53 CloseScope(isolate_, prev_next_, prev_limit_);
81 HandleScopeData* current = isolate_->handle_scope_data();
85 CloseScope(isolate_, prev_next_, prev_limit_);
88 Handle<T> result(value, isolate_);
123 inline SealHandleScope::SealHandleScope(Isolate* isolate) : isolate_(isolate) {
126 HandleScopeData* current = isolate_->handle_scope_data()
    [all...]
cancelable-task.h 135 Isolate* isolate() { return isolate_; }
138 Isolate* isolate_; member in class:v8::internal::CancelableTask
157 Isolate* isolate() { return isolate_; }
160 Isolate* isolate_; member in class:v8::internal::CancelableIdleTask
runtime-profiler.h 37 Isolate* isolate_; member in class:v8::internal::RuntimeProfiler
isolate-inl.h 81 : isolate_(isolate),
82 pending_exception_(isolate_->pending_exception(), isolate_) {}
86 isolate_->set_pending_exception(*pending_exception_);
allocation-site-scopes.h 22 isolate_ = isolate;
30 Isolate* isolate() { return isolate_; }
43 Isolate* isolate_; member in class:v8::internal::AllocationSiteContext
key-accumulator.h 35 : isolate_(isolate), filter_(filter) {}
55 Isolate* isolate() { return isolate_; }
63 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
messages.cc 158 : isolate_(isolate) {
173 Handle<Object> script(fun_->shared()->script(), isolate_);
175 return Handle<Object>(Handle<Script>::cast(script)->name(), isolate_);
177 return isolate_->factory()->null_value();
185 Handle<Object> script(fun_->shared()->script(), isolate_);
189 return isolate_->factory()->eval_string();
191 return isolate_->factory()->null_value();
196 Handle<Object> script_obj(fun_->shared()->script(), isolate_);
200 if (source_url->IsString()) return Handle<Object>(source_url, isolate_);
201 return Handle<Object>(script->name(), isolate_);
    [all...]
json-stringifier.h 104 Factory* factory() { return isolate_->factory(); }
106 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
186 : isolate_(isolate), builder_(isolate) {
247 ASSIGN_RETURN_ON_EXCEPTION(isolate_, fun, Object::GetProperty(&it), Object);
253 HandleScope scope(isolate_);
255 isolate_, object,
256 Execution::Call(isolate_, fun, object, 1, argv),
264 StackLimitCheck check(isolate_);
266 isolate_->StackOverflow();
279 isolate_->Throw(*error)
    [all...]
  /external/v8/test/unittests/
test-utils.cc 31 Isolate* TestWithIsolate::isolate_ = NULL; member in class:v8::TestWithIsolate
44 EXPECT_EQ(NULL, isolate_);
48 isolate_ = v8::Isolate::New(create_params);
49 EXPECT_TRUE(isolate_ != NULL);
55 ASSERT_TRUE(isolate_ != NULL);
58 while (platform::PumpMessageLoop(platform, isolate_)) continue;
59 isolate_->Dispose();
60 isolate_ = NULL;
  /external/v8/src/wasm/
wasm-result.cc 48 isolate_->ScheduleThrow(
49 *isolate_->factory()->NewStringFromAsciiChecked(str.str().c_str()));
asm-wasm-builder.h 25 Isolate* isolate_; member in class:v8::internal::wasm::AsmWasmBuilder
  /external/v8/test/cctest/
test-lockers.cc 62 isolate_(isolate),
67 v8::Locker locker(isolate_);
68 v8::Isolate::Scope isolate_scope(isolate_);
69 CHECK_EQ(isolate_, v8::Isolate::GetCurrent());
70 v8::HandleScope scope(isolate_);
72 v8::Local<v8::Context>::New(isolate_, context_);
79 v8::Locker locker(isolate_);
80 v8::Isolate::Scope isolate_scope(isolate_);
81 v8::HandleScope scope(isolate_);
83 v8::Local<v8::Context>::New(isolate_, context_)
93 v8::Isolate* isolate_; member in class:KangarooThread
192 v8::Isolate* isolate_; member in class:IsolateLockingThreadWithLocalContext
249 v8::Isolate* isolate_; member in class:IsolateNestedLockingThread
338 v8::Isolate* isolate_; member in class:LockIsolateAndCalculateFibSharedContextThread
378 v8::Isolate* isolate_; member in class:LockerUnlockerThread
435 v8::Isolate* isolate_; member in class:LockTwiceAndUnlockThread
562 v8::Isolate* isolate_; member in class:LockUnlockLockThread
    [all...]
test-microtask-delivery.cc 40 isolate_ = v8::Isolate::New(create_params);
41 isolate_->Enter();
45 isolate_->Exit();
46 isolate_->Dispose();
49 v8::Isolate* GetIsolate() const { return isolate_; }
52 v8::Isolate* isolate_; member in class:__anon24434::HarmonyIsolate
test-sampler-api.cc 93 : sample_is_taken_(false), isolate_(CcTest::isolate()) {
96 v8::HandleScope scope(isolate_);
97 v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate_);
99 v8::FunctionTemplate::New(isolate_, CollectSample));
100 LocalContext env(isolate_, NULL, global);
101 isolate_->SetJitCodeEventHandler(v8::kJitCodeEventDefault,
107 isolate_->SetJitCodeEventHandler(v8::kJitCodeEventDefault, NULL);
136 if (!simulator_helper.Init(isolate_)) return;
144 isolate_->GetStackSample(state, sample_.data().start(),
184 v8::Isolate* isolate_; member in class:__anon24445::SamplingTestHelper
    [all...]
  /external/v8/src/ast/
ast-value-factory.cc 227 Isolate* saved_isolate = isolate_;
228 isolate_ = NULL;
239 isolate_ = saved_isolate;
240 if (isolate_) result->Internalize(isolate_);
251 if (isolate_) {
252 new_string->Internalize(isolate_);
259 if (isolate_) {
271 isolate_ = isolate;
278 if (isolate_) {
    [all...]
  /external/v8/src/debug/
debug.cc 47 isolate_(isolate) {
318 isolate_->counters()->debug_feature_usage()->AddSample(feature);
386 PostponeInterruptsScope postpone(isolate_);
389 HandleScope scope(isolate_);
391 Handle<Context> context = isolate_->bootstrapper()->CreateEnvironment(
399 isolate_->global_handles()->Create(*context));
421 HandleScope scope(isolate_);
435 PostponeInterruptsScope postpone(isolate_);
498 OnDebugBreak(isolate_->factory()->undefined_value(), false);
510 Factory* factory = isolate_->factory()
    [all...]
debug-scopes.cc 19 : isolate_(isolate),
39 context_ = Handle<Context>(context_->previous(), isolate_);
73 context_ = Handle<Context>(context_->declaration_context(), isolate_);
76 context_ = Handle<Context>(context_->previous(), isolate_);
118 : isolate_(isolate),
131 isolate_->factory()->NewFixedArray(kScopeDetailsSize);
135 ASSIGN_RETURN_ON_EXCEPTION(isolate_, scope_object, ScopeObject(), JSObject);
143 return isolate_->factory()->NewJSArrayWithElements(details);
159 context_ = Handle<Context>(context_->previous(), isolate_);
170 context_ = Handle<Context>(context_->previous(), isolate_);
    [all...]
debug-frames.cc 14 : frame_(frame), deoptimized_frame_(NULL), isolate_(isolate) {
37 Deoptimizer::DeleteDebuggerInspectableFrame(deoptimized_frame_, isolate_);
64 return isolate_->heap()->undefined_value();
103 HandleScope scope(isolate_);
114 : isolate_->heap()->undefined_value(),
115 isolate_);
126 isolate_);
127 if (value->IsTheHole()) value = isolate_->factory()->undefined_value();
149 HandleScope scope(isolate_);
170 target, handle(scope_info->StackLocalName(i), isolate_))
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 363 : js_bindings_(js_bindings), error_listener_(error_listener), isolate_(isolate) {
367 v8::Locker locked(isolate_);
368 v8::Isolate::Scope isolate_scope(isolate_);
376 v8::Locker locked(isolate_);
377 v8::Isolate::Scope isolate_scope(isolate_);
378 v8::HandleScope scope(isolate_);
381 v8::Local<v8::Context>::New(isolate_, v8_context_);
392 UTF16StringToV8String(isolate_, url),
393 UTF16StringToV8String(isolate_, host) };
427 v8::Locker locked(isolate_);
708 v8::Isolate* isolate_; member in class:net::ProxyResolverV8::Context
    [all...]
  /external/v8/src/ic/
access-compiler.h 42 isolate_(isolate),
51 Isolate* isolate() const { return isolate_; }
79 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED

Completed in 764 milliseconds

1 2 3 4 5 6 7 8