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

12

/external/chromium_org/v8/src/
H A Dunbound-queue.h59 Node* first_; member in class:v8::internal::BASE_EMBEDDED
H A Dstring-stream.h202 first_ = true;
206 if (first_) {
207 first_ = false;
215 bool first_; member in class:v8::internal::SimpleListPrinter
/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
/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/chromium_org/components/autofill/core/browser/
H A Dcontact_info.h44 const base::string16& first() const { return first_; }
48 // Sets |first_|, |middle_|, and |last_| to the tokenized |full|.
52 base::string16 first_; member in class:autofill::NameInfo
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dhybriddataengine.h46 : first_(first),
48 codecs_ = first_->data_codecs();
57 if (first_) {
58 channel = first_->CreateChannel(data_channel_type);
69 talk_base::scoped_ptr<DataEngineInterface> first_; member in class:cricket::HybridDataEngine
/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h30 first_ = last_ = 0;
40 first_ = last_ = x;
53 first_ = last_ = x;
56 x->next = first_;
57 first_ = x;
64 first_ = first_->next;
65 if (first_ == 0)
70 Item *front() { return first_; }
80 l->last_->next = first_;
118 Item *first_; member in struct:__sanitizer::IntrusiveList
[all...]
/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/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32toolhelp.h40 : snapshot_(snapshot), broken_(false), first_(true) {
62 if (first_) {
64 first_ = false;
101 bool first_; member in class:talk_base::ToolhelpEnumeratorBase
/external/chromium_org/v8/test/cctest/
H A Dcctest.cc170 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; member in class:RegisterThreadedTest
H A Dcctest.h177 prev_ = first_;
178 first_ = this;
184 RegisterThreadedTest* current = first_;
196 static RegisterThreadedTest* first_; member in class:RegisterThreadedTest
/external/compiler-rt/lib/asan/
H A Dasan_fake_stack.h37 FakeFrame *first_, *last_; member in struct:__asan::FakeFrameFifo
/external/openfst/src/include/fst/
H A Dbi-table.h489 ErasableBiTable() : first_(0) {}
496 id_ref = id2entry_.size() + first_;
504 const T &FindEntry(I s) const { return id2entry_[s - first_]; }
509 T &entry = id2entry_[s - first_];
513 id2entry_[s - first_] = empty_entry_;
516 ++first_;
524 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_org/chromeos/dbus/
H A Dshill_manager_client_stub.cc31 explicit ValueEquals(const base::Value* first) : first_(first) {}
33 return first_->Equals(second);
35 const base::Value* first_; member in struct:chromeos::__anon7266::ValueEquals

Completed in 680 milliseconds

12