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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
isolate-inl.h 32 #include "isolate.h"
39 SaveContext::SaveContext(Isolate* isolate)
40 : isolate_(isolate),
41 prev_(isolate->save_context()) {
42 if (isolate->context() != NULL) {
43 context_ = Handle<Context>(isolate->context());
45 isolate->set_save_context(this);
47 c_entry_fp_ = isolate->c_entry_fp(isolate->thread_local_top())
    [all...]
d8-windows.cc 38 void Shell::AddOSMethods(Isolate* isolate, Handle<ObjectTemplate> os_templ) {
arguments.cc 39 v8::Handle<V> CustomArguments<T>::GetReturnValue(Isolate* isolate) {
49 Isolate* isolate = this->isolate(); local
50 VMState<EXTERNAL> state(isolate);
51 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
57 return GetReturnValue<v8::Value>(isolate);
63 Isolate* isolate = this->isolate();
    [all...]
i18n.h 48 static Handle<ObjectTemplateInfo> GetTemplate(Isolate* isolate);
51 static Handle<ObjectTemplateInfo> GetTemplate2(Isolate* isolate);
63 Isolate* isolate,
69 static icu::SimpleDateFormat* UnpackDateFormat(Isolate* isolate,
74 static void DeleteDateFormat(v8::Isolate* isolate,
    [all...]
  /external/v8/src/
isolate-inl.h 31 #include "isolate.h"
39 SaveContext::SaveContext(Isolate* isolate) : prev_(isolate->save_context()) {
40 if (isolate->context() != NULL) {
41 context_ = Handle<Context>(isolate->context());
43 dummy_ = Handle<Context>(isolate->context());
46 isolate->set_save_context(this);
48 c_entry_fp_ = isolate->c_entry_fp(isolate->thread_local_top())
    [all...]
vm-state-inl.h 61 VMState::VMState(Isolate* isolate, StateTag tag)
62 : isolate_(isolate), previous_tag_(isolate->current_vm_state()) {
64 LOG(isolate, UncheckedStringEvent("Entering", StateToString(tag)));
65 LOG(isolate, UncheckedStringEvent("From", StateToString(previous_tag_)));
85 ExternalCallbackScope::ExternalCallbackScope(Isolate* isolate, Address callback)
86 : isolate_(isolate), previous_callback_(isolate->external_callback())
    [all...]
  /external/chromium_org/gin/
dictionary.cc 9 Dictionary::Dictionary(v8::Isolate* isolate)
10 : isolate_(isolate) {
13 Dictionary::Dictionary(v8::Isolate* isolate,
15 : isolate_(isolate),
22 Dictionary Dictionary::CreateEmpty(v8::Isolate* isolate) {
23 Dictionary dictionary(isolate);
24 dictionary.object_ = v8::Object::New(isolate);
    [all...]
wrappable_unittest.cc 22 static gin::Handle<MyObject> Create(v8::Isolate* isolate) {
23 return CreateHandle(isolate, new MyObject());
50 void RegisterTemplates(v8::Isolate* isolate) {
51 PerIsolateData* data = PerIsolateData::From(isolate);
54 v8::Handle<v8::ObjectTemplate> templ = ObjectTemplateBuilder(isolate)
60 templ = v8::ObjectTemplate::New(isolate);
64 templ = v8::ObjectTemplate::New(isolate);
72 v8::Isolate* isolate = instance_->isolate() local
87 v8::Isolate* isolate = instance_->isolate(); local
117 v8::Isolate* isolate = instance_->isolate(); local
    [all...]
runner_unittest.cc 12 using v8::Isolate;
25 Isolate* isolate = instance.isolate(); local
26 Runner runner(&delegate, isolate);
31 EXPECT_TRUE(Converter<std::string>::FromV8(isolate,
32 runner.global()->Get(StringToV8(isolate, "result")),
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeListCustom.cpp 44 void V8NodeList::visitDOMWrapper(void* object, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate)
48 setObjectGroup(object, wrapper, isolate);
53 setObjectGroup(object, wrapper, isolate);
57 setObjectGroup(V8GCController::opaqueRootForGC(owner, isolate), wrapper, isolate); local
V8CSSRuleCustom.cpp 49 v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
57 return V8CSSRule::createWrapper(impl, creationContext, isolate);
59 return wrap(toCSSStyleRule(impl), creationContext, isolate);
61 return wrap(toCSSCharsetRule(impl), creationContext, isolate);
63 return wrap(toCSSImportRule(impl), creationContext, isolate);
65 return wrap(toCSSMediaRule(impl), creationContext, isolate);
67 return wrap(toCSSFontFaceRule(impl), creationContext, isolate);
69 return wrap(toCSSPageRule(impl), creationContext, isolate);
71 return wrap(toCSSKeyframeRule(impl), creationContext, isolate);
    [all...]
V8AudioNodeCustom.cpp 68 v8::Handle<v8::Object> wrap(AudioNode* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return wrap(static_cast<AudioDestinationNode*>(impl), creationContext, isolate);
75 return wrap(static_cast<OscillatorNode*>(impl), creationContext, isolate);
77 return wrap(static_cast<AudioBufferSourceNode*>(impl), creationContext, isolate);
79 return wrap(static_cast<MediaElementAudioSourceNode*>(impl), creationContext, isolate);
81 return wrap(static_cast<MediaStreamAudioDestinationNode*>(impl), creationContext, isolate);
83 return wrap(static_cast<MediaStreamAudioSourceNode*>(impl), creationContext, isolate);
85 return wrap(static_cast<ScriptProcessorNode*>(impl), creationContext, isolate);
87 return wrap(static_cast<BiquadFilterNode*>(impl), creationContext, isolate);
    [all...]
V8CSSValueCustom.cpp 45 v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
49 return wrap(toCSSTransformValue(impl), creationContext, isolate);
51 return wrap(toCSSMixFunctionValue(impl), creationContext, isolate);
53 return wrap(toCSSFilterValue(impl), creationContext, isolate);
55 return wrap(toCSSValueList(impl), creationContext, isolate);
57 return wrap(toCSSPrimitiveValue(impl), creationContext, isolate);
59 return wrap(toSVGPaint(impl), creationContext, isolate);
61 return wrap(toSVGColor(impl), creationContext, isolate);
62 return V8CSSValue::createWrapper(impl, creationContext, isolate);
    [all...]
V8EntryCustom.cpp 42 v8::Handle<v8::Object> wrap(Entry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
46 return wrap(toFileEntry(impl), creationContext, isolate);
47 return wrap(toDirectoryEntry(impl), creationContext, isolate);
V8EntrySyncCustom.cpp 42 v8::Handle<v8::Object> wrap(EntrySync* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
46 return wrap(toFileEntrySync(impl), creationContext, isolate);
47 return wrap(toDirectoryEntrySync(impl), creationContext, isolate);
V8StyleSheetCustom.cpp 40 v8::Handle<v8::Object> wrap(StyleSheet* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
44 return wrap(toCSSStyleSheet(impl), creationContext, isolate);
45 return V8StyleSheet::createWrapper(impl, creationContext, isolate);
V8TextCustom.cpp 40 v8::Handle<v8::Object> wrap(Text* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
44 return wrap(toCDATASection(impl), creationContext, isolate);
45 return V8Text::createWrapper(impl, creationContext, isolate);
V8SVGPathSegCustom.cpp 58 v8::Handle<v8::Object> wrap(SVGPathSeg* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
63 return wrap(static_cast<SVGPathSegClosePath*>(impl), creationContext, isolate);
65 return wrap(static_cast<SVGPathSegMovetoAbs*>(impl), creationContext, isolate);
67 return wrap(static_cast<SVGPathSegMovetoRel*>(impl), creationContext, isolate);
69 return wrap(static_cast<SVGPathSegLinetoAbs*>(impl), creationContext, isolate);
71 return wrap(static_cast<SVGPathSegLinetoRel*>(impl), creationContext, isolate);
73 return wrap(static_cast<SVGPathSegCurvetoCubicAbs*>(impl), creationContext, isolate);
75 return wrap(static_cast<SVGPathSegCurvetoCubicRel*>(impl), creationContext, isolate);
77 return wrap(static_cast<SVGPathSegCurvetoQuadraticAbs*>(impl), creationContext, isolate);
    [all...]
V8HTMLCollectionCustom.cpp 43 v8::Handle<v8::Object> wrap(HTMLCollection* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
48 return wrap(static_cast<HTMLFormControlsCollection*>(impl), creationContext, isolate);
50 return wrap(static_cast<HTMLOptionsCollection*>(impl), creationContext, isolate);
52 return wrap(static_cast<HTMLAllCollection*>(impl), creationContext, isolate);
57 return V8HTMLCollection::createWrapper(impl, creationContext, isolate);
V8PerformanceEntryCustom.cpp 45 v8::Handle<v8::Object> wrap(PerformanceEntry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
49 return wrap(static_cast<PerformanceResourceTiming*>(impl), creationContext, isolate);
52 return wrap(static_cast<PerformanceMark*>(impl), creationContext, isolate);
55 return wrap(static_cast<PerformanceMeasure*>(impl), creationContext, isolate);
57 return V8PerformanceEntry::createWrapper(impl, creationContext, isolate);
  /external/chromium_org/mojo/apps/js/bindings/
waiting_callback.cc 15 v8::Handle<v8::String> GetHiddenPropertyName(v8::Isolate* isolate) {
16 return gin::StringToSymbol(isolate, "::mojo::js::WaitingCallback");
23 WaitingCallback::WaitingCallback(v8::Isolate* isolate,
26 v8::Handle<v8::Context> context = isolate->GetCurrentContext();
28 GetWrapper(isolate)->SetHiddenValue(GetHiddenPropertyName(isolate), callback);
36 v8::Isolate* isolate, v8::Handle<v8::Function> callback)
57 v8::Isolate* isolate = runner_->isolate(); local
    [all...]
  /external/chromium_org/gin/test/
v8_test.cc 23 instance_->isolate()->Enter();
24 HandleScope handle_scope(instance_->isolate());
25 context_.Reset(instance_->isolate(), Context::New(instance_->isolate()));
26 Local<Context>::New(instance_->isolate(), context_)->Enter();
31 HandleScope handle_scope(instance_->isolate());
32 Local<Context>::New(instance_->isolate(), context_)->Exit();
35 instance_->isolate()->Exit();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromise.cpp 45 v8::Isolate* isolate = toIsolate(context); local
46 ASSERT(isolate->InContext());
49 v8::Handle<v8::Object> promise = V8PromiseCustom::createPromise(creationContext, isolate);
50 return ScriptPromise(promise, isolate);
55 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
56 ASSERT(isolate->InContext());
57 v8::Handle<v8::Object> promise = V8PromiseCustom::createPromise(v8::Object::New(), isolate);
    [all...]
CustomElementBinding.cpp 36 PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
38 return adoptPtr(new CustomElementBinding(isolate, prototype, wrapperType));
41 CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
42 : m_isolate(isolate)
43 , m_prototype(isolate, prototype)
V8EventListenerList.cpp 42 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
43 v8::Handle<v8::Context> context = isolate->GetCurrentContext();
50 return V8EventListenerList::findWrapper(value, isolate);
53 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute, isolate);
54 return V8EventListenerList::findOrCreateWrapper<V8WorkerGlobalScopeEventListener>(value, isAttribute, isolate);

Completed in 2059 milliseconds

1 2 3 4 5 6 7 8 91011>>