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

  /external/chromium/net/disk_cache/
mem_rankings.h 19 MemRankings() : head_(NULL), tail_(NULL) {}
37 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.cc 234 ASSERT(tail_ == NULL);
236 tail_ = event;
238 ASSERT(tail_ != NULL);
239 tail_->set_next(event);
240 tail_ = event;
252 ASSERT(tail_ == result);
253 tail_ = NULL;
d8-debug.h 60 head_(NULL), tail_(NULL) {}
91 RemoteDebuggerEvent* tail_; member in class:v8::RemoteDebugger
log.cc 90 if (Succ(head_) == tail_) {
102 *sample = buffer_[tail_];
104 tail_ = Succ(tail_);
125 int tail_; // Index to the buffer tail. member in class:v8::internal::Profiler
262 tail_(0),
    [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 1894 milliseconds