Home
last modified time | relevance | path

Searched refs:is_empty_ (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/libplatform/tracing/
Dtrace-buffer.cc20 if (is_empty_ || chunks_[chunk_index_]->IsFull()) { in AddTraceEvent()
21 chunk_index_ = is_empty_ ? 0 : NextChunkIndex(chunk_index_); in AddTraceEvent()
22 is_empty_ = false; in AddTraceEvent()
51 if (!is_empty_) { in Flush()
63 is_empty_ = true; in Flush()
Dtrace-buffer.h41 bool is_empty_ = true; variable
/third_party/node/deps/v8/src/heap/cppgc/
Dsweeper.cc149 is_empty_.store(false, std::memory_order_relaxed); in Push()
155 is_empty_.store(true, std::memory_order_relaxed); in Pop()
168 is_empty_.store(false, std::memory_order_relaxed); in Insert()
171 bool IsEmpty() const { return is_empty_.load(std::memory_order_relaxed); } in IsEmpty()
176 std::atomic<bool> is_empty_{true}; member in cppgc::internal::__anon9ffa836b0111::ThreadSafeStack
/third_party/node/deps/v8/src/debug/
Dinterface-types.h43 bool is_empty_; variable
Ddebug-interface.cc785 is_empty_(false) {} in Location()
790 is_empty_(true) {} in Location()
802 bool Location::IsEmpty() const { return is_empty_; } in IsEmpty()