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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
vm-state.h 9 #include "src/isolate.h"
17 explicit inline VMState(Isolate* isolate);
21 Isolate* isolate_;
28 inline ExternalCallbackScope(Isolate* isolate, Address callback);
36 Isolate* isolate_;
builtins.cc 109 name##ArgumentsType args, Isolate* isolate); \
111 int args_length, Object** args_object, Isolate* isolate) { \
114 return Builtin_Impl_##name(args, isolate); \
117 name##ArgumentsType args, Isolate* isolate)
123 name##ArgumentsType args, Isolate* isolate); \
125 int args_length, Object** args_object, Isolate* isolate) {
    [all...]
ic.cc 57 StackFrameIterator it(isolate());
61 Code* apply_builtin = isolate()->builtins()->builtin(
69 JavaScriptFrame::PrintTop(isolate(), stdout, false, true);
85 #define TRACE_GENERIC_IC(isolate, type, reason) \
89 JavaScriptFrame::PrintTop(isolate, stdout, false, true); \
95 #define TRACE_GENERIC_IC(isolate, type, reason)
101 IC::IC(FrameDepth depth, Isolate* isolate)
102 : isolate_(isolate),
109 Isolate::c_entry_fp(isolate->thread_local_top())
385 Isolate* isolate = target->GetHeap()->isolate(); local
440 Isolate* isolate = stub->GetIsolate(); local
    [all...]
handles.h 87 INLINE(Handle(T* obj, Isolate* isolate));
146 inline Handle<T> handle(T* t, Isolate* isolate) {
147 return Handle<T>(t, isolate);
183 explicit inline HandleScope(Isolate* isolate);
188 static int NumberOfHandles(Isolate* isolate);
192 static inline T** CreateHandle(Isolate* isolate, T* value)
208 Isolate* isolate() { return isolate_; } function in class:v8::internal::HandleScope
    [all...]
ic.h 69 IC(FrameDepth depth, Isolate* isolate);
96 static void Clear(Isolate* isolate,
120 static inline HeapObject* GetCodeCacheHolder(Isolate* isolate,
127 Isolate* isolate);
139 static Handle<Map> TypeToMap(HeapType* type, Isolate* isolate);
153 Isolate* isolate() const { return isolate_; } function in class:v8::internal::IC
863 Isolate* isolate() const { return isolate_; } function in class:v8::internal::BinaryOpIC::BASE_EMBEDDED
    [all...]
lithium-codegen.h 28 Isolate* isolate() const { return info_->isolate(); } function in class:v8::internal::BASE_EMBEDDED
29 Factory* factory() const { return isolate()->factory(); }
30 Heap* heap() const { return isolate()->heap(); }
runtime-profiler.h 13 class Isolate;
20 explicit RuntimeProfiler(Isolate* isolate);
33 Isolate* isolate_;
  /external/chromium_org/v8/test/cctest/
print-extension.cc 34 v8::Isolate* isolate,
36 return v8::FunctionTemplate::New(isolate, PrintExtension::Print);
test-global-handles.cc 89 Isolate* isolate = CcTest::i_isolate(); local
90 GlobalHandles* global_handles = isolate->global_handles();
91 v8::HandleScope handle_scope(CcTest::isolate());
94 global_handles->Create(*isolate->factory()->NewFixedArray(1));
96 global_handles->Create(*isolate->factory()->NewFixedArray(1));
99 global_handles->Create(*isolate->factory()->NewFixedArray(1));
101 global_handles->Create(*isolate->factory()->NewFixedArray(1));
184 Isolate* isolate = CcTest::i_isolate() local
279 Isolate* isolate = CcTest::i_isolate(); local
326 Isolate* isolate = CcTest::i_isolate(); local
    [all...]
print-extension.h 40 v8::Isolate* isolate,
  /external/chromium_org/extensions/renderer/
v8_schema_registry.cc 52 new ScriptContext(GetOrCreateContext(v8::Isolate::GetCurrent()),
62 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
63 v8::EscapableHandleScope handle_scope(isolate);
64 v8::Context::Scope context_scope(GetOrCreateContext(isolate));
66 v8::Local<v8::Array> v8_apis(v8::Array::New(isolate, apis.size()));
86 v8::Isolate* isolate = v8::Isolate::GetCurrent() local
    [all...]
set_icon_natives.cc 38 v8::Isolate* isolate = context()->v8_context()->GetIsolate(); local
40 image_data->Get(v8::String::NewFromUtf8(isolate, "data"))->ToObject();
42 image_data->Get(v8::String::NewFromUtf8(isolate, "width"))->Int32Value();
44 image_data->Get(v8::String::NewFromUtf8(isolate, "height"))->Int32Value();
47 isolate->ThrowException(v8::Exception::Error(
48 v8::String::NewFromUtf8(isolate, kInvalidDimensions)));
56 isolate->ThrowException(v8::Exception::Error(
57 v8::String::NewFromUtf8(isolate, kInvalidDimensions)));
62 data->Get(v8::String::NewFromUtf8(isolate, "length"))->Int32Value()
    [all...]
  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 27 v8::Isolate* isolate,
35 v8::Isolate* isolate,
42 v8::Isolate* isolate) const {
170 v8::Isolate* isolate,
176 return v8::Null(isolate);
181 return v8::Boolean::New(isolate, val)
    [all...]
dom_automation_controller.cc 26 v8::Isolate* isolate = blink::mainThreadIsolate(); local
27 v8::HandleScope handle_scope(isolate);
35 gin::CreateHandle(isolate, new DomAutomationController(render_frame));
40 global->Set(gin::StringToV8(isolate, "domAutomationController"),
50 v8::Isolate* isolate) {
52 isolate)
82 conv.FromV8Value(args.PeekNext(), args.isolate()->GetCurrentContext()));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.cpp 69 disposeUnderlyingV8Object(npObject, v8::Isolate::GetCurrent());
80 static ScriptState* mainWorldScriptState(v8::Isolate* isolate, NPP npp, NPObject* npObject)
87 v8::HandleScope handleScope(isolate);
92 static PassOwnPtr<v8::Handle<v8::Value>[]> createValueListFromVariantArgs(const NPVariant* arguments, uint32_t argumentCount, NPObject* owner, v8::Isolate* isolate)
97 argv[index] = convertNPVariantToV8Object(arg, owner, isolate);
103 static v8::Local<v8::String> npIdentifierToV8Identifier(NPIdentifier name, v8::Isolate* isolate)
107 return v8AtomicString(isolate, static_cast<const char*>(identifier->value.string))
372 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
405 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
452 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
474 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
500 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
517 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
    [all...]
V8NPObject.cpp 73 v8::Isolate* isolate = info.GetIsolate(); local
76 HTMLPlugInElement* element = V8HTMLAppletElement::toNativeWithTypeCheck(isolate, info.Holder());
78 element = V8HTMLEmbedElement::toNativeWithTypeCheck(isolate, info.Holder());
80 element = V8HTMLObjectElement::toNativeWithTypeCheck(isolate, info.Holder());
85 v8::HandleScope handleScope(isolate);
86 npObject = v8ObjectToNPObject(wrapper->newLocal(isolate));
102 throwError(v8ReferenceError, "NPObject deleted", isolate);
111 convertV8ObjectToNPVariant(info[i], npObject, &npArgs[i], isolate);
138 throwError(v8GeneralError, "Error calling method on NPObject.", isolate);
484 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
    [all...]
V8WorkerGlobalScopeEventListener.cpp 68 v8::Handle<v8::Value> jsEvent = toV8(event, scriptState()->context()->Global(), isolate());
70 invokeEventHandler(event, v8::Local<v8::Value>::New(isolate(), jsEvent));
80 TRACE_EVENT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "FunctionCall", "data", devToolsTraceEventData(scriptState()->executionContext(), handlerFunction, isolate()));
88 GetDevToolsFunctionInfo(handlerFunction, isolate(), scriptId, resourceName, lineNumber);
93 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, scriptState()->executionContext(), receiver, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
109 v8::Handle<v8::Value> value = toV8(target, scriptState()->context()->Global(), isolate());
112 return v8::Local<v8::Object>::New(isolate(), v8::Handle<v8::Object>::Cast(value));
  /external/chromium_org/chrome/renderer/extensions/
page_actions_custom_bindings.cc 34 v8::Isolate* isolate = args.GetIsolate(); local
35 v8::Local<v8::Array> page_action_vector = v8::Array::New(isolate);
38 page_action_vector->Set(v8::Integer::New(isolate, 0),
39 v8::String::NewFromUtf8(isolate,
  /external/chromium_org/content/public/renderer/
v8_value_converter.h 32 v8::Handle<v8::Value>, v8::Isolate* isolate)> FromV8ValueCallback;
42 v8::Isolate* isolate,
51 v8::Isolate* isolate,
59 v8::Isolate* isolate) const;
  /external/chromium_org/content/renderer/java/
gin_java_bridge_object.h 35 v8::Isolate* isolate) OVERRIDE;
39 v8::Isolate* isolate, const std::string& property) OVERRIDE;
41 v8::Isolate* isolate) OVERRIDE;
53 GinJavaBridgeObject(v8::Isolate* isolate,
  /external/chromium_org/gin/
array_buffer.h 29 ArrayBuffer(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> buffer);
48 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
55 ArrayBufferView(v8::Isolate* isolate, v8::Handle<v8::ArrayBufferView> view);
74 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
  /external/chromium_org/v8/include/
v8-platform.h 52 * |isolate|. Tasks posted for the same isolate should be execute in order of
55 virtual void CallOnForegroundThread(Isolate* isolate, Task* task) = 0;
  /external/chromium_org/v8/src/extensions/
free-buffer-extension.h 18 v8::Isolate* isolate,
statistics-extension.h 17 v8::Isolate* isolate,
  /external/chromium_org/gin/modules/
module_registry_unittest.cc 21 TestHelper(v8::Isolate* isolate)
23 runner(new ShellRunner(&delegate, isolate)),
64 v8::Isolate::Scope isolate_scope(instance_->isolate());
65 v8::HandleScope handle_scope(instance_->isolate());
67 instance_->isolate(), NULL, v8::Handle<v8::ObjectTemplate>());
69 ContextHolder context_holder(instance_->isolate());
80 TestHelper helper(instance_->isolate());

Completed in 1039 milliseconds

1 2 3 4 5 6 7 8 91011>>