/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | LinkedList.h | 102 LinkNode() : previous_(nullptr), next_(nullptr) { in LinkNode() 104 LinkNode(LinkNode<T>* previous, LinkNode<T>* next) : previous_(previous), next_(next) { in LinkNode() 110 previous_ = rhs.previous_; in LinkNode() 111 rhs.previous_ = nullptr; in LinkNode() 113 // If the node belongs to a list, next_ and previous_ are both non-null. in LinkNode() 116 next_->previous_ = this; in LinkNode() 117 previous_->next_ = this; in LinkNode() 124 this->previous_ = e->previous_; in InsertBefore() 176 LinkNode<T>* previous_; global() member in LinkNode [all...] |
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | stats-collector.cc | 231 previous_ = std::move(current_); in NotifySweepingCompleted() 235 previous_.collection_type, in NotifySweepingCompleted() 236 previous_.scope_data[kAtomicMark].InMicroseconds(), in NotifySweepingCompleted() 237 previous_.scope_data[kAtomicWeak].InMicroseconds(), in NotifySweepingCompleted() 238 previous_.scope_data[kAtomicCompact].InMicroseconds(), in NotifySweepingCompleted() 239 previous_.scope_data[kAtomicSweep].InMicroseconds(), in NotifySweepingCompleted() 240 previous_.scope_data[kIncrementalMark].InMicroseconds(), in NotifySweepingCompleted() 241 previous_.scope_data[kIncrementalSweep].InMicroseconds(), in NotifySweepingCompleted() 242 previous_.concurrent_scope_data[kConcurrentMark], in NotifySweepingCompleted() 243 previous_ in NotifySweepingCompleted() [all...] |
H A D | stats-collector.h | 300 const Event& GetPreviousEventForTesting() const { return previous_; } in GetPreviousEventForTesting() 369 Event previous_; member in cppgc::internal::final
|
/third_party/node/deps/v8/src/zone/ |
H A D | zone-chunk-list.h | 119 Chunk* previous_ = nullptr; member 224 if (list->back_->previous_ != nullptr) { in Begin() 225 return ZoneChunkListIterator(list->back_->previous_, in Begin() 226 list->back_->previous_->capacity_ - 1); in Begin() 259 current_ = current_->previous_; in Move() 289 return back_->previous_->items()[back_->previous_->position_ - 1]; in back() 308 chunk->previous_ = back_; in push_back() 322 back_ = back_->previous_; in pop_back() 333 front_->previous_ in push_front() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | contextual.h | 42 : value_(std::forward<Args>(args)...), previous_(Top()) { in Scope() 48 Top() = previous_; in ~Scope() 57 Scope* previous_; member in v8::internal::torque::ContextualVariable::Scope
|
/third_party/node/deps/v8/src/execution/ |
H A D | v8threads.cc | 177 previous_(this), in ThreadState() 187 next_->previous_ = previous_; in Unlink() 188 previous_->next_ = next_; in Unlink() 196 previous_ = flying_anchor; in LinkInto() 198 next_->previous_ = this; in LinkInto()
|
H A D | v8threads.h | 44 ThreadState* previous_; member in v8::internal::ThreadState
|
/third_party/node/deps/v8/src/codegen/ |
H A D | source-position-table.cc | 151 previous_() { in SourcePositionTableBuilder() 165 SubtractFromEntry(&tmp, previous_); in AddEntry() 167 previous_ = entry; in AddEntry()
|
H A D | source-position-table.h | 73 PositionTableEntry previous_; // Previously written entry, to compute delta. member in v8::internal::SourcePositionTableBuilder
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | tokenizer.h | 263 Token previous_; // Returned by previous(). member in google::protobuf::io::Tokenizer 399 inline const Tokenizer::Token& Tokenizer::previous() { return previous_; } in previous()
|
H A D | tokenizer.cc | 566 previous_ = current_; in Next() 615 if (previous_.type == TYPE_IDENTIFIER && in Next() 616 current_.line == previous_.line && in Next() 617 current_.column == previous_.end_column) { in Next()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | backward_references_cost_enc.c | 169 CostInterval* previous_; member 351 if (next != NULL) next->previous_ = prev; in ConnectIntervals() 359 ConnectIntervals(manager, interval->previous_, interval->next_); in PopInterval() 402 previous = previous->previous_; in PositionOrphanInterval()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | rewriter.cc | 76 : processor_(processor), previous_(processor->breakable_) { in BreakableScope() 80 ~BreakableScope() { processor_->breakable_ = previous_; } in ~BreakableScope() 84 bool previous_; member in v8::internal::final::final
|
H A D | parser-base.h | 372 previous_(*stack_) { in Target() 380 ~Target() { *stack_ = previous_; } in ~Target() 382 const Target* previous() const { return previous_; } in previous() 399 Target* const previous_; member in v8::internal::ParseFunctionFlag::ParserBase::Target
|
/third_party/node/deps/v8/src/heap/ |
H A D | gc-tracer.cc | 169 previous_(current_), in GCTracer() 204 previous_ = current_; in ResetForTesting() 303 DCHECK_EQ(Event::State::NOT_RUNNING, previous_.state); in StartCycle() 305 previous_ = current_; in StartCycle() 480 std::swap(current_, previous_); in StopCycle() 723 double spent_in_mutator = current_.start_time - previous_.end_time; in PrintNVP() 725 current_.start_object_size - previous_.end_object_size; in PrintNVP()
|
H A D | gc-tracer.h | 487 Event previous_; member in v8::internal::GCTracer 563 // |previous_| event is used as temporary storage for the |current_| event
|