Searched refs:previous_ (Results 1 - 16 of 16) sorted by relevance

/external/chromium/base/
H A Dlinked_list.h86 LinkNode() : previous_(0), next_(0) {}
88 : previous_(previous), next_(next) {}
93 this->previous_ = e->previous_;
94 e->previous_->next_ = this;
95 e->previous_ = this;
101 this->previous_ = e;
102 e->next_->previous_ = this;
108 this->previous_->next_ = this->next_;
109 this->next_->previous_
137 LinkNode<T>* previous_; member in class:base::LinkNode
[all...]
/external/v8/src/
H A Dallocation.cc106 other->next_->previous_ = this;
107 previous_ = other;
113 next_->previous_ = previous_;
114 previous_->next_ = next_;
120 previous_ = next_ = this;
H A Dv8threads.cc242 previous_(this),
253 next_->previous_ = previous_;
254 previous_->next_ = next_;
263 previous_ = flying_anchor;
265 next_->previous_ = this;
H A Dfull-codegen.h126 previous_ = codegen->nesting_stack_;
132 codegen_->nesting_stack_ = previous_;
148 return previous_;
155 NestedStatement* previous_; member in class:v8::internal::FullCodeGenerator::BASE_EMBEDDED
213 return previous_;
251 return previous_;
267 return previous_;
282 return previous_;
H A Dallocation.h128 PreallocatedStorage* previous_; member in class:v8::internal::PreallocatedStorage
H A Dv8threads.h67 ThreadState* previous_; member in class:v8::internal::ThreadState
H A Dhydrogen-instructions.cc547 ASSERT(previous_ != NULL);
548 previous_->next_ = next_;
551 block()->set_last(previous_);
553 next_->previous_ = previous_;
564 ASSERT(next->previous_ != NULL);
567 next->previous_ = this;
569 previous_ = prev;
597 previous_ = previous;
601 if (next != NULL) next->previous_
[all...]
H A Disolate.cc247 ASSERT(free_list_.previous_ == &free_list_);
250 free_list_.next_ = free_list_.previous_ = free_chunk;
251 free_chunk->next_ = free_chunk->previous_ = &free_list_;
262 ASSERT(free_list_.previous_ != &free_list_);
309 ASSERT(storage->next_->previous_ == storage);
310 ASSERT(storage->previous_->next_ == storage);
H A Dparser.cc60 previous_ = stack->top();
66 Element* previous() { return previous_; }
69 Element* previous_; member in class:v8::internal::PositionStack::Element
426 : variable_(variable), node_(node), previous_(*variable) {
431 *variable_ = previous_;
434 Target* previous() { return previous_; }
440 Target* previous_; member in class:v8::internal::BASE_EMBEDDED
447 : variable_(variable), previous_(*variable) {
452 *variable_ = previous_;
457 Target* previous_; member in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dbootstrapper.cc150 Genesis* previous() { return previous_; }
163 Genesis* previous_; member in class:BASE_EMBEDDED
H A Dfull-codegen.cc1404 return previous_;
H A Dhydrogen-instructions.h817 HInstruction* previous() const { return previous_; }
846 previous_(NULL),
862 HInstruction* previous_;
/external/v8/src/arm/
H A Dfull-codegen-arm.cc4431 return previous_;
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc4417 return previous_;
/external/v8/src/mips/
H A Dfull-codegen-mips.cc4468 return previous_;
/external/v8/src/x64/
H A Dfull-codegen-x64.cc4334 return previous_;

Completed in 384 milliseconds