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

12 3 4 5 6

  /external/chromium_org/device/hid/
hid_report_descriptor_item.cc 27 : previous_(previous), next_(NULL), parent_(NULL), shortData_(0) {
41 DCHECK(!previous->next_);
42 previous->next_ = this;
  /external/chromium_org/v8/src/
hydrogen-load-elimination.cc 24 HFieldApproximation* next_; member in class:v8::internal::HFieldApproximation
31 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone);
176 prev->next_ = approx->next_;
178 fields_[i] = approx->next_;
180 approx = approx->next_;
184 approx = approx->next_;
312 approx = approx->next_;
    [all...]
v8threads.cc 186 next_(this),
203 next_->previous_ = previous_;
204 previous_->next_ = next_;
212 next_ = flying_anchor->next_;
214 flying_anchor->next_ = this;
215 next_->previous_ = this;
220 ThreadState* gotten = free_anchor_->next_;
237 if (next_ == thread_manager_->in_use_anchor_) return NULL
    [all...]
scanner.h 357 Token::Value peek() const { return next_.token; }
359 Location peek_location() const { return next_.location; }
375 ASSERT_NOT_NULL(next_.literal_chars);
376 return next_.literal_chars->is_contextual_keyword(keyword);
480 next_.literal_chars = free_buffer;
484 ASSERT_NOT_NULL(next_.literal_chars);
485 next_.literal_chars->AddChar(c);
496 next_.literal_chars = NULL;
551 ASSERT_NOT_NULL(next_.literal_chars);
552 return next_.literal_chars->one_byte_literal()
609 TokenDesc next_; \/\/ desc for next token (one token look-ahead) member in class:v8::internal::Scanner
    [all...]
scanner.cc 209 current_ = next_;
216 next_.token = token;
217 next_.location.beg_pos = pos;
218 next_.location.end_pos = pos + 1;
339 next_.literal_chars = NULL;
343 next_.location.beg_pos = source_pos();
573 next_.location.end_pos = source_pos();
574 next_.token = token;
581 if (pos == next_.location.beg_pos) return;
583 ASSERT_EQ(next_.location.end_pos, current_pos)
    [all...]
zone.cc 23 next_ = next;
27 Segment* next() const { return next_; }
28 void clear_next() { next_ = NULL; }
42 Segment* next_; member in class:v8::internal::Segment
  /bionic/libc/bionic/
dirent.cpp 45 dirent* next_; member in struct:DIR
57 d->next_ = NULL;
91 d->next_ = d->buff_;
100 dirent* entry = d->next_;
101 d->next_ = reinterpret_cast<dirent*>(reinterpret_cast<char*>(entry) + entry->d_reclen);
  /external/chromium_org/v8/src/platform/
