Searched refs:next_ (Results 1 - 25 of 70) 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.cc104 next_ = other->next_;
105 other->next_->previous_ = this;
107 other->next_ = this;
112 next_->previous_ = previous_;
113 previous_->next_ = next_;
119 previous_ = next_ = this;
H A Dscanner-base.cc104 current_ = next_;
220 next_.literal_chars = NULL;
224 next_.location.beg_pos = source_pos();
454 next_.location.end_pos = source_pos();
455 next_.token = token;
462 if (pos == next_.location.beg_pos) return;
464 ASSERT_EQ(next_.location.end_pos, current_pos);
589 octal_pos_ = next_.location.beg_pos;
709 next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1);
710 next_
[all...]
H A Dd8-debug.h132 : type_(type), data_(data), next_(NULL) {
144 void set_next(RemoteDebuggerEvent* event) { next_ = event; }
145 RemoteDebuggerEvent* next() { return next_; }
149 RemoteDebuggerEvent* next_; member in class:v8::RemoteDebuggerEvent
H A Dzone.cc63 Segment* next() const { return next_; }
64 void clear_next() { next_ = NULL; }
78 Segment* next_; member in class:v8::internal::Segment
91 result->next_ = segment_head_;
H A Dscanner-base.h280 Token::Value peek() const { return next_.token; }
301 Location peek_location() const { return next_.location; }
333 ASSERT_NOT_NULL(next_.literal_chars);
334 return next_.literal_chars->is_ascii();
337 ASSERT_NOT_NULL(next_.literal_chars);
338 return next_.literal_chars->ascii_literal();
341 ASSERT_NOT_NULL(next_.literal_chars);
342 return next_.literal_chars->uc16_literal();
345 ASSERT_NOT_NULL(next_.literal_chars);
346 return next_
436 TokenDesc next_; // desc for next token (one token look-ahead) member in class:v8::internal::Scanner
[all...]
H A Dv8threads.cc229 next_(this),
241 next_->previous_ = previous_;
242 previous_->next_ = next_;
250 next_ = flying_anchor->next_;
252 flying_anchor->next_ = this;
253 next_->previous_ = this;
258 ThreadState* gotten = free_anchor_->next_;
275 if (next_
[all...]
H A Dglobal-handles.cc63 next_ = NULL;
71 next_ = NULL;
86 // Accessors for next_.
87 Node* next() { return next_; }
88 void set_next(Node* value) { next_ = value; }
89 Node** next_addr() { return &next_; }
236 Node* next_; member in class:v8::internal::GlobalHandles::Node
248 next_ = current_->nodes;
259 if (next_ < limit_) {
260 return next_
296 Node* next_; member in class:v8::internal::GlobalHandles::Pool
[all...]
H A Disolate.cc188 ASSERT(free_list_.next_ == &free_list_);
192 free_list_.next_ = free_list_.previous_ = free_chunk;
193 free_chunk->next_ = free_chunk->previous_ = &free_list_;
203 ASSERT(free_list_.next_ != &free_list_);
208 for (PreallocatedStorage* storage = free_list_.next_;
210 storage = storage->next_) {
218 for (PreallocatedStorage* storage = free_list_.next_;
220 storage = storage->next_) {
251 ASSERT(storage->next_->previous_ == storage);
252 ASSERT(storage->previous_->next_
[all...]
/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 & 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/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 408 milliseconds

123