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

  /external/chromium/net/disk_cache/
mem_rankings.h 20 MemRankings() : head_(NULL), tail_(NULL) {}
38 MemEntryImpl* tail_; member in class:disk_cache::MemRankings
mem_rankings.cc 13 DCHECK(!head_ && !tail_);
20 if (!tail_)
21 tail_ = node;
35 if (tail_ == node)
36 tail_ = prev;
62 return tail_;
  /external/v8/src/
d8-debug.h 60 head_(NULL), tail_(NULL) {}
91 RemoteDebuggerEvent* tail_; member in class:v8::RemoteDebugger
d8-debug.cc 250 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;
log.cc 94 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),
    [all...]
hydrogen-instructions.cc 281 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
282 tail_ = tail_->tail_;
284 return tail_;
    [all...]
hydrogen-instructions.h 454 : tail_(tail), value_(value), index_(index) {
461 void set_tail(HUseListNode* list) { tail_ = list; }
465 tail_ = reinterpret_cast<HUseListNode*>(1);
472 HUseListNode* tail_;
    [all...]
  /external/v8/tools/
consarray.js 40 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);

Completed in 164 milliseconds