condition-variable.cc 135 Event* next_;
146 freelist_ = event->next_;
158 freelist_ = event->next_;
167 for (Event* we = waitlist_; we != NULL; we = we->next_) {
173 event->next_ = waitlist_;
184 for (Event** wep = &waitlist_;; wep = &(*wep)->next_) {
187 *wep = event->next_;
194 for (Event* fe = freelist_; fe != NULL; fe = fe->next_) {
205 event->next_ = freelist_;
232 event = event->next_) {
    [all...]
  /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...]
  /art/compiler/utils/
arena_allocator.cc 88 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) {
117 next_(nullptr) {
158 free_arenas_ = free_arenas_->next_;
170 free_arenas_ = free_arenas_->next_;
182 for (Arena* arena = first; arena != nullptr; arena = arena->next_) {
188 while (last->next_ != nullptr) {
189 last = last->next_;
193 last->next_ = free_arenas_;
248 new_arena->next_ = arena_head_;
  /external/jsoncpp/src/test_lib_json/
jsontest.cpp 84 rootPredicateNode_.next_ = 0;
101 PredicateContext *lastNode = rootPredicateNode_.next_;
102 for ( ; lastNode != 0; lastNode = lastNode->next_ )
143 while ( lastNode->next_ != 0 && lastNode->next_->next_ != 0 )
145 lastNode = lastNode->next_;
148 PredicateContext *tail = lastNode->next_;
155 lastNode->next_ = 0;
172 while ( lastNode->next_ != 0
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
autodetectproxy.cc 49 : agent_(user_agent), resolver_(NULL), socket_(NULL), next_(0) {
103 int next = next_;
164 if (TEST_ORDER[next_] >= PROXY_UNKNOWN) {
235 switch (TEST_ORDER[next_]) {
254 LOG(LS_VERBOSE) << "AutoDetectProxy probing type " << TEST_ORDER[next_]
267 switch (TEST_ORDER[next_]) {
289 ++next_;
295 ++next_;
  /external/chromium_org/third_party/libwebp/enc/
token.c 37 VP8Tokens* next_; // pointer to next page member in struct:VP8Tokens
39 // Token data is located in memory just after the next_ field.
58 const VP8Tokens* const next = p->next_;
76 page->next_ = NULL;
79 b->last_page_ = &page->next_;
206 const int N = (p->next_ == NULL) ? b->left_ : 0;
215 p = p->next_;
230 const VP8Tokens* const next = p->next_;
256 const VP8Tokens* const next = p->next_;
  /external/chromium_org/third_party/webrtc/base/
autodetectproxy.cc 32 : agent_(user_agent), resolver_(NULL), socket_(NULL), next_(0) {
86 int next = next_;
147 if (TEST_ORDER[next_] >= PROXY_UNKNOWN) {
218 switch (TEST_ORDER[next_]) {
237 LOG(LS_VERBOSE) << "AutoDetectProxy probing type " << TEST_ORDER[next_]
250 switch (TEST_ORDER[next_]) {
272 ++next_;
278 ++next_;
  /external/vixl/test/
cctest.h 46 Cctest* next() { return next_; }
69 Cctest* next_; member in class:vixl::Cctest
  /external/webp/src/enc/
token.c 37 VP8Tokens* next_; // pointer to next page member in struct:VP8Tokens
39 // Token data is located in memory just after the next_ field.
58 const VP8Tokens* const next = p->next_;
76 page->next_ = NULL;
79 b->last_page_ = &page->next_;
206 const int N = (p->next_ == NULL) ? b->left_ : 0;
215 p = p->next_;
230 const VP8Tokens* const next = p->next_;
256 const VP8Tokens* const next = p->next_;
  /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/third_party/libwebp/utils/
utils.c 61 MemBlock* next_; member in struct:MemBlock
82 all_blocks = b->next_;
117 b->next_ = all_blocks;
139 while (*b != NULL && (*b)->ptr_ != ptr) b = &(*b)->next_;
146 *b = block->next_;
  /external/webp/src/utils/
utils.c 61 MemBlock* next_; member in struct:MemBlock
82 all_blocks = b->next_;
117 b->next_ = all_blocks;
139 while (*b != NULL && (*b)->ptr_ != ptr) b = &(*b)->next_;
146 *b = block->next_;
  /external/chromium_org/net/disk_cache/memory/
mem_entry_impl.h 66 return next_;
74 next_ = next;
168 MemEntryImpl* next_; // Pointers for the LRU list. member in class:disk_cache::MemEntryImpl
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 31 ListItem* next_; member in class:webrtc::ListItem
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 29 ListNoStlItem* next_; member in class:webrtc::ListNoStlItem
map_no_stl.h 32 MapNoStlItem* next_; member in class:webrtc::MapNoStlItem
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_utils.cc 61 next_(NULL),
67 bool has_next() { return next_ != NULL;}
75 const GURL* next = next_;
85 next_ = &(*parent_)->url();
93 next_ = &child->url();
100 next_ = NULL;
104 const GURL* next_; member in class:chrome::__anon9592::OpenURLIterator

Completed in 1023 milliseconds

12 3 4 5 6