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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
code-factory.h 35 static Callable LoadIC(Isolate* isolate, TypeofMode typeof_mode,
37 static Callable LoadICInOptimizedCode(Isolate* isolate,
41 static Callable KeyedLoadIC(Isolate* isolate, LanguageMode language_mode);
43 Isolate* isolate, LanguageMode language_mode,
45 static Callable CallIC(Isolate* isolate, int argc
    [all...]
d8-windows.cc 11 void Shell::AddOSMethods(Isolate* isolate, Local<ObjectTemplate> os_templ) {}
isolate-inl.h 8 #include "src/isolate.h"
15 void Isolate::set_context(Context* context) {
21 Object* Isolate::pending_exception() {
28 void Isolate::set_pending_exception(Object* exception_obj) {
34 void Isolate::clear_pending_exception() {
40 bool Isolate::has_pending_exception() {
46 void Isolate::clear_pending_message() {
51 Object* Isolate::scheduled_exception() {
58 bool Isolate::has_scheduled_exception() {
64 void Isolate::clear_scheduled_exception()
    [all...]
runtime-profiler.h 18 class Isolate;
24 explicit RuntimeProfiler(Isolate* isolate);
37 Isolate* isolate_;
vm-state.h 9 #include "src/isolate.h"
22 explicit inline VMState(Isolate* isolate);
26 Isolate* isolate_;
33 inline ExternalCallbackScope(Isolate* isolate, Address callback);
48 Isolate* isolate_;
i18n.h 28 static Handle<ObjectTemplateInfo> GetTemplate(Isolate* isolate);
31 static Handle<ObjectTemplateInfo> GetTemplate2(Isolate* isolate);
43 Isolate* isolate,
49 static icu::SimpleDateFormat* UnpackDateFormat(Isolate* isolate,
67 Isolate* isolate,
    [all...]
cancelable-task.h 18 class Isolate;
124 explicit CancelableTask(Isolate* isolate);
135 Isolate* isolate() { return isolate_; } function in class:v8::internal::CancelableTask
138 Isolate* isolate_;
146 explicit CancelableIdleTask(Isolate* isolate);
157 Isolate* isolate() { return isolate_; function in class:v8::internal::CancelableIdleTask
    [all...]
disassembler.h 19 static int Decode(Isolate* isolate, std::ostream* os, byte* begin, byte* end,
typing-reset.cc 17 TypingReseter::TypingReseter(Isolate* isolate, FunctionLiteral* root)
18 : AstExpressionVisitor(isolate, root) {}
typing-reset.h 18 TypingReseter(Isolate* isolate, FunctionLiteral* root);
  /external/pdfium/xfa/src/fxjse/src/
runtime.h 12 CFXJSE_RuntimeData(v8::Isolate* pIsolate) : m_pIsolate(pIsolate){};
15 static CFXJSE_RuntimeData* Create(v8::Isolate* pIsolate);
16 static CFXJSE_RuntimeData* Get(v8::Isolate* pIsolate);
19 v8::Isolate* m_pIsolate;
33 typedef void (*RuntimeDisposeCallback)(v8::Isolate*);
36 void AppendRuntime(v8::Isolate* pIsolate);
37 void RemoveRuntime(v8::Isolate* pIsolate,
42 CFX_ArrayTemplate<v8::Isolate*> m_RuntimeList;
context.h 13 CFXJSE_Context(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {}
16 static CFXJSE_Context* Create(v8::Isolate* pIsolate,
20 V8_INLINE v8::Isolate* GetRuntime(void) { return m_pIsolate; }
33 v8::Isolate* m_pIsolate;
39 v8::Local<v8::Object> FXJSE_CreateReturnValue(v8::Isolate* pIsolate,
  /external/v8/src/ast/
ast-numbering.h 13 class Isolate;
19 bool Renumber(Isolate* isolate, Zone* zone, FunctionLiteral* function);
  /external/v8/src/wasm/
wasm-js.h 21 static void Install(Isolate* isolate, Handle<JSGlobalObject> global_object);
22 static void InstallWasmFunctionMap(Isolate* isolate, Handle<Context> context);
asm-wasm-builder.h 21 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone, FunctionLiteral* root);
25 Isolate* isolate_;
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 50 static void SetUp(v8::Isolate* pIsolate);
51 static FXJS_PerIsolateData* Get(v8::Isolate* pIsolate);
85 void FXJS_Initialize(unsigned int embedderDataSlot, v8::Isolate* pIsolate);
88 // Gets the global isolate set by FXJS_Initialize(), or makes a new one each
89 // time if there is no such isolate. Returns true if a new isolate had to be
91 bool FXJS_GetIsolate(v8::Isolate** pResultIsolate);
93 // Get the global isolate's ref count.
98 void FXJS_PrepareIsolate(v8::Isolate* pIsolate);
102 void JS_PrepareIsolate(v8::Isolate* pIsolate)
    [all...]
  /external/v8/include/
v8-platform.h 12 class Isolate;
70 * |isolate|. Tasks posted for the same isolate should be execute in order of
73 virtual void CallOnForegroundThread(Isolate* isolate, Task* task) = 0;
77 * |isolate| after the given number of seconds |delay_in_seconds|.
78 * Tasks posted for the same isolate should be execute in order of
81 virtual void CallDelayedOnForegroundThread(Isolate* isolate, Task* task,
86 * |isolate| when the embedder is idle
    [all...]
v8-testing.h 42 static void DeoptimizeAll(Isolate* isolate);
  /external/v8/src/libplatform/
default-platform.h 34 bool PumpMessageLoop(v8::Isolate* isolate);
39 void CallOnForegroundThread(v8::Isolate* isolate, Task* task) override;
40 void CallDelayedOnForegroundThread(Isolate* isolate, Task* task,
42 void CallIdleOnForegroundThread(Isolate* isolate, IdleTask* task) override;
43 bool IdleTasksEnabled(Isolate* isolate) override
    [all...]
  /external/v8/src/extensions/
gc-extension.cc 14 v8::Isolate* isolate, v8::Local<v8::String> str) {
15 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
24 ? v8::Isolate::kMinorGarbageCollection
25 : v8::Isolate::kFullGarbageCollection);
  /external/pdfium/testing/
js_embedder_test.cpp 9 v8::Isolate::CreateParams params;
11 m_pIsolate = v8::Isolate::New(params);
22 v8::Isolate::Scope isolate_scope(m_pIsolate);
39 v8::Isolate* JSEmbedderTest::isolate() { function in class:JSEmbedderTest
  /external/v8/include/libplatform/
libplatform.h 25 * Pumps the message loop for the given isolate.
32 bool PumpMessageLoop(v8::Platform* platform, v8::Isolate* isolate);
  /external/v8/src/ia32/
simulator-ia32.h 15 #define CALL_GENERATED_CODE(isolate, entry, p0, p1, p2, p3, p4) \
20 const byte*, int*, int, Address, int, Isolate*);
24 #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
34 static inline uintptr_t JsLimitFromCLimit(Isolate* isolate,
36 USE(isolate);
40 static inline uintptr_t RegisterCTryCatch(v8::internal::Isolate* isolate,
42 USE(isolate);
46 static inline void UnregisterCTryCatch(v8::internal::Isolate* isolate)
    [all...]
  /external/v8/src/regexp/
interpreter-irregexp.h 18 static RegExpImpl::IrregexpResult Match(Isolate* isolate,
  /external/v8/src/x64/
simulator-x64.h 16 #define CALL_GENERATED_CODE(isolate, entry, p0, p1, p2, p3, p4) \
20 const byte*, int*, int, Address, int, Isolate*);
24 #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
33 static inline uintptr_t JsLimitFromCLimit(Isolate* isolate,
38 static inline uintptr_t RegisterCTryCatch(Isolate* isolate,
40 USE(isolate);
44 static inline void UnregisterCTryCatch(Isolate* isolate) { USE(isolate);
    [all...]

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>