Searched refs:MicrotasksScope (Results 1 - 3 of 3) sorted by relevance

/external/v8/test/cctest/
H A Dtest-api.cc21088 CHECK(v8::MicrotasksScope::IsRunningMicrotasks(info.GetIsolate()));
21090 v8::MicrotasksScope microtasks(info.GetIsolate(),
21091 v8::MicrotasksScope::kDoNotRunMicrotasks);
21097 CHECK(v8::MicrotasksScope::IsRunningMicrotasks(info.GetIsolate()));
21099 v8::MicrotasksScope microtasks(info.GetIsolate(),
21100 v8::MicrotasksScope::kDoNotRunMicrotasks);
21116 CHECK(!v8::MicrotasksScope::IsRunningMicrotasks(env->GetIsolate()));
21322 v8::MicrotasksScope scope1(env->GetIsolate(),
21323 v8::MicrotasksScope::kDoNotRunMicrotasks);
21333 v8::MicrotasksScope scope
[all...]
/external/v8/include/
H A Dv8.h5107 * - scoped: microtasks invocation is controlled by MicrotasksScope objects;
5117 * done inside some MicrotasksScope.
5118 * Microtasks are executed when topmost MicrotasksScope marked as kRunMicrotasks
5123 class V8_EXPORT MicrotasksScope { class in namespace:v8
5127 MicrotasksScope(Isolate* isolate, Type type);
5128 ~MicrotasksScope();
5150 MicrotasksScope(const MicrotasksScope&);
5151 MicrotasksScope& operator=(const MicrotasksScope
[all...]
/external/v8/src/
H A Dapi.cc7924 MicrotasksScope::MicrotasksScope(Isolate* isolate, MicrotasksScope::Type type) function in class:v8::MicrotasksScope
7926 run_(type == MicrotasksScope::kRunMicrotasks) {
7935 MicrotasksScope::~MicrotasksScope() {
7950 void MicrotasksScope::PerformCheckpoint(Isolate* v8Isolate) {
7961 int MicrotasksScope::GetCurrentDepth(Isolate* v8Isolate) {
7966 bool MicrotasksScope::IsRunningMicrotasks(Isolate* v8Isolate) {

Completed in 5327 milliseconds