Searched defs:isolate (Results 76 - 100 of 702) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValueTest.cpp25 v8::Isolate* isolate() const { return m_scope.isolate(); } function in class:blink::SerializedScriptValueTest
41 v8::Handle<v8::Value> v8OriginalFile = toV8(originalFile.get(), creationContext(), isolate());
43 SerializedScriptValue::create(v8OriginalFile, nullptr, nullptr, ASSERT_NO_EXCEPTION, isolate());
44 v8::Handle<v8::Value> v8File = serializedScriptValue->deserialize(isolate());
46 ASSERT_TRUE(V8File::hasInstance(v8File, isolate()));
61 v8::Handle<v8::Value> v8OriginalFile = toV8(originalFile.get(), creationContext(), isolate());
63 SerializedScriptValue::create(v8OriginalFile, nullptr, nullptr, ASSERT_NO_EXCEPTION, isolate());
64 v8::Handle<v8::Value> v8File = serializedScriptValue->deserialize(isolate());
66 ASSERT_TRUE(V8File::hasInstance(v8File, isolate()));
[all...]
H A DSharedPersistent.h45 static PassRefPtr<SharedPersistent<T> > create(v8::Handle<T> value, v8::Isolate* isolate) argument
47 return adoptRef(new SharedPersistent<T>(value, isolate));
50 v8::Local<T> newLocal(v8::Isolate* isolate) const
52 return m_value.newLocal(isolate);
63 explicit SharedPersistent(v8::Handle<T> value, v8::Isolate* isolate) : m_value(isolate, value) { } argument
H A DV8DOMWrapper.cpp44 static v8::Local<v8::Object> wrapInShadowTemplate(v8::Local<v8::Object> wrapper, ScriptWrappableBase* internalPointer, v8::Isolate* isolate) argument
47 V8PerIsolateData* data = V8PerIsolateData::from(isolate);
50 shadowTemplate = v8::FunctionTemplate::New(isolate);
53 shadowTemplate->SetClassName(v8AtomicString(isolate, "HTMLDocument"));
54 shadowTemplate->Inherit(V8HTMLDocument::domTemplate(isolate));
63 v8::Local<v8::Object> shadow = V8ScriptRunner::instantiateObject(isolate, shadowConstructor);
71 v8::Local<v8::Object> V8DOMWrapper::createWrapper(v8::Handle<v8::Object> creationContext, const WrapperTypeInfo* type, ScriptWrappableBase* internalPointer, v8::Isolate* isolate) argument
73 V8WrapperInstantiationScope scope(creationContext, isolate);
76 v8::Local<v8::Object> wrapper = perContextData ? perContextData->createWrapperFromCache(type) : V8ObjectConstructor::newInstance(isolate, type->domTemplate(isolate)
[all...]
H A DV8HiddenValue.cpp14 v8::Handle<v8::String> V8HiddenValue::name(v8::Isolate* isolate) \
16 V8HiddenValue* hiddenValue = V8PerIsolateData::from(isolate)->hiddenValue(); \
18 hiddenValue->m_##name.set(isolate, v8AtomicString(isolate, #name)); \
20 return hiddenValue->m_##name.newLocal(isolate); \
25 v8::Local<v8::Value> V8HiddenValue::getHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key) argument
30 bool V8HiddenValue::setHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key, v8::Handle<v8::Value> value) argument
35 bool V8HiddenValue::deleteHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key) argument
40 v8::Local<v8::Value> V8HiddenValue::getHiddenValueFromMainWorldWrapper(v8::Isolate* isolate, ScriptWrappable* wrappable, v8::Handle<v8::String> key) argument
42 v8::Local<v8::Object> wrapper = wrappable->newLocalWrapper(isolate);
[all...]
H A DV8MutationCallback.cpp41 , m_callback(scriptState->isolate(), callback)
44 V8HiddenValue::setHiddenValue(scriptState->isolate(), owner, V8HiddenValue::callback(scriptState->isolate()), callback);
53 v8::Isolate* isolate = m_scriptState->isolate();
61 v8::Handle<v8::Value> observerHandle = toV8(observer, m_scriptState->context()->Global(), isolate);
72 v8::Handle<v8::Value> argv[] = { v8Array(mutations, m_scriptState->context()->Global(), isolate), observerHandle };
76 ScriptController::callFunction(executionContext(), m_callback.newLocal(isolate), thisObject, WTF_ARRAY_LENGTH(argv), argv, isolate); local
H A DV8ObjectConstructor.h50 ConstructorMode(v8::Isolate* isolate) argument
51 : m_isolate(isolate)
52 , m_microtaskSuppression(isolate)
65 static bool current(v8::Isolate* isolate) argument
67 return V8PerIsolateData::from(isolate)->m_constructorMode;
H A DV8PersistentValueVector.h72 explicit V8PersistentValueVector(v8::Isolate* isolate) : v8::PersistentValueVector<ValueType, WTFVectorPersistentValueVectorTraits>(isolate) { } argument
H A DV8RecursionScope.h62 explicit V8RecursionScope(v8::Isolate* isolate) argument
63 : m_isolate(isolate)
69 ASSERT(!isolate->WillAutorunMicrotasks());
78 static int recursionLevel(v8::Isolate* isolate) argument
80 return V8PerIsolateData::from(isolate)->recursionLevel();
84 static bool properlyUsed(v8::Isolate* isolate) argument
86 return recursionLevel(isolate) > 0 || V8PerIsolateData::from(isolate)->internalScriptRecursionLevel() > 0;
92 MicrotaskSuppression(v8::Isolate* isolate) argument
94 : m_isolate(isolate)
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CanvasRenderingContext2DCustom.cpp49 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
52 return toV8(style->canvasGradient(), creationContext, isolate);
55 return toV8(style->canvasPattern(), creationContext, isolate);
57 return v8String(isolate, style->color());
60 static PassRefPtrWillBeRawPtr<CanvasStyle> toCanvasStyle(v8::Handle<v8::Value> value, v8::Isolate* isolate) argument
62 RefPtrWillBeRawPtr<CanvasStyle> canvasStyle = CanvasStyle::createFromGradient(V8CanvasGradient::toImplWithTypeCheck(isolate, value));
65 return CanvasStyle::createFromPattern(V8CanvasPattern::toImplWithTypeCheck(isolate, value));
H A DV8CustomEventCustom.cpp45 static v8::Handle<v8::Value> cacheState(v8::Handle<v8::Object> customEvent, v8::Handle<v8::Value> detail, v8::Isolate* isolate) argument
47 V8HiddenValue::setHiddenValue(isolate, customEvent, V8HiddenValue::detail(isolate), detail);
H A DV8MutationObserverCustom.cpp70 void V8MutationObserver::visitDOMWrapper(ScriptWrappableBase* internalPointer, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate) argument
75 v8::UniqueId id(reinterpret_cast<intptr_t>(V8GCController::opaqueRootForGC(*it, isolate)));
76 isolate->SetReferenceFromGroup(id, wrapper);
H A DV8PopStateEventCustom.cpp43 static v8::Handle<v8::Value> cacheState(v8::Handle<v8::Object> popStateEvent, v8::Handle<v8::Value> state, v8::Isolate* isolate) argument
45 V8HiddenValue::setHiddenValue(isolate, popStateEvent, V8HiddenValue::state(isolate), state);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DPrivateScriptTestTest.cpp36 v8::Isolate* isolate() const { return m_scope.isolate(); } function in class:blink::__anon11176::PrivateScriptTestTest
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRequestInit.cpp36 v8::Isolate* isolate = toIsolate(context); local
45 } else if (V8Blob::hasInstance(body, isolate)) {
50 } else if (V8FormData::hasInstance(body, isolate)) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMError.cpp70 v8::Handle<v8::Value> WebDOMError::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
74 return toV8(m_private.get(), creationContext, isolate);
/external/chromium_org/v8/src/arm64/
H A Dsimulator-arm64.h47 Isolate* isolate);
60 static uintptr_t JsLimitFromCLimit(v8::internal::Isolate* isolate, argument
62 USE(isolate);
163 Isolate* isolate = NULL,
170 static void Initialize(Isolate* isolate);
172 static Simulator* current(v8::internal::Isolate* isolate);
204 Isolate* isolate);
898 static uintptr_t JsLimitFromCLimit(v8::internal::Isolate* isolate,
900 return Simulator::current(isolate)->StackLimit();
/external/chromium_org/v8/src/
H A Dbackground-parsing-task.cc12 int stack_size, Isolate* isolate)
17 source->encoding, isolate));
28 source->hash_seed = isolate->heap()->HashSeed();
10 BackgroundParsingTask( StreamedSource* source, ScriptCompiler::CompileOptions options, int stack_size, Isolate* isolate) argument
H A Dcompilation-cache.h18 CompilationSubCache(Isolate* isolate, int generations) argument
19 : isolate_(isolate),
59 Isolate* isolate() { return isolate_; }
73 CompilationCacheScript(Isolate* isolate, int generations);
113 CompilationCacheEval(Isolate* isolate, int generations)
114 : CompilationSubCache(isolate, generations) { }
132 CompilationCacheRegExp(Isolate* isolate, int generations)
133 : CompilationSubCache(isolate, generations) { }
209 explicit CompilationCache(Isolate* isolate);
219 Isolate* isolate() { retur
[all...]
H A Dinterface-descriptors.cc45 const char* CallInterfaceDescriptor::DebugName(Isolate* isolate) { argument
46 CallInterfaceDescriptorData* start = isolate->call_descriptor_data(0);
H A Dsnapshot-common.cc29 bool Snapshot::Initialize(Isolate* isolate) { argument
38 bool success = isolate->Init(&deserializer);
54 Handle<Context> Snapshot::NewContextFromSnapshot(Isolate* isolate) { argument
70 deserializer.DeserializePartial(isolate, &root);
/external/chromium_org/v8/src/compiler/
H A Dpipeline.h47 Isolate* isolate() { return info_->isolate(); } function in class:v8::internal::compiler::Pipeline
/external/chromium_org/v8/src/heap/
H A Dsweeper-thread.cc9 #include "src/isolate.h"
17 SweeperThread::SweeperThread(Isolate* isolate) argument
19 isolate_(isolate),
20 heap_(isolate->heap()),
/external/chromium_org/v8/src/ia32/
H A Dsimulator-ia32.h33 static inline uintptr_t JsLimitFromCLimit(Isolate* isolate, argument
35 USE(isolate);
/external/chromium_org/v8/src/ic/
H A Dic-compiler.h20 static Code* FindPreMonomorphic(Isolate* isolate, Code::Kind kind,
24 static Handle<Code> ComputeLoad(Isolate* isolate, InlineCacheState ic_state,
26 static Handle<Code> ComputeStore(Isolate* isolate, InlineCacheState ic_state,
62 PropertyICCompiler(Isolate* isolate, Code::Kind kind, argument
65 : PropertyAccessCompiler(isolate, kind, cache_holder),
/external/chromium_org/v8/src/test/
H A Dtest-utils.h20 Isolate* isolate() const { return isolate_; } function in class:v8::TestWithIsolate
61 Isolate* isolate() const { function in class:v8::internal::TestWithIsolate
62 return reinterpret_cast<Isolate*>(::v8::TestWithIsolate::isolate());
72 TestWithZone() : zone_(isolate()) {}

Completed in 1081 milliseconds

1234567891011>>