Home
last modified time | relevance | path

Searched refs:previous_ (Results 1 – 25 of 25) 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/zone/
Dzone-chunk-list.h109 Chunk* previous_ = nullptr; member
164 current_ = current_->previous_; in MoveRNext()
265 if (list->back_->previous_ != nullptr) { in Begin()
267 list->back_->previous_, list->back_->previous_->capacity_ - 1); in Begin()
296 return back_->previous_->items()[back_->previous_->position_ - 1]; in back()
314 chunk->previous_ = back_; in push_back()
327 back_ = back_->previous_; in pop_back()
337 front_->previous_ = chunk; in push_front()
/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()
Dsource-position-table.cc118 previous_() { in SourcePositionTableBuilder()
132 SubtractFromEntry(tmp, previous_); in AddEntry()
134 previous_ = entry; in AddEntry()
Dv8threads.h47 ThreadState* previous_; variable
Dsource-position-table.h59 PositionTableEntry previous_; // Previously written entry, to compute delta. variable
Disolate.cc2861 deferred_handles_head_->previous_ = deferred; in Throw()
2871 while (deferred_iterator->previous_ != NULL) { in Throw()
2872 deferred_iterator = deferred_iterator->previous_; in Throw()
2880 deferred->next_->previous_ = deferred->previous_; in Throw()
2882 if (deferred->previous_ != NULL) { in Throw()
2883 deferred->previous_->next_ = deferred->next_; in Throw()
Dapi.h360 previous_(NULL),
370 DeferredHandles* previous_; local
/external/v8/src/parsing/
Dexpression-classifier.h98 previous_(base->classifier_), in base_()
112 if (base_->classifier_ == this) base_->classifier_ = previous_; in ~ExpressionClassifier()
383 ExpressionClassifier* previous() const { return previous_; } in previous()
425 ExpressionClassifier* previous_; variable
Drewriter.cc88 : processor_(processor), previous_(processor->breakable_) { in BreakableScope()
92 ~BreakableScope() { processor_->breakable_ = previous_; } in ~BreakableScope()
96 bool previous_; member in v8::internal::Processor::BreakableScope
Dparser.h1185 previous_(parser->impl()->target_stack_) {
1189 ~ParserTarget() { *variable_ = previous_; }
1191 ParserTarget* previous() { return previous_; }
1197 ParserTarget* previous_;
1204 previous_(parser->impl()->target_stack_) {
1208 ~ParserTargetScope() { *variable_ = previous_; }
1212 ParserTarget* previous_;
/external/protobuf/src/google/protobuf/io/
Dtokenizer.h260 Token previous_; // Returned by previous(). variable
399 return previous_; in previous()
Dtokenizer.cc563 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/v8/src/full-codegen/
Dfull-codegen.h95 previous_ = codegen->nesting_stack_; in NestedStatement()
101 codegen_->nesting_stack_ = previous_; in ~NestedStatement()
115 virtual NestedStatement* Exit(int* context_length) { return previous_; } in Exit()
125 NestedStatement* previous_; variable
182 return previous_; in Exit()
/external/v8/src/heap/
Dgc-tracer.cc103 previous_(current_), in GCTracer()
122 previous_ = current_; in ResetForTesting()
156 previous_ = current_; in Start()
436 double spent_in_mutator = current_.start_time - previous_.end_time; in PrintNVP()
438 current_.start_object_size - previous_.end_object_size; in PrintNVP()
Dgc-tracer.h392 Event previous_; variable
/external/webp/src/enc/
Dbackward_references_cost_enc.c169 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/v8/src/crankshaft/
Dhydrogen-gvn.cc734 : previous_(previous), next_(NULL) { in GvnBasicBlockState()
765 GvnBasicBlockState* result = previous_; in pop()
769 previous_->block()->block_id()) in pop()
770 result = result->previous_; in pop()
775 GvnBasicBlockState* previous_; member in v8::internal::GvnBasicBlockState
Dhydrogen-instructions.cc675 DCHECK(previous_ != NULL); in Unlink()
676 previous_->next_ = next_; in Unlink()
679 block()->set_last(previous_); in Unlink()
681 next_->previous_ = previous_; in Unlink()
692 DCHECK(next->previous_ != NULL); in InsertBefore()
695 next->previous_ = this; in InsertBefore()
697 previous_ = prev; in InsertBefore()
728 previous_ = previous; in InsertAfter()
732 if (next != NULL) next->previous_ = this; in InsertAfter()
Dhydrogen-instructions.h951 HInstruction* previous() const { return previous_; } in previous()
1002 previous_(NULL), in DECLARE_ABSTRACT_INSTRUCTION()
1016 HInstruction* previous_; variable
/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/jsoncpp/include/json/
Dvalue.h645 ValueInternalLink* previous_; variable
/external/annotation-tools/asmx/test/lib/
Djd.xslt-1.5.5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sarvega/ javax/ ...