HomeSort by relevance Sort by last modified time
    Searched refs:next_ (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /external/gtest/samples/
sample3-inl.h 57 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/libvpx/libvpx/third_party/googletest/src/samples/
sample3-inl.h 57 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/
sample3-inl.h 57 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_) {
  /sdk/emulator/qtools/
decoder.cpp 92 next_ = NULL;
134 next_ = buf_;
140 assert(next_ <= end_);
142 if (end_ - next_ < kDecodingSpace && end_ == &buf_[kBufSize]) {
145 int len = end_ - next_;
147 memcpy(buf_, next_, len);
163 next_ = buf_;
170 int nbytes = end_ - next_;
173 nbytes = end_ - next_;
179 memcpy(dest, next_, nbytes)
    [all...]
  /external/chromium/chrome/browser/policy/
configuration_policy_store_interface.cc 26 next_->Apply(policy, value);
36 next_->Apply(policy, value);
  /external/chromium/base/synchronization/
condition_variable_win.cc 173 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_->prev_ == this) && (prev_->next_ == this)
    [all...]
  /external/chromium_org/testing/gtest/samples/
sample3-inl.h 57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
123 last_->next_ = new_node;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample3-inl.h 57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
123 last_->next_ = new_node;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
  /external/chromium_org/v8/src/
scanner.h 355 Token::Value peek() const { return next_.token; }
357 Location peek_location() const { return next_.location; }
362 ASSERT_NOT_NULL(next_.literal_chars);
363 return next_.literal_chars->ascii_literal();
366 ASSERT_NOT_NULL(next_.literal_chars);
367 return next_.literal_chars->utf16_literal();
370 ASSERT_NOT_NULL(next_.literal_chars);
371 return next_.literal_chars->is_ascii();
374 ASSERT_NOT_NULL(next_.literal_chars);
375 return next_.literal_chars->is_contextual_keyword(keyword)
542 TokenDesc next_; \/\/ desc for next token (one token look-ahead) member in class:v8::internal::Scanner
    [all...]
d8-debug.h 130 : type_(type), data_(data), next_(NULL) {
142 void set_next(RemoteDebuggerEvent* event) { next_ = event; }
143 RemoteDebuggerEvent* next() { return next_; }
147 RemoteDebuggerEvent* next_; member in class:v8::RemoteDebuggerEvent
scanner.cc 226 current_ = next_;
233 next_.token = token;
234 next_.location.beg_pos = pos;
235 next_.location.end_pos = pos + 1;
355 next_.literal_chars = NULL;
359 next_.location.beg_pos = source_pos();
589 next_.location.end_pos = source_pos();
590 next_.token = token;
597 if (pos == next_.location.beg_pos) return;
599 ASSERT_EQ(next_.location.end_pos, current_pos)
    [all...]
v8threads.cc 246 next_(this),
263 next_->previous_ = previous_;
264 previous_->next_ = next_;
272 next_ = flying_anchor->next_;
274 flying_anchor->next_ = this;
275 next_->previous_ = this;
280 ThreadState* gotten = free_anchor_->next_;
297 if (next_ == thread_manager_->in_use_anchor_) return NULL
    [all...]
  /external/v8/src/
d8-debug.h 131 : 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
scanner.h 367 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_.literal_chars->length()
546 TokenDesc next_; \/\/ desc for next token (one token look-ahead) member in class:v8::internal::Scanner
    [all...]
scanner.cc 225 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_.location.end_pos, current_pos)
    [all...]
  /bionic/libc/bionic/
dirent.cpp 43 dirent* next_; member in struct:DIR
55 d->next_ = NULL;
89 d->next_ = d->buff_;
98 dirent* entry = d->next_;
99 d->next_ = reinterpret_cast<dirent*>(reinterpret_cast<char*>(entry) + entry->d_reclen);
  /art/compiler/dex/
arena_allocator.cc 48 next_(nullptr) {
86 free_arenas_ = free_arenas_->next_;
98 free_arenas_ = free_arenas_->next_;
112 arena->next_ = free_arenas_;
148 arena_head_ = arena_head_->next_;
156 new_arena->next_ = arena_head_;
169 for (Arena* arena = arena_head_; arena != nullptr; arena = arena->next_) {
  /external/chromium/third_party/libjingle/source/talk/base/
autodetectproxy.cc 42 : 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/chromium_org/base/synchronization/
condition_variable_win.cc 175 Event* next_; member in class:base::WinXPCondVar::Event
366 next_ = prev_ = this; // Self referencing circular.
404 other->next_ = this;
406 prev_->next_ = other;
414 return next_->Extract();
435 next_->prev_ = prev_;
436 prev_->next_ = next_;
438 prev_ = next_ = this;
447 return next_ == this
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
autodetectproxy.cc 49 : agent_(user_agent), resolver_(NULL), socket_(NULL), next_(0) {
100 int next = next_;
159 if (TEST_ORDER[next_] >= PROXY_UNKNOWN) {
226 switch (TEST_ORDER[next_]) {
245 LOG(LS_VERBOSE) << "AutoDetectProxy probing type " << TEST_ORDER[next_]
258 switch (TEST_ORDER[next_]) {
280 ++next_;
286 ++next_;
  /external/chromium_org/tools/memory_watcher/
call_stack.h 151 : next_(NULL), size_(size), CallStack() {}
160 AllocationStack* next_; // Pointer used when on the freelist. member in class:AllocationStack
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.cc 133 next_ = NULL;
294 ++i, next_memory_steal_ = next_memory_steal_->next_) {
307 next_memory_steal_ = next_memory_steal_->next_;
340 for (ThreadCache* h = thread_heaps_; h != NULL; h = h->next_) {
374 for (ThreadCache* h = thread_heaps_; h != NULL; h = h->next_) {
404 heap->next_ = thread_heaps_;
459 if (heap->next_ != NULL) heap->next_->prev_ = heap->prev_;
460 if (heap->prev_ != NULL) heap->prev_->next_ = heap->next_;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.cc 130 next_ = NULL;
288 ++i, next_memory_steal_ = next_memory_steal_->next_) {
301 next_memory_steal_ = next_memory_steal_->next_;
329 for (ThreadCache* h = thread_heaps_; h != NULL; h = h->next_) {
363 for (ThreadCache* h = thread_heaps_; h != NULL; h = h->next_) {
393 heap->next_ = thread_heaps_;
448 if (heap->next_ != NULL) heap->next_->prev_ = heap->prev_;
449 if (heap->prev_ != NULL) heap->prev_->next_ = heap->next_;
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_utils.cc 51 next_(NULL),
57 bool has_next() { return next_ != NULL;}
65 const GURL* next = next_;
75 next_ = &(*parent_)->url();
83 next_ = &child->url();
90 next_ = NULL;
94 const GURL* next_; member in class:chrome::__anon8438::OpenURLIterator
  /external/chromium_org/third_party/libwebp/enc/
token.c 39 VP8Tokens* next_; member in struct:VP8Tokens
56 const VP8Tokens* const next = p->next_;
71 b->last_page_ = &page->next_;
74 page->next_ = NULL;
199 const int N = (p->next_ == NULL) ? b->left_ : 0;
207 p = p->next_;
222 const VP8Tokens* const next = p->next_;

Completed in 3710 milliseconds

12 3 4 5 6 7