Home
last modified time | relevance | path

Searched refs:previous_ (Results 1 – 21 of 21) sorted by relevance

/external/libchrome/base/containers/
Dlinked_list.h87 LinkNode() : previous_(NULL), next_(NULL) {} in LinkNode()
89 : previous_(previous), next_(next) {} in LinkNode()
94 this->previous_ = e->previous_; in InsertBefore()
95 e->previous_->next_ = this; in InsertBefore()
96 e->previous_ = this; in InsertBefore()
102 this->previous_ = e; in InsertAfter()
103 e->next_->previous_ = this; in InsertAfter()
109 this->previous_->next_ = this->next_; in RemoveFromList()
110 this->next_->previous_ = this->previous_; in RemoveFromList()
114 this->previous_ = NULL; in RemoveFromList()
[all …]
/external/google-breakpad/src/client/mac/handler/
Dexception_handler.cc236 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 …]
Dexception_handler.h250 ExceptionParameters *previous_; variable
/external/v8/src/
Dv8threads.cc182 previous_(this), in ThreadState()
198 next_->previous_ = previous_; in Unlink()
199 previous_->next_ = next_; in Unlink()
208 previous_ = flying_anchor; in LinkInto()
210 next_->previous_ = this; in LinkInto()
Dv8threads.h47 ThreadState* previous_; variable
Disolate.cc2408 deferred_handles_head_->previous_ = deferred; in LinkDeferredHandles()
2418 while (deferred_iterator->previous_ != NULL) { in UnlinkDeferredHandles()
2419 deferred_iterator = deferred_iterator->previous_; in UnlinkDeferredHandles()
2427 deferred->next_->previous_ = deferred->previous_; in UnlinkDeferredHandles()
2429 if (deferred->previous_ != NULL) { in UnlinkDeferredHandles()
2430 deferred->previous_->next_ = deferred->next_; in UnlinkDeferredHandles()
Dapi.h420 previous_(NULL),
430 DeferredHandles* previous_; local
/external/v8/src/heap/
Dgc-tracer.cc135 previous_ = previous_incremental_mark_compactor_event_ = current_; in GCTracer()
164 previous_ = current_; in Start()
249 previous_.cumulative_incremental_marking_steps; in Stop()
252 previous_.cumulative_incremental_marking_bytes; in Stop()
255 previous_.cumulative_incremental_marking_duration; in Stop()
258 previous_.cumulative_pure_incremental_marking_duration; in Stop()
299 double spent_in_mutator = Max(current_.start_time - previous_.end_time, 0.0); in Stop()
473 double spent_in_mutator = current_.start_time - previous_.end_time; in PrintNVP()
475 current_.start_object_size - previous_.end_object_size; in PrintNVP()
Dgc-tracer.h421 Event previous_; variable
/external/v8/src/interpreter/
Dsource-position-table.h45 previous_() { in SourcePositionTableBuilder()
61 PositionTableEntry previous_; // Previously written entry, to compute delta. variable
Dsource-position-table.cc116 SubtractFromEntry(tmp, previous_); in AddEntry()
118 previous_ = entry; in AddEntry()
/external/protobuf/src/google/protobuf/io/
Dtokenizer.h252 Token previous_; // Returned by previous(). variable
390 return previous_; in previous()
Dtokenizer.cc562 previous_ = current_; in Next()
611 if (previous_.type == TYPE_IDENTIFIER && in Next()
612 current_.line == previous_.line && in Next()
613 current_.column == previous_.end_column) { in Next()
/external/v8/src/full-codegen/
Dfull-codegen.h110 previous_ = codegen->nesting_stack_; in NestedStatement()
116 codegen_->nesting_stack_ = previous_; in ~NestedStatement()
132 virtual NestedStatement* Exit(int* context_length) { return previous_; } in Exit()
142 NestedStatement* previous_; variable
199 return previous_; in Exit()
213 return previous_; in Exit()
283 return previous_; in Exit()
Dfull-codegen.cc1748 return previous_; in Exit()
/external/jsoncpp/src/lib_json/
Djson_internalmap.inl22 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/v8/src/crankshaft/
Dhydrogen-gvn.cc733 : previous_(previous), next_(NULL) { in GvnBasicBlockState()
764 GvnBasicBlockState* result = previous_; in pop()
768 previous_->block()->block_id()) in pop()
769 result = result->previous_; in pop()
774 GvnBasicBlockState* previous_; member in v8::internal::GvnBasicBlockState
Dhydrogen-instructions.cc642 DCHECK(previous_ != NULL); in Unlink()
643 previous_->next_ = next_; in Unlink()
646 block()->set_last(previous_); in Unlink()
648 next_->previous_ = previous_; in Unlink()
659 DCHECK(next->previous_ != NULL); in InsertBefore()
662 next->previous_ = this; in InsertBefore()
664 previous_ = prev; in InsertBefore()
695 previous_ = previous; in InsertAfter()
699 if (next != NULL) next->previous_ = this; in InsertAfter()
Dhydrogen-instructions.h1050 HInstruction* previous() const { return previous_; } in previous()
1115 previous_(NULL), in DECLARE_ABSTRACT_INSTRUCTION()
1129 HInstruction* previous_; variable
/external/jsoncpp/include/json/
Dvalue.h645 ValueInternalLink* previous_; variable
/external/v8/src/parsing/
Dparser.cc268 : variable_(variable), statement_(statement), previous_(*variable) { in Target()
273 *variable_ = previous_; in ~Target()
276 Target* previous() { return previous_; } in previous()
282 Target* previous_; member in v8::internal::BASE_EMBEDDED
289 : variable_(variable), previous_(*variable) { in TargetScope()
294 *variable_ = previous_; in ~TargetScope()
299 Target* previous_; member in v8::internal::BASE_EMBEDDED