Searched refs:tail_ (Results 1 - 8 of 8) sorted by relevance

/external/v8/tools/
H A Dconsarray.js40 this.tail_ = new ConsArray.Cell(null, null);
41 this.currCell_ = this.tail_;
55 this.tail_.data = arr;
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
/external/chromium/net/disk_cache/
H A Dmem_rankings.h20 MemRankings() : head_(NULL), tail_(NULL) {}
38 MemEntryImpl* tail_; member in class:disk_cache::MemRankings
H A Dmem_rankings.cc13 DCHECK(!head_ && !tail_);
20 if (!tail_)
21 tail_ = node;
35 if (tail_ == node)
36 tail_ = prev;
62 return tail_;
/external/v8/src/
H A Dd8-debug.h60 head_(NULL), tail_(NULL) {}
91 RemoteDebuggerEvent* tail_; member in class:v8::RemoteDebugger
H A Dd8-debug.cc250 ASSERT(tail_ == NULL);
252 tail_ = event;
254 ASSERT(tail_ != NULL);
255 tail_->set_next(event);
256 tail_ = event;
268 ASSERT(tail_ == result);
269 tail_ = NULL;
H A Dlog.cc94 if (Succ(head_) == tail_) {
106 *sample = buffer_[tail_];
108 tail_ = Succ(tail_);
130 int tail_; // Index to the buffer tail. member in class:v8::internal::Profiler
273 tail_(0),
H A Dhydrogen-instructions.cc281 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
282 tail_ = tail_->tail_;
284 return tail_;
H A Dhydrogen-instructions.h454 : tail_(tail), value_(value), index_(index) {
461 void set_tail(HUseListNode* list) { tail_ = list; }
465 tail_ = reinterpret_cast<HUseListNode*>(1);
472 HUseListNode* tail_;

Completed in 100 milliseconds