Home
last modified time | relevance | path

Searched refs:first_ (Results 1 – 25 of 31) sorted by relevance

12

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h30 first_ = last_ = 0; in clear()
40 first_ = last_ = x; in push_back()
53 first_ = last_ = x; in push_front()
56 x->next = first_; in push_front()
57 first_ = x; in push_front()
64 first_ = first_->next; in pop_front()
65 if (first_ == 0) in pop_front()
70 Item *front() { return first_; } in front()
80 l->last_->next = first_; in append_front()
81 first_ = l->first_; in append_front()
[all …]
/external/webrtc/src/system_wrappers/source/
Dlist_no_stl.cc49 first_(0), in ListWrapper()
71 return !first_ && !last_; in Empty()
113 return Erase(first_); in PopFront()
123 return first_; in First()
215 first_ = new_item; in InsertBefore()
236 first_ = next_item; in Erase()
262 first_ = item; in PushBackImpl()
278 first_ = item; in PushFrontImpl()
284 item->next_ = first_; in PushFrontImpl()
285 first_->prev_ = item; in PushFrontImpl()
[all …]
Dmap_no_stl.cc51 first_(0), in MapNoStl()
79 MapNoStlItem* item = first_; in Insert()
83 first_ = new_item; in Insert()
97 if (item == first_) in Insert()
99 first_ = new_item; in Insert()
119 return first_; in First()
175 MapNoStlItem* item = first_; in Locate()
199 first_ = next_item; in Remove()
Dmap_no_stl.h63 MapNoStlItem* first_; variable
Dlist_no_stl.h72 ListNoStlItem* first_; variable
/external/compiler-rt/lib/asan/
Dasan_fake_stack.cc57 if (first_ == 0 && last_ == 0) { in FifoPush()
58 first_ = last_ = node; in FifoPush()
60 CHECK(first_); in FifoPush()
68 CHECK(first_ && last_ && "Exhausted fake stack"); in FifoPop()
70 if (first_ == last_) { in FifoPop()
71 res = first_; in FifoPop()
72 first_ = last_ = 0; in FifoPop()
74 res = first_; in FifoPop()
75 first_ = first_->next; in FifoPop()
Dasan_allocator.h136 FakeFrame *first_, *last_;
/external/v8/src/
Dunbound-queue-inl.h49 first_ = new Node(Record());
50 divider_ = last_ = reinterpret_cast<AtomicWord>(first_);
56 while (first_ != NULL) DeleteFirst();
62 Node* tmp = first_;
63 first_ = tmp->next;
82 while (first_ != reinterpret_cast<Node*>(divider_)) DeleteFirst();
Dunbound-queue.h59 Node* first_; variable
Dliveobjectlist.h211 static LiveObjectList* first_; variable
Dliveobjectlist.cc684 older_->next_ : LiveObjectList::first_; in Write()
922 LiveObjectList* LiveObjectList::first_ = NULL; member in v8::internal::LiveObjectList
1140 first_ = lol; in Capture()
1215 first_ = lol->next_; in Delete()
1555 LiveObjectList* lol = first_; in Info()
1636 first_ = NULL; in Reset()
Dd8.cc69 LineEditor *LineEditor::first_ = NULL; member in v8::LineEditor
75 next_(first_) { in LineEditor()
76 first_ = this; in LineEditor()
81 LineEditor* current = first_; in Get()
Djsregexp.cc3328 : first_(true), stream_(stream) { } in TableEntryHeaderPrinter()
3330 if (first_) { in Call()
3331 first_ = false; in Call()
3349 bool first_; member in v8::internal::TableEntryHeaderPrinter
3358 : out_(out), first_(true) { } in AttributePrinter()
3360 if (first_) { in PrintSeparator()
3361 first_ = false; in PrintSeparator()
3378 bool first_; member in v8::internal::AttributePrinter
4697 OutSet* result = new OutSet(first_, remaining_); in Extend()
4706 first_ |= (1 << value); in Set()
[all …]
Dd8.h136 static LineEditor* first_; variable
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dstring-weight.h129 void Init() { first_ = 0; } in Init()
132 void Clear() { first_ = 0; rest_.clear(); } in Clear()
134 Label Size() const { return first_ ? rest_.size() + 1 : 0; } in Size()
137 if (first_) in PushFront()
138 rest_.push_front(first_); in PushFront()
139 first_ = l; in PushFront()
143 if (!first_) in PushBack()
144 first_ = l; in PushBack()
150 L first_; // first label in string (0 if empty)
160 : first_(w.first_), rest_(w.rest_), init_(true), in StringWeightIterator()
[all …]
/external/openfst/src/include/fst/
Dstring-weight.h137 void Init() { first_ = 0; } in Init()
140 void Clear() { first_ = 0; rest_.clear(); } in Clear()
142 size_t Size() const { return first_ ? rest_.size() + 1 : 0; } in Size()
145 if (first_) in PushFront()
146 rest_.push_front(first_); in PushFront()
147 first_ = l; in PushFront()
151 if (!first_) in PushBack()
152 first_ = l; in PushBack()
158 L first_; // first label in string (0 if empty)
168 : first_(w.first_), rest_(w.rest_), init_(true), in StringWeightIterator()
[all …]
Dsparse-tuple-weight.h113 ReadType(strm, &first_); in Read()
119 WriteType(strm, first_); in Write()
173 first_.first = kNoKey; in Init()
180 if (first_.first == kNoKey) in Size()
192 if (first_.first == kNoKey) {
193 first_ = p;
218 Pair first_; variable
233 : first_(w.first_), rest_(w.rest_), init_(true), in SparseTupleWeightIterator()
238 return first_.first == SparseTupleWeight<W, K>::kNoKey; in Done()
243 const Pair& Value() const { return init_ ? first_ : *iter_; } in Value()
[all …]
Dbi-table.h489 ErasableBiTable() : first_(0) {} in ErasableBiTable()
496 id_ref = id2entry_.size() + first_;
504 const T &FindEntry(I s) const { return id2entry_[s - first_]; } in FindEntry()
509 T &entry = id2entry_[s - first_]; in Erase()
513 id2entry_[s - first_] = empty_entry_; in Erase()
516 ++first_; in Erase()
524 I first_; // I of first element in the deque; variable
/external/v8/test/cctest/
Dcctest.h140 prev_ = first_; in RegisterThreadedTest()
141 first_ = this; in RegisterThreadedTest()
147 RegisterThreadedTest* current = first_; in nth()
159 static RegisterThreadedTest* first_;
Dcctest.cc125 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; member in RegisterThreadedTest
/external/chromium/chrome/browser/autofill/
Dcontact_info.cc44 first_ = info.first_; in operator =()
123 if (first_.empty()) in FullName()
127 full_name.push_back(first_); in FullName()
276 first_ = first; in SetFirst()
Dcontact_info.h43 const string16& first() const { return first_; } in first()
92 string16 first_; variable
/external/chromium/base/
Dtracked_objects.cc86 ThreadData* ThreadData::first_ = NULL; member in tracked_objects::ThreadData
120 registry->next_ = first_; in current()
121 first_ = registry; in current()
315 return first_; in first()
508 thread_data_list = first_; in ShutdownSingleThreadedCleanup()
509 first_ = NULL; in ShutdownSingleThreadedCleanup()
Dtracked_objects.h578 static ThreadData* first_; variable
/external/webrtc/src/system_wrappers/interface/
Dlist_wrapper.h101 ListItem* first_; variable

12