Searched defs:previous_ (Results 1 - 6 of 6) 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.h128 PreallocatedStorage* previous_; member in class:v8::internal::PreallocatedStorage
H A Dv8threads.h67 ThreadState* previous_; member in class:v8::internal::ThreadState
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 Dbootstrapper.cc150 Genesis* previous() { return previous_; }
163 Genesis* previous_; member in class:BASE_EMBEDDED
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...]

Completed in 891 milliseconds