HomeSort by relevance Sort by last modified time
    Searched refs:tail_ (Results 1 - 18 of 18) 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/marisa-trie/lib/marisa/
trie.cc 10 trie_(), tail_(), num_first_branches_(0), num_keys_(0) {}
33 temp.tail_.map(mapper);
74 temp.tail_.read(reader);
114 tail_.write(writer);
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_);
156 tail_.swap(&rhs->tail_);
trie-search.cc 286 if (tail_.mode() == MARISA_BINARY_TAIL) {
289 key->append(reinterpret_cast<const char *>(tail_[offset]), length);
291 key->append(reinterpret_cast<const char *>(tail_[offset]));
348 if (tail_.mode() == MARISA_BINARY_TAIL) {
349 const UInt8 *ptr = tail_[offset];
359 for (const UInt8 *str = tail_[offset]; *str != '\0'; ++str) {
434 const UInt8 *ptr = tail_[offset];
437 } else if (tail_.mode() == MARISA_BINARY_TAIL) {
714 const UInt8 *ptr = tail_[offset];
717 } else if (tail_.mode() == MARISA_BINARY_TAIL)
    [all...]
trie-build.cc 131 progress.test_total_size(tail_.total_size());
140 } else if (tail_.mode() == MARISA_BINARY_TAIL) {
151 if (has_trie() || (tail_.mode() == MARISA_TEXT_TAIL)) {
160 progress.test_total_size(tail_.total_size());
268 tail_.build(strs, terminals, progress.tail());
291 tail_.build(strs, terminals, progress.tail());
trie-inline.h 346 return !tail_.empty();
trie.h 202 Tail tail_; member in class:marisa::Trie
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.cc 10 trie_(), tail_(), num_first_branches_(0), num_keys_(0) {}
33 temp.tail_.map(mapper);
74 temp.tail_.read(reader);
114 tail_.write(writer);
141 + tail_.total_size() + sizeof(num_first_branches_) + sizeof(num_keys_);
156 tail_.swap(&rhs->tail_);
trie-build.cc 140 progress.test_total_size(tail_.total_size());
149 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) {
160 if (has_trie() || (tail_.mode() == MARISA_ALPHA_TEXT_TAIL)) {
169 progress.test_total_size(tail_.total_size());
282 tail_.build(strs, terminals, progress.tail());
305 tail_.build(strs, terminals, progress.tail());
trie-search.cc 305 if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) {
308 key->append(reinterpret_cast<const char *>(tail_[offset]), length);
310 key->append(reinterpret_cast<const char *>(tail_[offset]));
367 if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) {
368 const UInt8 *ptr = tail_[offset];
378 for (const UInt8 *str = tail_[offset]; *str != '\0'; ++str) {
453 const UInt8 *ptr = tail_[offset];
456 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL) {
745 const UInt8 *ptr = tail_[offset];
748 } else if (tail_.mode() == MARISA_ALPHA_BINARY_TAIL)
    [all...]
trie-inline.h 355 return !tail_.empty();
trie.h 202 Tail tail_; member in class:marisa_alpha::Trie
  /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 276 milliseconds