Searched defs:first_ (Results 1 - 22 of 22) sorted by relevance

/external/v8/src/
H A Dunbound-queue.h59 Node* first_; member in class:v8::internal::BASE_EMBEDDED
H A Dliveobjectlist.h211 static LiveObjectList* first_; member in class:v8::internal::LiveObjectList
H A Dd8.h136 static LineEditor* first_; member in class:v8::LineEditor
H A Dd8.cc69 LineEditor *LineEditor::first_ = NULL; member in class:v8::LineEditor
75 next_(first_) {
76 first_ = this;
81 LineEditor* current = first_;
H A Dliveobjectlist.cc684 older_->next_ : LiveObjectList::first_;
922 LiveObjectList* LiveObjectList::first_ = NULL; member in class:v8::internal::LiveObjectList
1140 first_ = lol;
1215 first_ = lol->next_;
1555 LiveObjectList* lol = first_;
1636 first_ = NULL;
H A Dhydrogen.h64 HInstruction* first() const { return first_; }
176 HInstruction* first_; member in class:v8::internal::HBasicBlock
H A Djsregexp.h344 OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
361 : first_(first), remaining_(remaining), successors_(NULL) { }
362 uint32_t first_; member in class:v8::internal::OutSet
H A Djsregexp.cc3328 : first_(true), stream_(stream) { }
3330 if (first_) {
3331 first_ = false;
3349 bool first_; member in class:v8::internal::TableEntryHeaderPrinter
3358 : out_(out), first_(true) { }
3360 if (first_) {
3361 first_ = false;
3378 bool first_; member in class:v8::internal::AttributePrinter
4697 OutSet* result = new OutSet(first_, remaining_);
4706 first_ |
[all...]
/external/chromium/chrome/browser/autofill/
H A Dcontact_info.h43 const string16& first() const { return first_; }
71 // Sets |first_| to |first| and |first_tokens_| to the set of tokens in
83 // Sets |first_|, |middle_|, |last_| and |*_tokens_| to the tokenized
92 string16 first_; member in class:NameInfo
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h101 ListItem* first_; member in class:webrtc::ListWrapper
/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.h72 ListNoStlItem* first_; member in class:webrtc::ListNoStl
H A Dmap_no_stl.h63 MapNoStlItem* first_; member in class:webrtc::MapNoStl
/external/v8/test/cctest/
H A Dcctest.cc125 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; member in class:RegisterThreadedTest
H A Dcctest.h140 prev_ = first_;
141 first_ = this;
147 RegisterThreadedTest* current = first_;
159 static RegisterThreadedTest* first_; member in class:RegisterThreadedTest
/external/compiler-rt/lib/asan/
H A Dasan_allocator.h35 first_ = last_ = NULL;
39 AsanChunk *first_; member in class:__asan::AsanChunkFifoList
72 FakeFrame *first_, *last_; member in struct:__asan::FakeFrameFifo
/external/openfst/src/include/fst/
H A Dbi-table.h358 ErasableBiTable() : first_(0) {}
364 id_ref = id2entry_.size() + first_;
369 const T &FindEntry(I s) const { return id2entry_[s - first_]; }
374 T &entry = id2entry_[s - first_];
378 id2entry_[s - first_] = empty_entry_;
381 ++first_;
389 I first_; // I of first element in the deque; member in class:fst::ErasableBiTable
H A Dsparse-tuple-weight.h113 ReadType(strm, &first_);
119 WriteType(strm, first_);
173 first_.first = kNoKey;
180 if (first_.first == kNoKey)
192 if (first_.first == kNoKey) {
193 first_ = p;
215 // Key values pairs are first stored in first_, then fill rest_
218 Pair first_; member in class:fst::SparseTupleWeight
233 : first_(w.first_), rest
258 const Pair &first_; member in class:fst::SparseTupleWeightIterator
[all...]
H A Dstring-weight.h137 void Init() { first_ = 0; }
140 void Clear() { first_ = 0; rest_.clear(); }
142 size_t Size() const { return first_ ? rest_.size() + 1 : 0; }
145 if (first_)
146 rest_.push_front(first_);
147 first_ = l;
151 if (!first_)
152 first_ = l;
158 L first_; // first label in string (0 if empty) member in class:fst::StringWeight
168 : first_(
189 const L &first_; member in class:fst::StringWeightIterator
221 const L &first_; member in class:fst::StringWeightReverseIterator
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstring-weight.h129 void Init() { first_ = 0; }
132 void Clear() { first_ = 0; rest_.clear(); }
134 Label Size() const { return first_ ? rest_.size() + 1 : 0; }
137 if (first_)
138 rest_.push_front(first_);
139 first_ = l;
143 if (!first_)
144 first_ = l;
150 L first_; // first label in string (0 if empty) member in class:fst::StringWeight
160 : first_(
181 const L &first_; member in class:fst::StringWeightIterator
213 const L &first_; member in class:fst::StringWeightReverseIterator
[all...]
/external/chromium/base/
H A Dtracked_objects.h103 // one. A static member of ThreadData provides a pointer to the first_ item on
104 // this global list, and access to that first_ item requires the use of a lock_.
578 static ThreadData* first_; member in class:tracked_objects::ThreadData
579 // Protection for access to first_.
H A Dtracked_objects.cc86 ThreadData* ThreadData::first_ = NULL; member in class:tracked_objects::ThreadData
120 registry->next_ = first_;
121 first_ = registry;
315 return first_;
508 thread_data_list = first_;
509 first_ = NULL;
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h2528 first_(first), count_(count) {}
2536 return MakeMatcher(new ElementsAreMatcherImpl<Container>(first_, count_));
2540 const T* const first_; member in class:testing::internal::ElementsAreArrayMatcher

Completed in 501 milliseconds