Searched refs:next_ (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium/base/
H A Dlinked_list.h86 LinkNode() : previous_(0), next_(0) {}
88 : previous_(previous), next_(next) {}
92 this->next_ = e;
94 e->previous_->next_ = this;
100 this->next_ = e->next_;
102 e->next_->previous_ = this;
103 e->next_ = this;
108 this->previous_->next_ = this->next_;
138 LinkNode<T>* next_; member in class:base::LinkNode
[all...]
/external/v8/src/
H A Dallocation.cc105 next_ = other->next_;
106 other->next_->previous_ = this;
108 other->next_ = this;
113 next_->previous_ = previous_;
114 previous_->next_ = next_;
120 previous_ = next_ = this;
H A Dd8-debug.h131 : type_(type), data_(data), next_(NULL) {
143 void set_next(RemoteDebuggerEvent* event) { next_ = event; }
144 RemoteDebuggerEvent* next() { return next_; }
148 RemoteDebuggerEvent* next_; member in class:v8::RemoteDebuggerEvent
H A Dscanner.h367 Token::Value peek() const { return next_.token; }
369 Location peek_location() const { return next_.location; }
374 ASSERT_NOT_NULL(next_.literal_chars);
375 return next_.literal_chars->ascii_literal();
378 ASSERT_NOT_NULL(next_.literal_chars);
379 return next_.literal_chars->utf16_literal();
382 ASSERT_NOT_NULL(next_.literal_chars);
383 return next_.literal_chars->is_ascii();
386 ASSERT_NOT_NULL(next_.literal_chars);
387 return next_
546 TokenDesc next_; // desc for next token (one token look-ahead) member in class:v8::internal::Scanner
[all...]
H A Dscanner.cc225 current_ = next_;
232 next_.token = token;
233 next_.location.beg_pos = pos;
234 next_.location.end_pos = pos + 1;
354 next_.literal_chars = NULL;
358 next_.location.beg_pos = source_pos();
588 next_.location.end_pos = source_pos();
589 next_.token = token;
596 if (pos == next_.location.beg_pos) return;
598 ASSERT_EQ(next_
[all...]
H A Dzone.cc46 next_ = next;
50 Segment* next() const { return next_; }
51 void clear_next() { next_ = NULL; }
65 Segment* next_; member in class:v8::internal::Segment
H A Dv8threads.cc241 next_(this),
253 next_->previous_ = previous_;
254 previous_->next_ = next_;
262 next_ = flying_anchor->next_;
264 flying_anchor->next_ = this;
265 next_->previous_ = this;
270 ThreadState* gotten = free_anchor_->next_;
287 if (next_
[all...]
H A Ddateparser.h261 : in_(in), next_(Scan()) { }
263 DateToken result = next_;
264 next_ = Scan();
269 return next_;
272 if (next_.IsSymbol(symbol)) {
273 next_ = Scan();
283 DateToken next_; member in class:v8::internal::DateParser::DateStringTokenizer
H A Dlithium-allocator.h209 : start_(start), end_(end), next_(NULL) {
215 UseInterval* next() const { return next_; }
235 void set_next(UseInterval* next) { next_ = next; }
239 UseInterval* next_; member in class:v8::internal::UseInterval
259 UsePosition* next() const { return next_; }
262 void set_next(UsePosition* next) { next_ = next; }
267 UsePosition* next_; member in class:v8::internal::UsePosition
286 LiveRange* next() const { return next_; }
393 LiveRange* next_; member in class:v8::internal::LiveRange
/external/chromium/base/memory/
H A Dlinked_ptr.h54 next_ = this;
59 next_ = ptr->next_;
60 ptr->next_ = this;
66 if (next_ == this) return true;
67 linked_ptr_internal const* p = next_;
68 while (p->next_ != this) p = p->next_;
69 p->next_ = next_;
74 mutable linked_ptr_internal const* next_; member in class:linked_ptr_internal
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dmap_no_stl.cc18 : next_(0),
87 while(item->next_)
95 new_item->next_ = item;
104 new_item->prev_->next_ = new_item;
108 item = item->next_;
111 item->next_ = new_item;
133 return item->next_;
182 item = item->next_;
195 MapNoStlItem* next_item = item->next_;
203 previous_item->next_
[all...]
H A Dlist_no_stl.cc18 : next_(0),
26 : next_(0),
137 return item->next_;
168 ListItem* next_item = existing_previous_item->next_;
169 new_item->next_ = existing_previous_item->next_;
171 existing_previous_item->next_ = new_item;
206 new_item->next_ = existing_next_item;
211 previous_item->next_ = new_item;
229 ListItem* next_item = item->next_;
[all...]
H A Dmap_no_stl.h32 MapNoStlItem* next_; member in class:webrtc::MapNoStlItem
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface.cc26 next_->Apply(policy, value);
36 next_->Apply(policy, value);
H A Dconfiguration_policy_store_interface.h59 : next_(next),
70 ConfigurationPolicyStoreInterface* next_; member in class:policy::ObservingPolicyStoreInterface
82 : next_(next),
89 ConfigurationPolicyStoreInterface* next_; member in class:policy::FilteringPolicyStoreInterface
/external/chromium/base/synchronization/
H A Dcondition_variable_win.cc173 next_ = prev_ = this; // Self referencing circular.
211 other->next_ = this;
213 prev_->next_ = other;
221 return next_->Extract();
242 next_->prev_ = prev_;
243 prev_->next_ = next_;
245 prev_ = next_ = this;
254 return next_ == this;
274 return (next_
[all...]
/external/chromium/testing/gtest/samples/
H A Dsample3-inl.h57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
124 last_->next_ = new_node;
138 head_ = head_->next_;
156 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
/external/gtest/samples/
H A Dsample3-inl.h57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
124 last_->next_ = new_node;
138 head_ = head_->next_;
156 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
/external/protobuf/gtest/samples/
H A Dsample3-inl.h57 QueueNode * next() { return next_; }
58 const QueueNode * next() const { return next_; }
63 QueueNode(const E & element) : element_(element), next_(NULL) {}
70 QueueNode * next_; member in class:QueueNode
124 last_->next_ = new_node;
138 head_ = head_->next_;
156 for (const QueueNode<E> * node = head_; node != NULL; node = node->next_) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dautodetectproxy.cc42 : agent_(user_agent), socket_(NULL), next_(0) {
83 if (TEST_ORDER[next_] >= PROXY_UNKNOWN) {
123 switch (TEST_ORDER[next_]) {
142 LOG(LS_VERBOSE) << "AutoDetectProxy probing type " << TEST_ORDER[next_]
155 switch (TEST_ORDER[next_]) {
177 ++next_;
183 ++next_;
/external/valgrind/tsan/
H A Dsuppressions.cc65 : buffer_(str), next_(buffer_.c_str()),
74 bool Eof() { return next_ >= end_; }
86 const char* next_; member in class:Parser
119 const char* first = next_;
120 while (!Eof() && *next_ != '\n') {
121 ++next_;
123 string line(first, next_ - first);
124 if (*next_ == '\n') {
125 ++next_;

Completed in 348 milliseconds

123