HomeSort by relevance Sort by last modified time
    Searched refs:Isolate (Results 226 - 250 of 956) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/mojo/apps/js/bindings/gl/
context.h 35 v8::Isolate* isolate,
58 v8::Isolate* isolate) OVERRIDE;
60 explicit Context(v8::Isolate* isolate,
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8AbstractEventListener.h 112 v8::Isolate* isolate() const { return m_isolate; } function in class:blink::V8AbstractEventListener
123 V8AbstractEventListener(bool isAttribute, v8::Isolate*);
153 v8::Isolate* m_isolate;
ScriptRegexp.cpp 41 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
42 v8::HandleScope handleScope(isolate);
43 v8::Context::Scope contextScope(V8PerIsolateData::from(isolate)->ensureScriptRegexpContext());
52 v8::Local<v8::RegExp> regex = v8::RegExp::New(v8String(isolate, pattern), static_cast<v8::RegExp::Flags>(flags));
56 m_regex.set(isolate, regex);
73 v8::Isolate* isolate = v8::Isolate::GetCurrent() local
    [all...]
V8DOMActivityLogger.cpp 74 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
75 if (!isolate->InContext())
78 v8::HandleScope handleScope(isolate);
79 v8::Handle<v8::Context> context = isolate->GetCurrentContext();
92 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
93 if (!isolate->InContext()
    [all...]
V8ValueCache.cpp 42 v8::Isolate* isolate, v8::UniquePersistent<v8::String> value, StringImpl* key)
44 V8PerIsolateData::from(isolate)->stringCache()->InvalidateLastString();
57 static v8::Local<v8::String> makeExternalString(const String& string, v8::Isolate* isolate)
61 v8::Local<v8::String> newString = v8::String::NewExternal(isolate, stringResource);
68 v8::Local<v8::String> newString = v8::String::NewExternal(isolate, stringResource);
74 v8::Handle<v8::String> StringCache::v8ExternalStringSlow(StringImpl* stringImpl, v8::Isolate* isolate)
77 return v8::String::Empty(isolate);
    [all...]
  /external/chromium_org/v8/src/ic/
access-compiler.h 37 PropertyAccessCompiler(Isolate* isolate, Code::Kind kind,
42 isolate_(isolate),
43 masm_(isolate, NULL, 256) {}
48 Isolate* isolate() const { return isolate_; } function in class:v8::internal::BASE_EMBEDDED
49 Heap* heap() const { return isolate()->heap(); }
50 Factory* factory() const { return isolate()->factory(); }
77 Isolate* isolate_;
  /external/chromium_org/v8/src/
v8threads.cc 23 // the lock for a given isolate.
24 void Locker::Initialize(v8::Isolate* isolate) {
25 DCHECK(isolate != NULL);
28 isolate_ = reinterpret_cast<i::Isolate*>(isolate);
59 bool Locker::IsLocked(v8::Isolate* isolate) {
60 DCHECK(isolate != NULL);
61 i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate)
    [all...]
accessors.h 54 Isolate* isolate, \
86 Isolate* isolate,
93 Isolate* isolate,
99 static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value);
  /external/chromium_org/components/plugins/renderer/
mobile_youtube_plugin.h 39 v8::Isolate* isolate) OVERRIDE;
  /external/chromium_org/content/renderer/
dom_automation_controller.h 114 v8::Isolate* isolate) OVERRIDE;
skia_benchmarking_extension.h 35 v8::Isolate* isolate) OVERRIDE;
stats_collection_controller.h 34 v8::Isolate* isolate) OVERRIDE;
  /external/chromium_org/extensions/renderer/
script_context_set.cc 50 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
51 return isolate->InContext() ? GetByV8Context(isolate->GetCurrentContext())
56 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
57 v8::Local<v8::Context> calling = isolate->GetCallingContext();
v8_schema_registry.h 40 v8::Handle<v8::Context> GetOrCreateContext(v8::Isolate* isolate);
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.cc 28 v8::Local<v8::Value> MonotonicClock::GetModule(v8::Isolate* isolate) {
29 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
33 templ = gin::ObjectTemplateBuilder(isolate)
threading.cc 27 v8::Local<v8::Value> Threading::GetModule(v8::Isolate* isolate) {
28 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
33 templ = gin::ObjectTemplateBuilder(isolate)
  /external/chromium_org/mojo/bindings/js/
waiting_callback.cc 15 v8::Handle<v8::String> GetHiddenPropertyName(v8::Isolate* isolate) {
16 return gin::StringToSymbol(isolate, "::mojo::js::WaitingCallback");
25 v8::Isolate* isolate,
30 isolate, new WaitingCallback(isolate, callback, handle_wrapper));
50 WaitingCallback::WaitingCallback(v8::Isolate* isolate,
55 v8::Handle<v8::Context> context = isolate->GetCurrentContext()
78 v8::Isolate* isolate = runner_->GetContextHolder()->isolate(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CSSValueCustom.cpp 41 v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
45 return wrap(toCSSTransformValue(impl), creationContext, isolate);
47 return wrap(toCSSFilterValue(impl), creationContext, isolate);
49 return wrap(toCSSValueList(impl), creationContext, isolate);
51 return wrap(toCSSPrimitiveValue(impl), creationContext, isolate);
52 return V8CSSValue::createWrapper(impl, creationContext, isolate);
V8EventTargetCustom.cpp 39 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
42 return v8::Null(isolate);
45 return toV8(static_cast<LocalDOMWindow*>(impl), creationContext, isolate);
47 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapperNonTemplate(impl, isolate);
50 return impl->wrap(creationContext, isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
45 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
46 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
47 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
52 static {{cpp_class}}* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
58 static void visitDOMWrapper(ScriptWrappableBase* internalPointer, const v8::Persistent<v8::Object>&, v8::Isolate*);
67 static v8::Handle<v8::ObjectTemplate> getShadowObjectTemplate(v8::Isolate*);
164 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*){% if has_conditional_attributes %};
167 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*){% if conditionally_enabled_methods %};
173 friend v8::Handle<v8::Object> wrap({{cpp_class}}*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginView.h 50 virtual v8::Local<v8::Object> scriptableObject(v8::Isolate*) { return v8::Local<v8::Object>(); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebCryptoNormalize.cpp 43 WebCryptoAlgorithm normalizeCryptoAlgorithm(v8::Handle<v8::Object> algorithmObject, WebCryptoOperation operation, int* exceptionCode, WebString* errorDetails, v8::Isolate* isolate)
45 Dictionary algorithmDictionary(algorithmObject, isolate);
WebDOMMediaStreamTrack.cpp 46 if (V8MediaStreamTrack::hasInstance(value, v8::Isolate::GetCurrent())) {
  /external/chromium_org/v8/src/arm/
cpu-arm.cc 36 Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size);
  /external/chromium_org/v8/src/extensions/
free-buffer-extension.cc 15 v8::Isolate* isolate,
17 return v8::FunctionTemplate::New(isolate, FreeBufferExtension::FreeBuffer);

Completed in 1093 milliseconds

1 2 3 4 5 6 7 8 91011>>