HomeSort by relevance Sort by last modified time
    Searched defs:Isolate (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/text/
UnicodeBidi.h 35 Isolate,
42 return unicodeBidi == Isolate || unicodeBidi == IsolateOverride || unicodeBidi == Plaintext;
  /external/chromium_org/v8/src/
isolate.cc 18 #include "src/isolate-inl.h"
49 int thread_id = Thread::GetThreadLocalInt(Isolate::thread_id_key_);
52 Thread::SetThreadLocalInt(Isolate::thread_id_key_, thread_id);
101 Thread::LocalStorageKey Isolate::isolate_key_;
102 Thread::LocalStorageKey Isolate::thread_id_key_;
103 Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;
107 Mutex Isolate::process_wide_mutex_;
108 // TODO(dcarney): Remove with default isolate.
116 Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL
    [all...]
isolate.h 95 #define RETURN_FAILURE_IF_SCHEDULED_EXCEPTION(isolate) \
97 Isolate* __isolate__ = (isolate); \
105 #define RETURN_EXCEPTION_IF_SCHEDULED_EXCEPTION(isolate, T) \
107 Isolate* __isolate__ = (isolate); \
114 #define ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, dst, call, value) \
117 ASSERT((isolate)->has_pending_exception()); \
122 #define ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, dst, call) \
124 isolate, dst, call, isolate->heap()->exception()
398 Isolate* isolate() const { return isolate_; } function in class:v8::internal::Isolate::PerIsolateThreadData
453 Isolate* isolate = reinterpret_cast<Isolate*>( local
    [all...]
  /external/icu/icu4c/source/common/
ubidiimp.h 85 /* explicit isolate codes */
112 * The following bit is used for the directional isolate status.
113 * Stack entries corresponding to isolate sequences are greater than ISOLATE.
115 #define ISOLATE 0x0100
126 /* number of isolate entries allocated initially without malloc */
128 /* number of isolate run entries for paired brackets allocated initially without malloc */
184 typedef struct Isolate {
189 } Isolate;
287 Isolate *isolatesMemory
    [all...]
  /external/chromium_org/v8/include/
v8.h 79 class Isolate;
118 class Isolate;
130 class Isolate;
288 V8_INLINE static Handle<T> New(Isolate* isolate, Handle<T> that) {
289 return New(isolate, that.val_);
291 V8_INLINE static Handle<T> New(Isolate* isolate,
293 return New(isolate, that.val_);
305 friend Handle<Primitive> Undefined(Isolate* isolate)
    [all...]

Completed in 121 milliseconds