Searched refs:isolate (Results 176 - 200 of 1020) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterfaceEventTarget.cpp57 v8::Handle<v8::FunctionTemplate> V8TestInterfaceEventTargetConstructor::domTemplate(v8::Isolate* isolate) argument
60 V8PerIsolateData* data = V8PerIsolateData::from(isolate);
66 result = v8::FunctionTemplate::New(isolate, V8TestInterfaceEventTargetConstructorCallback);
69 result->SetClassName(v8AtomicString(isolate, "TestInterfaceEventTarget"));
70 result->Inherit(V8TestInterfaceEventTarget::domTemplate(isolate));
75 static void installV8TestInterfaceEventTargetTemplate(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) argument
80 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionTemplate, "TestInterfaceEventTarget", V8EventTarget::domTemplate(isolate), V8TestInterfaceEventTarget::internalFieldCount,
84 isolate);
89 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::from(isolate)
92 domTemplate(v8::Isolate* isolate) argument
97 hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) argument
102 findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) argument
107 toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) argument
143 toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
[all...]
H A DV8TestInterfaceNamedConstructor2.cpp64 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2Constructor::domTemplate(v8::Isolate* isolate) argument
67 V8PerIsolateData* data = V8PerIsolateData::from(isolate);
73 result = v8::FunctionTemplate::New(isolate, V8TestInterfaceNamedConstructor2ConstructorCallback);
76 result->SetClassName(v8AtomicString(isolate, "TestInterfaceNamedConstructor2"));
77 result->Inherit(V8TestInterfaceNamedConstructor2::domTemplate(isolate));
82 static void installV8TestInterfaceNamedConstructor2Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) argument
91 isolate);
96 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::from(isolate)->toStringTemplate());
99 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2::domTemplate(v8::Isolate* isolate) argument
104 hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) argument
109 findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) argument
114 toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) argument
137 toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-run-deopt.cc23 static void InstallIsOptimizedHelper(v8::Isolate* isolate) { argument
24 Local<v8::Context> context = isolate->GetCurrentContext();
25 Local<v8::FunctionTemplate> t = FunctionTemplate::New(isolate, IsOptimized);
42 InstallIsOptimizedHelper(CcTest::isolate());
60 InstallIsOptimizedHelper(CcTest::isolate());
H A Dtest-run-inlining.cc32 static void InstallAssertInlineCountHelper(v8::Isolate* isolate) { argument
33 v8::Local<v8::Context> context = isolate->GetCurrentContext();
35 v8::FunctionTemplate::New(isolate, AssertInlineCount);
51 InstallAssertInlineCountHelper(CcTest::isolate());
68 InstallAssertInlineCountHelper(CcTest::isolate());
85 InstallAssertInlineCountHelper(CcTest::isolate());
105 InstallAssertInlineCountHelper(CcTest::isolate());
123 InstallAssertInlineCountHelper(CcTest::isolate());
142 InstallAssertInlineCountHelper(CcTest::isolate());
159 InstallAssertInlineCountHelper(CcTest::isolate());
[all...]
/external/chromium_org/v8/test/cctest/
H A Dprofiler-extension.cc43 v8::Isolate* isolate, v8::Handle<v8::String> name) {
44 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) {
45 return v8::FunctionTemplate::New(isolate,
47 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "stopProfiling"))) {
48 return v8::FunctionTemplate::New(isolate,
42 GetNativeFunctionTemplate( v8::Isolate* isolate, v8::Handle<v8::String> name) argument
H A Dtest-platform.cc37 v8::Isolate* isolate = CcTest::isolate(); local
38 v8::HandleScope handle_scope(isolate);
40 v8::ObjectTemplate::New(isolate);
42 v8::FunctionTemplate::New(isolate, GetStackPointer));
H A Dtest-assembler-x87.cc52 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
53 HandleScope scope(isolate);
56 Assembler assm(isolate, buffer, sizeof buffer);
64 Handle<Code> code = isolate->factory()->NewCode(
79 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
80 HandleScope scope(isolate);
83 Assembler assm(isolate, buffer, sizeof buffer);
101 Handle<Code> code = isolate
116 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
162 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
185 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
239 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
253 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
[all...]
H A Dtest-lockers.cc36 #include "src/isolate.h"
58 // Migrating an isolate
61 KangarooThread(v8::Isolate* isolate, v8::Handle<v8::Context> context) argument
63 isolate_(isolate),
64 context_(isolate, context) {}
99 // Migrates an isolate from one thread to another
101 v8::Isolate* isolate = v8::Isolate::New(); local
104 v8::Locker locker(isolate);
105 v8::Isolate::Scope isolate_scope(isolate);
106 v8::HandleScope handle_scope(isolate);
176 IsolateLockingThreadWithLocalContext(v8::Isolate* isolate) argument
215 v8::Isolate* isolate = v8::Isolate::New(); local
228 v8::Isolate* isolate = v8::Isolate::New(); local
262 IsolateNestedLockingThread(v8::Isolate* isolate) argument
291 v8::Isolate* isolate = v8::Isolate::New(); local
347 LockIsolateAndCalculateFibSharedContextThread( v8::Isolate* isolate, v8::Handle<v8::Context> context) argument
370 LockerUnlockerThread(v8::Isolate* isolate) argument
411 v8::Isolate* isolate = v8::Isolate::New(); local
421 LockTwiceAndUnlockThread(v8::Isolate* isolate) argument
465 v8::Isolate* isolate = v8::Isolate::New(); local
538 LockUnlockLockThread(v8::Isolate* isolate, v8::Handle<v8::Context> context) argument
587 v8::Isolate* isolate = v8::Isolate::New(); local
662 v8::Isolate* isolate = v8::Isolate::New(); local
693 v8::Isolate* isolate = v8::Isolate::New(); local
[all...]
H A Dtest-assembler-ia32.cc52 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
53 HandleScope scope(isolate);
56 Assembler assm(isolate, buffer, sizeof buffer);
64 Handle<Code> code = isolate->factory()->NewCode(
79 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
80 HandleScope scope(isolate);
83 Assembler assm(isolate, buffer, sizeof buffer);
101 Handle<Code> code = isolate
116 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
160 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
190 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
218 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
242 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
284 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
316 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
370 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
384 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
450 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
497 v8::Isolate* isolate = CcTest::isolate(); local
566 Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate()); local
[all...]
H A Dtest-dictionary.cc46 Isolate* isolate = CcTest::i_isolate(); local
47 Factory* factory = isolate->factory();
111 Isolate* isolate = CcTest::i_isolate(); local
112 TestHashMap(ObjectHashTable::New(isolate, 23));
113 TestHashMap(isolate->factory()->NewOrderedHashMap());
137 Isolate* isolate = CcTest::i_isolate(); local
141 Handle<ObjectHashTable> table = ObjectHashTable::New(isolate, 100);
147 t->Rehash(handle(Smi::FromInt(0), isolate));
154 Handle<ObjectHashTable> table = ObjectHashTable::New(isolate, 100);
160 t->Rehash(handle(Smi::FromInt(0), isolate));
171 Isolate* isolate = CcTest::i_isolate(); local
208 Isolate* isolate = CcTest::i_isolate(); local
217 Isolate* isolate = CcTest::i_isolate(); local
247 Isolate* isolate = CcTest::i_isolate(); local
[all...]
H A Dtest-weaktypedarrays.cc90 Isolate* isolate = GetIsolateFrom(&context); local
92 int start = CountArrayBuffersInWeakList(isolate->heap());
104 CHECK_EQ(2, CountArrayBuffersInWeakList(isolate->heap()) - start);
105 CHECK(HasArrayBufferInWeakList(isolate->heap(), *iab1));
106 CHECK(HasArrayBufferInWeakList(isolate->heap(), *iab2));
108 isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
109 CHECK_EQ(1, CountArrayBuffersInWeakList(isolate->heap()) - start);
111 HandleScope scope2(isolate);
114 CHECK(HasArrayBufferInWeakList(isolate->heap(), *iab1));
118 isolate
126 Isolate* isolate = GetIsolateFrom(&context); local
188 Isolate* isolate = GetIsolateFrom(&context); local
271 Isolate* isolate = GetIsolateFrom(&context); local
[all...]
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp40 CJS_ObjDefintion(v8::Isolate* isolate, const wchar_t* sObjName, FXJSOBJTYPE eObjType, LP_CONSTRUCTOR pConstructor, LP_DESTRUCTOR pDestructor, unsigned bApplyNew): argument
43 v8::Isolate::Scope isolate_scope(isolate);
44 v8::HandleScope handle_scope(isolate);
46 v8::Handle<v8::ObjectTemplate> objTemplate = v8::ObjectTemplate::New(isolate);
48 m_objTemplate.Reset(isolate, objTemplate);
76 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
77 v8::Isolate::Scope isolate_scope(isolate);
78 v8::HandleScope handle_scope(isolate);
79 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0);
83 isolate
92 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
112 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
132 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
149 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
169 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
187 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
211 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
235 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
285 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
322 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
340 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
363 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
396 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
415 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
445 v8::Isolate* isolate = (v8::Isolate*)pJSRuntime; local
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp14 CJS_Value::CJS_Value(v8::Isolate* isolate) : m_isolate(isolate),m_eType(VT_unknown) argument
17 CJS_Value::CJS_Value(v8::Isolate* isolate, v8::Handle<v8::Value> pValue,FXJSVALUETYPE t) :m_isolate(isolate), m_pValue(pValue) , m_eType(t) argument
21 CJS_Value::CJS_Value(v8::Isolate* isolate, const int &iValue):m_isolate(isolate) argument
26 CJS_Value::CJS_Value(v8::Isolate* isolate, const bool &bValue):m_isolate(isolate) argument
31 CJS_Value::CJS_Value(v8::Isolate* isolate, const float &fValue):m_isolate(isolate) argument
36 CJS_Value(v8::Isolate* isolate, const double &dValue) argument
41 CJS_Value(v8::Isolate* isolate, JSFXObject pJsObj) argument
46 CJS_Value(v8::Isolate* isolate, CJS_Object * pJsObj) argument
51 CJS_Value(v8::Isolate* isolate, FX_LPCWSTR pWstr) argument
56 CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr) argument
61 CJS_Value(v8::Isolate* isolate, CJS_Array& array) argument
300 CJS_PropValue(v8::Isolate* isolate) argument
451 CJS_Array(v8::Isolate* isolate) argument
502 CJS_Date(v8::Isolate* isolate) argument
506 CJS_Date(v8::Isolate* isolate,double dMsec_time) argument
512 CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8LazyEventListener.cpp55 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) argument
56 : V8AbstractEventListener(true, isolate)
70 return v8::Object::New(scriptState->isolate());
71 v8::Handle<v8::Value> value = toV8(domObject, scriptState->context()->Global(), scriptState->isolate());
73 return v8::Object::New(scriptState->isolate());
74 return v8::Local<v8::Object>::New(scriptState->isolate(), value.As<v8::Object>());
169 v8::Handle<v8::String> codeExternalString = v8String(isolate(), code);
171 v8::Local<v8::Value> result = V8ScriptRunner::compileAndRunInternalScript(codeExternalString, isolate(), m_sourceURL, m_position);
187 v8::Local<v8::Object> thisObject = v8::Object::New(isolate());
190 if (!thisObject->ForceSet(v8::Integer::New(isolate(),
[all...]
/external/chromium_org/v8/src/
H A Dcode-stubs.h168 explicit CodeStub(Isolate* isolate) : minor_key_(0), isolate_(isolate) {} argument
171 static void GenerateStubsAheadOfTime(Isolate* isolate);
172 static void GenerateFPStubs(Isolate* isolate);
189 static void InitializeDescriptor(Isolate* isolate, uint32_t key,
192 static MaybeHandle<Code> GetCode(Isolate* isolate, uint32_t key);
209 Isolate* isolate() const { return isolate_; } function in class:v8::internal::BASE_EMBEDDED
212 CodeStub(uint32_t key, Isolate* isolate) argument
213 : minor_key_(MinorKeyFromKey(key)), isolate_(isolate) {}
265 static void Dispatch(Isolate* isolate, uint32_
1056 CallApiFunctionStub(Isolate* isolate, bool is_store, bool call_data_undefined, int argc) argument
1085 CallApiGetterStub(Isolate* isolate) argument
1094 BinaryOpICStub(Isolate* isolate, Token::Value op, OverwriteMode mode = NO_OVERWRITE) argument
1101 BinaryOpICStub(Isolate* isolate, const BinaryOpICState& state) argument
1143 BinaryOpICWithAllocationSiteStub(Isolate* isolate, const BinaryOpICState& state) argument
1186 BinaryOpWithAllocationSiteStub(Isolate* isolate, Token::Value op, OverwriteMode mode) argument
1191 BinaryOpWithAllocationSiteStub(Isolate* isolate, const BinaryOpICState& state) argument
1222 StringAddStub(Isolate* isolate, StringAddFlags flags, PretenureFlag pretenure_flag) argument
1254 CompareICStub(Isolate* isolate, Token::Value op, CompareICState::State left, CompareICState::State right, CompareICState::State state) argument
1317 CompareNilICStub(Isolate* isolate, NilValue nil) argument
1321 CompareNilICStub(Isolate* isolate, ExtraICState ic_state, InitializationState init_state = INITIALIZED) argument
1327 GetUninitialized(Isolate* isolate, NilValue nil) argument
1361 CompareNilICStub(Isolate* isolate, NilValue nil, InitializationState init_state) argument
1404 CEntryStub(Isolate* isolate, int result_size, SaveFPRegsMode save_doubles = kDontSaveFPRegs) argument
1438 JSEntryStub(Isolate* isolate, StackFrame::Type type) argument
1474 ArgumentsAccessStub(Isolate* isolate, Type type) argument
1503 RegExpExecStub(Isolate* isolate) argument
1512 RegExpConstructResultStub(Isolate* isolate) argument
1527 CallFunctionStub(Isolate* isolate, int argc, CallFunctionFlags flags) argument
1561 CallConstructStub(Isolate* isolate, CallConstructorFlags flags) argument
1762 LoadDictionaryElementStub(Isolate* isolate) argument
1772 KeyedLoadGenericStub(Isolate* isolate) argument
1784 LoadICTrampolineStub(Isolate* isolate, const LoadICState& state) argument
1811 KeyedLoadICTrampolineStub(Isolate* isolate) argument
1824 MegamorphicLoadStub(Isolate* isolate, const LoadICState& state) argument
1846 VectorLoadStub(Isolate* isolate, const LoadICState& state) argument
1871 VectorKeyedLoadStub(Isolate* isolate) argument
1885 DoubleToIStub(Isolate* isolate, Register source, Register destination, int offset, bool is_truncating, bool skip_fastpath = false) argument
1932 LoadFastElementStub(Isolate* isolate, bool is_js_array, ElementsKind elements_kind) argument
1956 StoreFastElementStub(Isolate* isolate, bool is_js_array, ElementsKind elements_kind, KeyedAccessStoreMode mode) argument
1986 TransitionElementsKindStub(Isolate* isolate, ElementsKind from_kind, ElementsKind to_kind, bool is_js_array) argument
2015 ArrayConstructorStubBase(Isolate* isolate, ElementsKind kind, AllocationSiteOverrideMode override_mode) argument
2059 ArrayNoArgumentConstructorStub( Isolate* isolate, ElementsKind kind, AllocationSiteOverrideMode override_mode = DONT_OVERRIDE) argument
2079 ArraySingleArgumentConstructorStub( Isolate* isolate, ElementsKind kind, AllocationSiteOverrideMode override_mode = DONT_OVERRIDE) argument
2099 ArrayNArgumentsConstructorStub( Isolate* isolate, ElementsKind kind, AllocationSiteOverrideMode override_mode = DONT_OVERRIDE) argument
2119 InternalArrayConstructorStubBase(Isolate* isolate, ElementsKind kind) argument
2143 InternalArrayNoArgumentConstructorStub(Isolate* isolate, ElementsKind kind) argument
2156 InternalArraySingleArgumentConstructorStub(Isolate* isolate, ElementsKind kind) argument
2169 InternalArrayNArgumentsConstructorStub(Isolate* isolate, ElementsKind kind) argument
2180 StoreElementStub(Isolate* isolate, ElementsKind elements_kind) argument
2235 ToBooleanStub(Isolate* isolate, ResultMode mode, Types types = Types()) argument
2241 ToBooleanStub(Isolate* isolate, ExtraICState state) argument
2256 GetUninitialized(Isolate* isolate) argument
2271 ToBooleanStub(Isolate* isolate, InitializationState init_state) argument
2289 ElementsTransitionAndStoreStub(Isolate* isolate, ElementsKind from_kind, ElementsKind to_kind, bool is_jsarray, KeyedAccessStoreMode store_mode) argument
2340 StoreArrayLiteralElementStub(Isolate* isolate) argument
2350 StubFailureTrampolineStub(Isolate* isolate, StubFunctionMode function_mode) argument
2371 ProfileEntryHookStub(Isolate* isolate) argument
2393 StoreBufferOverflowStub(Isolate* isolate, SaveFPRegsMode save_fp) argument
2413 SubStringStub(Isolate* isolate) argument
2422 StringCompareStub(Isolate* isolate) argument
[all...]
H A Dfactory.cc10 #include "src/isolate-inl.h"
20 isolate(),
21 isolate()->heap()->Allocate(*map, space),
31 isolate(),
32 isolate()->heap()->Allocate(*map, space, *allocation_site),
41 isolate(),
42 isolate()->heap()->AllocateFillerObject(size, double_align, space),
59 Oddball::Initialize(isolate(), oddball, to_string, to_number, kind);
67 isolate(),
68 isolate()
423 MakeOrFindTwoCharacterString(Isolate* isolate, uint16_t c1, uint16_t c2) argument
1718 GetTypedArrayFun(ExternalArrayType type, Isolate* isolate) argument
[all...]
H A Dcompilation-cache.cc27 CompilationCache::CompilationCache(Isolate* isolate) argument
28 : isolate_(isolate),
29 script_(isolate, kScriptGenerations),
30 eval_global_(isolate, kEvalGlobalGenerations),
31 eval_contextual_(isolate, kEvalContextualGenerations),
32 reg_exp_(isolate, kRegExpGenerations),
49 result = CompilationCacheTable::New(isolate(), kInitialCacheSize);
54 result = Handle<CompilationCacheTable>(table, isolate());
67 tables_[0] = isolate()->heap()->undefined_value();
72 Object* undefined = isolate()
103 CompilationCacheScript(Isolate* isolate, int generations) argument
[all...]
/external/chromium_org/content/child/
H A Dcontent_child_helpers.cc32 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
33 if (isolate)
34 isolate->GetHeapStatistics(&stat);
/external/chromium_org/extensions/renderer/
H A Dactivity_log_converter_strategy.h32 v8::Isolate* isolate,
36 v8::Isolate* isolate,
42 v8::Isolate* isolate,
/external/chromium_org/gin/modules/
H A Dconsole.cc37 v8::Local<v8::Value> Console::GetModule(v8::Isolate* isolate) { argument
38 PerIsolateData* data = PerIsolateData::From(isolate);
41 templ = ObjectTemplateBuilder(isolate)
H A Dmodule_registry_unittest.cc22 TestHelper(v8::Isolate* isolate) argument
24 runner(new ShellRunner(&delegate, isolate)),
63 v8::Isolate* isolate,
70 ->LoadModule(isolate, "two", base::Bind(NestedCallback));
80 v8::Isolate::Scope isolate_scope(instance_->isolate());
81 v8::HandleScope handle_scope(instance_->isolate());
83 instance_->isolate(), NULL, v8::Handle<v8::ObjectTemplate>());
85 ContextHolder context_holder(instance_->isolate());
96 TestHelper helper(instance_->isolate());
118 TestHelper helper(instance_->isolate());
62 OnModuleLoaded(TestHelper* helper, v8::Isolate* isolate, int64_t* counter, v8::Handle<v8::Value> value) argument
[all...]
/external/chromium_org/mojo/apps/js/
H A Dmojo_module.cc27 v8::Local<v8::Value> Mojo::GetModule(JSApp* js_app, v8::Isolate* isolate) { argument
28 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
33 templ = gin::ObjectTemplateBuilder(isolate)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InjectedScriptManager.cpp64 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(PassRefPtrWillBeRawPtr<InjectedScriptHost> host, InjectedScriptManager* injectedScriptManager, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
68 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &V8InjectedScriptHost::wrapperTypeInfo, host->toScriptWrappableBase(), isolate);
80 callbackData->handle.set(isolate, wrapper);
94 v8::Isolate* isolate = inspectedScriptState->isolate(); local
101 v8::Local<v8::Object> scriptHostWrapper = createInjectedScriptHostV8Wrapper(m_injectedScriptHost, this, inspectedScriptState->context()->Global(), inspectedScriptState->isolate());
110 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(v8String(isolate, scriptSource), isolate);
115 v8::Handle<v8::Value> info[] = { scriptHostWrapper, windowGlobal, v8::Number::New(inspectedScriptState->isolate(), id) };
116 v8::Local<v8::Value> injectedScriptValue = V8ScriptRunner::callInternalFunction(v8::Local<v8::Function>::Cast(value), windowGlobal, WTF_ARRAY_LENGTH(info), info, inspectedScriptState->isolate());
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceMotionEventCustom.cpp37 DeviceMotionData::Acceleration* readAccelerationArgument(v8::Local<v8::Value> value, v8::Isolate* isolate) argument
45 v8::Local<v8::Value> xValue = object->Get(v8AtomicString(isolate, "x"));
51 v8::Local<v8::Value> yValue = object->Get(v8AtomicString(isolate, "y"));
57 v8::Local<v8::Value> zValue = object->Get(v8AtomicString(isolate, "z"));
69 DeviceMotionData::RotationRate* readRotationRateArgument(v8::Local<v8::Value> value, v8::Isolate* isolate) argument
77 v8::Local<v8::Value> alphaValue = object->Get(v8AtomicString(isolate, "alpha"));
83 v8::Local<v8::Value> betaValue = object->Get(v8AtomicString(isolate, "beta"));
89 v8::Local<v8::Value> gammaValue = object->Get(v8AtomicString(isolate, "gamma"));
106 v8::Isolate* isolate = info.GetIsolate(); local
110 DeviceMotionData::Acceleration* acceleration = readAccelerationArgument(info[3], isolate);
[all...]
/external/chromium_org/v8/src/ic/
H A Dic.cc68 #define TRACE_GENERIC_IC(isolate, type, reason) \
72 JavaScriptFrame::PrintTop(isolate, stdout, false, true); \
79 #define TRACE_GENERIC_IC(isolate, type, reason) \
141 IC::IC(FrameDepth depth, Isolate* isolate) argument
142 : isolate_(isolate), target_set_(false), target_maps_set_(false) {
146 const Address entry = Isolate::c_entry_fp(isolate->thread_local_top());
168 StackFrameIterator it(isolate);
177 isolate);
180 target_ = handle(raw_target(), isolate);
191 StackFrameIterator it(isolate());
392 OnTypeFeedbackChanged(Isolate* isolate, Address address, State old_state, State new_state, bool target_remains_ic_stub) argument
463 Isolate* isolate = stub->GetIsolate(); local
478 Clear(Isolate* isolate, Address address, ConstantPoolArray* constant_pool) argument
511 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
521 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
527 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
536 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
545 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
555 Clear(Isolate* isolate, Address address, Code* target, ConstantPoolArray* constant_pool) argument
568 generic_stub(Isolate* isolate) argument
712 CurrentTypeOf(Handle<Object> object, Isolate* isolate) argument
719 TypeToMap(HeapType* type, Isolate* isolate) argument
815 initialize_stub(Isolate* isolate, ExtraICState extra_state) argument
832 pre_monomorphic_stub(Isolate* isolate, ExtraICState extra_state) argument
838 pre_monomorphic_stub(Isolate* isolate) argument
1104 TryConvertKey(Handle<Object> key, Isolate* isolate) argument
1338 initialize_stub(Isolate* isolate, int argc, CallICState::CallType call_type) argument
1346 initialize_stub(Isolate* isolate, StrictMode strict_mode) argument
1395 pre_monomorphic_stub(Isolate* isolate, StrictMode strict_mode) argument
2317 GetRawUninitialized(Isolate* isolate, Token::Value op) argument
2327 GetUninitialized(Isolate* isolate, Token::Value op) argument
2401 DoCompareNilSlow(Isolate* isolate, NilValue nil, Handle<Object> object) argument
2585 ThrowReferenceError(Isolate* isolate, Name* name) argument
[all...]

Completed in 1500 milliseconds

1234567891011>>