Home
last modified time | relevance | path

Searched refs:IsRunningMicrotasks (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/include/
Dv8-microtask-queue.h92 virtual bool IsRunningMicrotasks() const = 0;
138 static bool IsRunningMicrotasks(Isolate* isolate);
/third_party/node/deps/v8/src/execution/
Dmicrotask-queue.h50 return !IsRunningMicrotasks() && !GetMicrotasksScopeDepth() && in ShouldPerfomCheckpoint()
59 bool IsRunningMicrotasks() const override { return is_running_microtasks_; } in IsRunningMicrotasks() function
/third_party/node/deps/v8/src/api/
Dapi.cc9606 bool MicrotasksScope::IsRunningMicrotasks(Isolate* v8_isolate) { in IsRunningMicrotasks() function in v8::MicrotasksScope
9609 return microtask_queue->IsRunningMicrotasks(); in IsRunningMicrotasks()