/external/libchrome/base/containers/ |
D | linked_list.h | 87 LinkNode() : previous_(nullptr), next_(nullptr) {} in LinkNode() 89 : previous_(previous), next_(next) {} in LinkNode() 94 previous_ = rhs.previous_; in LinkNode() 95 rhs.previous_ = nullptr; in LinkNode() 100 next_->previous_ = this; in LinkNode() 101 previous_->next_ = this; in LinkNode() 108 this->previous_ = e->previous_; in InsertBefore() 109 e->previous_->next_ = this; in InsertBefore() 110 e->previous_ = this; in InsertBefore() 116 this->previous_ = e; in InsertAfter() [all …]
|
/external/google-breakpad/src/client/mac/handler/ |
D | exception_handler.cc | 236 previous_(NULL), in ExceptionHandler() 263 previous_(NULL), in ExceptionHandler() 657 previous_ = new (gBreakpadAllocator->Allocate(sizeof(ExceptionParameters)) ) in InstallHandler() 660 previous_ = new ExceptionParameters(); in InstallHandler() 668 previous_->count = EXC_TYPES_COUNT; in InstallHandler() 672 previous_->masks, in InstallHandler() 673 &previous_->count, in InstallHandler() 674 previous_->ports, in InstallHandler() 675 previous_->behaviors, in InstallHandler() 676 previous_->flavors); in InstallHandler() [all …]
|
D | exception_handler.h | 250 ExceptionParameters *previous_; variable
|
/external/v8/src/zone/ |
D | zone-chunk-list.h | 116 Chunk* previous_ = nullptr; member 223 if (list->back_->previous_ != nullptr) { in Begin() 224 return ZoneChunkListIterator(list->back_->previous_, in Begin() 225 list->back_->previous_->capacity_ - 1); in Begin() 258 current_ = current_->previous_; in Move() 288 return back_->previous_->items()[back_->previous_->position_ - 1]; in back() 306 chunk->previous_ = back_; in push_back() 320 back_ = back_->previous_; in pop_back() 331 front_->previous_ = chunk; in push_front()
|
/external/tensorflow/tensorflow/core/util/ |
D | work_sharder.h | 75 : previous_(GetPerThreadMaxParallelism()) { in ScopedPerThreadMaxParallelism() 79 ~ScopedPerThreadMaxParallelism() { SetPerThreadMaxParallelism(previous_); } in ~ScopedPerThreadMaxParallelism() 82 int previous_ = -1;
|
/external/v8/src/torque/ |
D | contextual.h | 41 : current_(std::forward<Args>(args)...), previous_(Top()) { in Scope() 47 Top() = previous_; in ~Scope() 52 VarType* previous_; variable
|
/external/v8/src/ |
D | v8threads.cc | 186 previous_(this), in ThreadState() 200 next_->previous_ = previous_; in Unlink() 201 previous_->next_ = next_; in Unlink() 210 previous_ = flying_anchor; in LinkInto() 212 next_->previous_ = this; in LinkInto()
|
D | source-position-table.cc | 134 : mode_(mode), previous_() {} in SourcePositionTableBuilder() 147 SubtractFromEntry(tmp, previous_); in AddEntry() 149 previous_ = entry; in AddEntry()
|
D | v8threads.h | 49 ThreadState* previous_; variable
|
D | source-position-table.h | 57 PositionTableEntry previous_; // Previously written entry, to compute delta. variable
|
D | api.h | 299 previous_(nullptr), in DeferredHandles() 309 DeferredHandles* previous_; variable
|
D | isolate.cc | 3182 deferred_handles_head_->previous_ = deferred; in Throw() 3192 while (deferred_iterator->previous_ != nullptr) { in Throw() 3193 deferred_iterator = deferred_iterator->previous_; in Throw() 3201 deferred->next_->previous_ = deferred->previous_; in Throw() 3203 if (deferred->previous_ != nullptr) { in Throw() 3204 deferred->previous_->next_ = deferred->next_; in Throw()
|
/external/v8/src/parsing/ |
D | expression-classifier.h | 92 previous_(base->classifier_), in base_() 104 if (base_->classifier_ == this) base_->classifier_ = previous_; in ~ExpressionClassifier() 354 ExpressionClassifier* previous() const { return previous_; } in previous() 396 ExpressionClassifier* previous_; variable
|
D | rewriter.cc | 88 : processor_(processor), previous_(processor->breakable_) { in BreakableScope() 92 ~BreakableScope() { processor_->breakable_ = previous_; } in ~BreakableScope() 96 bool previous_; member in v8::internal::Processor::BreakableScope
|
D | parser.h | 1139 previous_(parser->impl()->target_stack_) { 1143 ~ParserTarget() { *variable_ = previous_; } 1145 ParserTarget* previous() { return previous_; } 1151 ParserTarget* previous_; 1158 previous_(parser->impl()->target_stack_) { 1162 ~ParserTargetScope() { *variable_ = previous_; } 1166 ParserTarget* previous_;
|
/external/protobuf/src/google/protobuf/io/ |
D | tokenizer.h | 260 Token previous_; // Returned by previous(). variable 399 return previous_; in previous()
|
D | tokenizer.cc | 563 previous_ = current_; in Next() 612 if (previous_.type == TYPE_IDENTIFIER && in Next() 613 current_.line == previous_.line && in Next() 614 current_.column == previous_.end_column) { in Next()
|
/external/webp/src/enc/ |
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()
|
/external/jsoncpp/src/lib_json/ |
D | json_internalmap.inl | 22 ValueInternalLink::ValueInternalLink() : previous_(0), next_(0) {} 290 ValueInternalLink* linkPreviousToLast = lastLink->previous_; 309 ValueInternalLink*& previous = buckets_[bucketIndex + 1].previous_; 440 iterator.link_ = iterator.link_->previous_;
|
/external/libchrome/base/metrics/ |
D | statistics_recorder.cc | 56 top_ = previous_; in ~StatisticsRecorder() 397 previous_ = top_; in StatisticsRecorder()
|
D | statistics_recorder.h | 284 StatisticsRecorder* previous_ = nullptr; variable
|
/external/v8/src/heap/ |
D | gc-tracer.cc | 143 previous_(current_), in GCTracer() 176 previous_ = current_; in ResetForTesting() 219 previous_ = current_; in Start() 492 double spent_in_mutator = current_.start_time - previous_.end_time; in PrintNVP() 494 current_.start_object_size - previous_.end_object_size; in PrintNVP()
|
D | gc-tracer.h | 396 Event previous_; variable
|
/external/jsoncpp/include/json/ |
D | value.h | 645 ValueInternalLink* previous_; variable
|