HomeSort by relevance Sort by last modified time
    Searched refs:previous_ (Results 1 - 16 of 16) sorted by null

  /external/chromium/base/
linked_list.h 86 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_ = this->previous_
137 LinkNode<T>* previous_; member in class:base::LinkNode
    [all...]
  /external/v8/src/
allocation.cc 106 other->next_->previous_ = this;
107 previous_ = other;
113 next_->previous_ = previous_;
114 previous_->next_ = next_;
120 previous_ = next_ = this;
allocation.h 128 PreallocatedStorage* previous_; member in class:v8::internal::PreallocatedStorage
v8threads.h 67 ThreadState* previous_; member in class:v8::internal::ThreadState
v8threads.cc 242 previous_(this),
253 next_->previous_ = previous_;
254 previous_->next_ = next_;
263 previous_ = flying_anchor;
265 next_->previous_ = this;
full-codegen.h 126 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_;
hydrogen-instructions.cc 547 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_ = this
    [all...]
isolate.cc 247 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);
    [all...]
parser.cc 60 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...]
bootstrapper.cc 150 Genesis* previous() { return previous_; }
163 Genesis* previous_; member in class:BASE_EMBEDDED
    [all...]
full-codegen.cc     [all...]
hydrogen-instructions.h 817 HInstruction* previous() const { return previous_; }
846 previous_(NULL),
862 HInstruction* previous_;
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc     [all...]
  /external/v8/src/mips/
full-codegen-mips.cc     [all...]
  /external/v8/src/x64/
full-codegen-x64.cc     [all...]

Completed in 1040 milliseconds