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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
code-factory.h 35 static Callable LoadIC(Isolate* isolate);
36 static Callable LoadICInOptimizedCode(Isolate* isolate);
37 static Callable LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode);
38 static Callable LoadGlobalICInOptimizedCode(Isolate* isolate,
40 static Callable KeyedLoadIC(Isolate* isolate);
    [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 13 class Isolate;
18 explicit RuntimeProfiler(Isolate* isolate);
35 Isolate* isolate_;
vm-state.h 10 #include "src/isolate.h"
23 explicit inline VMState(Isolate* isolate);
27 Isolate* isolate_;
34 inline ExternalCallbackScope(Isolate* isolate, Address callback);
49 Isolate* isolate_;
uri.h 17 static MaybeHandle<String> DecodeUri(Isolate* isolate, Handle<String> uri) {
18 return Decode(isolate, uri, true);
22 static MaybeHandle<String> DecodeUriComponent(Isolate* isolate,
24 return Decode(isolate, component, false);
28 static MaybeHandle<String> EncodeUri(Isolate* isolate, Handle<String> uri) {
29 return Encode(isolate, uri, true);
33 static MaybeHandle<String> EncodeUriComponent(Isolate* isolate
    [all...]
code-factory.cc 15 Callable CodeFactory::LoadIC(Isolate* isolate) {
17 LoadICTrampolineTFStub stub(isolate);
18 return Callable(stub.GetCode(), LoadDescriptor(isolate));
20 LoadICTrampolineStub stub(isolate);
21 return Callable(stub.GetCode(), LoadDescriptor(isolate));
25 Callable CodeFactory::ApiGetter(Isolate* isolate) {
26 CallApiGetterStub stub(isolate);
27 return Callable(stub.GetCode(), ApiGetterDescriptor(isolate));
    [all...]
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,
66 Isolate* isolate,
    [all...]
assembler.h 40 #include "src/isolate.h"
63 AssemblerBase(Isolate* isolate, void* buffer, int buffer_size);
66 Isolate* isolate() const { return isolate_; } function in class:v8::internal::AssemblerBase
111 static void FlushICache(Isolate* isolate, void* start, size_t size);
133 Isolate* isolate_;
443 explicit RelocInfo(Isolate* isolate) : isolate_(isolate)
539 Isolate* isolate() const { return isolate_; } function in class:v8::internal::RelocInfo
    [all...]
cancelable-task.h 19 class Isolate;
125 explicit CancelableTask(Isolate* isolate);
136 Isolate* isolate() { return isolate_; } function in class:v8::internal::CancelableTask
139 Isolate* isolate_;
147 explicit CancelableIdleTask(Isolate* isolate);
158 Isolate* isolate() { return isolate_; function in class:v8::internal::CancelableIdleTask
    [all...]
external-reference-table.h 13 class Isolate;
20 static ExternalReferenceTable* instance(Isolate* isolate);
36 explicit ExternalReferenceTable(Isolate* isolate);
  /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 23 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone, FunctionLiteral* root,
28 Isolate* isolate_;
  /external/v8/test/cctest/
test-usecounters.cc 13 void MockUseCounterCallback(v8::Isolate* isolate,
14 v8::Isolate::UseCounterFeature feature) {
20 v8::Isolate* isolate = CcTest::isolate(); local
21 v8::HandleScope scope(isolate);
23 int use_counts[v8::Isolate::kUseCounterFeatureCount] = {};
25 CcTest::isolate()->SetUseCounterCallback(MockUseCounterCallback);
33 CHECK_EQ(0, use_counts[v8::Isolate::kDefineGetterOrSetterWouldThrow])
    [all...]
  /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-debug.h 85 virtual Isolate* GetIsolate() const = 0;
128 virtual Isolate* GetIsolate() const = 0;
158 static bool SetDebugEventListener(Isolate* isolate, EventCallback that,
160 V8_DEPRECATED("Use version with an Isolate",
165 // in the given isolate.
166 static void DebugBreak(Isolate* isolate);
168 // Remove scheduled debugger break in given isolate if it has not
170 static void CancelDebugBreak(Isolate* isolate)
    [all...]
v8-testing.h 42 static void DeoptimizeAll(Isolate* isolate);
  /external/v8/src/libplatform/
default-platform.h 34 bool PumpMessageLoop(v8::Isolate* isolate);
40 void CallOnForegroundThread(v8::Isolate* isolate, Task* task) override;
41 void CallDelayedOnForegroundThread(Isolate* isolate, Task* task,
43 void CallIdleOnForegroundThread(Isolate* isolate, IdleTask* task) override;
44 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/v8/src/interpreter/
handler-table-builder.h 16 class Isolate;
23 HandlerTableBuilder(Isolate* isolate, Zone* zone);
51 Isolate* isolate_;
  /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);

Completed in 936 milliseconds

1 2 3 4 5 6 7 8 91011>>