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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8GCController.h 44 static void minorGCPrologue(v8::Isolate*);
45 static void minorGCEpilogue(v8::Isolate*);
46 static void majorGCPrologue(bool constructRetainedObjectInfos, v8::Isolate*);
47 static void majorGCEpilogue(v8::Isolate*);
49 static void collectGarbage(v8::Isolate*);
51 static Node* opaqueRootForGC(Node*, v8::Isolate*);
53 static void reportDOMMemoryUsageToV8(v8::Isolate*);
V8Initializer.h 36 static void initializeWorker(v8::Isolate*);
BindingSecurity.h 52 static bool shouldAllowAccessToNode(v8::Isolate*, Node*, ExceptionState&);
53 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, SecurityReportingOption = ReportSecurityError);
54 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, ExceptionState&);
ModuleProxy.h 20 void didLeaveScriptContextForRecursionScope(v8::Isolate*);
21 void registerDidLeaveScriptContextForRecursionScope(void (*didLeaveScriptContext)(v8::Isolate*));
26 void (*m_didLeaveScriptContextForRecursionScope)(v8::Isolate*);
CustomElementBinding.h 42 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
49 CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype);
51 v8::Isolate* m_isolate;
ScriptString.h 44 ScriptString(v8::Isolate*, v8::Handle<v8::String>);
47 v8::Isolate* isolate() function in class:blink::FINAL
50 m_isolate = v8::Isolate::GetCurrent();
60 v8::Isolate* m_isolate;
  /external/chromium_org/v8/src/
d8-windows.cc 11 void Shell::AddOSMethods(Isolate* isolate, Handle<ObjectTemplate> os_templ) {
assert-scope.cc 12 uint32_t PerIsolateAssertBase::GetData(Isolate* isolate) {
13 return isolate->per_isolate_assert_data();
17 void PerIsolateAssertBase::SetData(Isolate* isolate, uint32_t data) {
18 isolate->set_per_isolate_assert_data(data);
runtime-profiler.h 18 class Isolate;
24 explicit RuntimeProfiler(Isolate* isolate);
37 Isolate* isolate_;
code-factory.h 35 static Callable LoadIC(Isolate* isolate, ContextualMode mode);
36 static Callable KeyedLoadIC(Isolate* isolate);
37 static Callable StoreIC(Isolate* isolate, StrictMode mode);
38 static Callable KeyedStoreIC(Isolate* isolate, StrictMode mode);
40 static Callable CompareIC(Isolate* isolate, Token::Value op)
    [all...]
type-feedback-vector.h 11 #include "src/isolate.h"
25 static Handle<TypeFeedbackVector> Copy(Isolate* isolate,
29 static inline Handle<Object> UninitializedSentinel(Isolate* isolate);
32 static inline Handle<Object> MegamorphicSentinel(Isolate* isolate);
35 static inline Handle<Object> PremonomorphicSentinel(Isolate* isolate);
38 static inline Handle<Object> GenericSentinel(Isolate* isolate)
    [all...]
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_;
  /external/chromium_org/v8/src/third_party/vtune/
v8-vtune.h 65 void InitializeVtuneForV8(v8::Isolate::CreateParams& params);
  /external/chromium_org/third_party/WebKit/public/web/
WebArrayBufferConverter.h 37 class Isolate;
47 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(WebArrayBuffer*, v8::Handle<v8::Object>, v8::Isolate*);
48 BLINK_EXPORT static WebArrayBuffer* createFromV8Value(v8::Handle<v8::Value>, v8::Isolate*);
  /external/chromium_org/gin/
interceptor.h 23 NamedPropertyInterceptor(v8::Isolate* isolate, WrappableBase* base);
26 virtual v8::Local<v8::Value> GetNamedProperty(v8::Isolate* isolate,
29 virtual bool SetNamedProperty(v8::Isolate* isolate,
33 v8::Isolate* isolate);
36 v8::Isolate* isolate_;
44 IndexedPropertyInterceptor(v8::Isolate* isolate, WrappableBase* base)
    [all...]
  /external/chromium_org/v8/src/extensions/
gc-extension.cc 14 v8::Isolate* isolate,
16 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
22 args[0]->BooleanValue() ? v8::Isolate::kMinorGarbageCollection
23 : v8::Isolate::kFullGarbageCollection);
  /external/chromium_org/v8/test/cctest/
test-random-number-generator.cc 32 #include "src/isolate-inl.h"
43 v8::Isolate* i = v8::Isolate::New();
45 *reinterpret_cast<Isolate*>(i)->random_number_generator();
  /external/chromium_org/gin/modules/
console.h 18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/gin/test/
file.h 15 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
gc.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
gtest.h 18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/apps/js/bindings/gl/
module.h 16 v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/bindings/js/
core.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
support.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);

Completed in 424 milliseconds

1 2 3 4 5 6 7 8 91011>>