HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 101 - 125 of 4638) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/containers/associative/set/
lower_bound.pass.cpp 45 assert(r == next(m.begin()));
47 assert(r == next(m.begin(), 2));
49 assert(r == next(m.begin(), 3));
51 assert(r == next(m.begin(), 4));
53 assert(r == next(m.begin(), 5));
55 assert(r == next(m.begin(), 6));
57 assert(r == next(m.begin(), 7));
59 assert(r == next(m.begin(), 0));
61 assert(r == next(m.begin(), 1));
63 assert(r == next(m.begin(), 2))
    [all...]
find.pass.cpp 45 assert(r == next(m.begin()));
47 assert(r == next(m.begin(), 2));
49 assert(r == next(m.begin(), 3));
51 assert(r == next(m.begin(), 4));
53 assert(r == next(m.begin(), 5));
55 assert(r == next(m.begin(), 6));
57 assert(r == next(m.begin(), 7));
59 assert(r == next(m.begin(), 8));
78 assert(r == next(m.begin()));
80 assert(r == next(m.begin(), 2))
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/injection/filter/
NameBasedCandidateFilter.java 15 private final MockCandidateFilter next; field in class:NameBasedCandidateFilter
18 public NameBasedCandidateFilter(MockCandidateFilter next) {
19 this.next = next;
30 return next.filterCandidate(mockNameMatches, field, fieldInstance);
32 return next.filterCandidate(mocks, field, fieldInstance);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
span.cc 73 list->next = list;
78 span->prev->next = span->next;
79 span->next->prev = span->prev;
81 span->next = NULL;
86 for (Span* s = list->next; s != list; s = s->next) {
93 ASSERT(span->next == NULL);
95 span->next = list->next;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
span.cc 73 list->next = list;
78 span->prev->next = span->next;
79 span->next->prev = span->prev;
81 span->next = NULL;
86 for (Span* s = list->next; s != list; s = s->next) {
93 ASSERT(span->next == NULL);
95 span->next = list->next;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 41 x->next = 0;
45 x->next = 0;
46 last_->next = x;
54 x->next = 0;
58 x->next = first_;
66 first_ = first_->next;
82 l->last_->next = first_;
96 last_->next = l->first_;
109 for (Item *i = first_; ; i = i->next) {
114 CHECK_EQ(last_->next, 0)
122 Item *next() { function in class:__sanitizer::IntrusiveList::Iterator
    [all...]
  /external/libcxx/test/containers/associative/map/map.ops/
find.pass.cpp 45 assert(r == next(m.begin()));
47 assert(r == next(m.begin(), 2));
49 assert(r == next(m.begin(), 3));
51 assert(r == next(m.begin(), 4));
53 assert(r == next(m.begin(), 5));
55 assert(r == next(m.begin(), 6));
57 assert(r == next(m.begin(), 7));
59 assert(r == next(m.begin(), 8));
78 assert(r == next(m.begin()));
80 assert(r == next(m.begin(), 2))
    [all...]
  /external/libcxx/test/containers/associative/multiset/
find.pass.cpp 45 assert(r == next(m.begin()));
47 assert(r == next(m.begin(), 2));
49 assert(r == next(m.begin(), 3));
51 assert(r == next(m.begin(), 4));
53 assert(r == next(m.begin(), 5));
55 assert(r == next(m.begin(), 6));
57 assert(r == next(m.begin(), 7));
59 assert(r == next(m.begin(), 8));
78 assert(r == next(m.begin()));
80 assert(r == next(m.begin(), 2))
    [all...]
  /bionic/libc/stdio/
glue.h 44 struct glue *next; member in struct:glue
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
atexit.h 34 struct atexit *next; /* next in list */ member in struct:atexit
35 int ind; /* next index in this table */
  /bionic/linker/
linked_list.h 24 LinkedListEntry<T>* next; member in struct:LinkedListEntry
41 new_entry->next = head_;
51 new_entry->next = nullptr;
56 tail_->next = new_entry;
68 head_ = entry->next;
81 head_ = head_->next;
98 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
110 LinkedListEntry<T>* next = e->next; local
112 head_ = next;
    [all...]
  /dalvik/dx/src/com/android/multidex/
ArchivePathElement.java 67 ZipEntry next = null;
71 while (next == null && delegate.hasMoreElements()) {
72 next = delegate.nextElement();
73 if (next.isDirectory()) {
74 next = null;
77 return next != null;
81 public String next() { method
83 String name = next.getName();
84 next = null;
  /external/chromium_org/third_party/skia/samplecode/
TransitionView.h 13 SkView* create_transition(SkView* prev, SkView* next, int direction);
  /external/chromium_org/third_party/skia/src/core/
SkAutoKern.h 15 #define SkAutoKern_AdjustF(prev, next) (((next) - (prev) + 32) >> 6 << 16)
16 #define SkAutoKern_AdjustS(prev, next) SkIntToScalar(((next) - (prev) + 32) >> 6)
  /external/dhcpcd/
control.h 36 struct fd_list *next; member in struct:fd_list
eloop.c 46 struct event *next; member in struct:event
55 struct timeout *next; member in struct:timeout
68 for (e = events; e; e = e->next) {
80 free_events = e->next;
86 e->next = NULL;
88 last->next = e;
98 for (e = events; e; e = e->next) {
101 last->next = e->next;
103 events = e->next;
    [all...]
  /external/libcxx/test/containers/associative/multimap/multimap.cons/
iter_iter_comp.pass.cpp 46 assert(*next(m.begin()) == V(1, 1.5));
47 assert(*next(m.begin(), 2) == V(1, 2));
48 assert(*next(m.begin(), 3) == V(2, 1));
49 assert(*next(m.begin(), 4) == V(2, 1.5));
50 assert(*next(m.begin(), 5) == V(2, 2));
51 assert(*next(m.begin(), 6) == V(3, 1));
52 assert(*next(m.begin(), 7) == V(3, 1.5));
53 assert(*next(m.begin(), 8) == V(3, 2));
76 assert(*next(m.begin()) == V(1, 1.5));
77 assert(*next(m.begin(), 2) == V(1, 2))
    [all...]
iter_iter_comp_alloc.pass.cpp 49 assert(*next(m.begin()) == V(1, 1.5));
50 assert(*next(m.begin(), 2) == V(1, 2));
51 assert(*next(m.begin(), 3) == V(2, 1));
52 assert(*next(m.begin(), 4) == V(2, 1.5));
53 assert(*next(m.begin(), 5) == V(2, 2));
54 assert(*next(m.begin(), 6) == V(3, 1));
55 assert(*next(m.begin(), 7) == V(3, 1.5));
56 assert(*next(m.begin(), 8) == V(3, 2));
81 assert(*next(m.begin()) == V(1, 1.5));
82 assert(*next(m.begin(), 2) == V(1, 2))
    [all...]
  /external/lldb/test/python_api/value/linked_list/
main.cpp 14 Task *next; member in class:Task
17 next(n)
32 task1->next = task2;
33 task2->next = task4;
34 task4->next = task5;
41 t = t->next;
51 task_evil->next = task_2;
52 task_2->next = task_3;
53 task_3->next = task_evil; // In order to cause inifinite loop. :-)
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Edge.java 71 * The next edge in the list of successors of the originating basic block.
74 Edge next; field in class:Edge
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiRunList.h 106 Run* next = m_firstRun; local
107 while (next != run) {
108 current = next;
109 next = current->next();
113 m_firstRun = run->next();
130 Run* next = current->next(); local
131 while (next != run) {
132 current = next;
233 Run* next = curr->next(); local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 43 simpleStringSplitter.next();
46 simpleStringSplitter.next();
64 assertEquals("hello", iterator.next());
66 assertEquals("world", iterator.next());
74 assertEquals("first", simpleStringSplitter.next());
75 assertEquals(" second", simpleStringSplitter.next());
77 simpleStringSplitter.next();
87 assertEquals(" ", simpleStringSplitter.next());
89 assertEquals("", simpleStringSplitter.next());
92 assertEquals("", simpleStringSplitter.next());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
CallbackStack.cpp 14 explicit Block(Block* next)
17 , m_next(next)
34 Block* next() const { return m_next; } function in class:blink::CallbackStack::Block
35 void setNext(Block* next) { m_next = next; }
129 Block* next; local
130 for (Block* current = m_first->next(); current; current = next) {
131 next = current->next();
182 Block* next = m_first->next(); local
    [all...]
  /bionic/libc/bionic/
pthread_internals.cpp 39 if (thread->next != NULL) {
40 thread->next->prev = thread->prev;
43 thread->prev->next = thread->next;
45 g_thread_list = thread->next;
59 thread->next = g_thread_list;
61 if (thread->next != NULL) {
62 thread->next->prev = thread;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Iterator.h 22 virtual ScriptValue next(ScriptState*, ExceptionState&) = 0;
23 virtual ScriptValue next(ScriptState*, ScriptValue /* value */, ExceptionState&) = 0;

Completed in 502 milliseconds

1 2 3 45 6 7 8 91011>>