/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/skia/samplecode/ |
TransitionView.h | 13 SkView* create_transition(SkView* prev, SkView* next, int direction);
|
/external/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)
|
/ndk/sources/cxx-stl/llvm-libc++/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...] |
/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/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/smack/src/org/xbill/DNS/ |
NSECRecord.java | 8 * Next SECure name - this record contains the following name in an 23 private Name next; field in class:NSECRecord 35 * @param next The following name in an ordered list of the zone 39 NSECRecord(Name name, int dclass, long ttl, Name next, int [] types) { 41 this.next = checkName("next", next); 50 next = new Name(in); 56 // Note: The next name is not lowercased. 57 next.toWire(out, null, false) [all...] |
/hardware/intel/common/wrs_omxil_core/utils/src/ |
list.c | 27 entry->next = NULL; 70 while (list->next) 71 list = list->next; 104 list = list->next; 118 prev->next = new; 120 new->next = entry; 129 struct list *next; local 132 next = entry->next; 133 if (next) 195 struct list *prev, *next; local [all...] |
/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...] |
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/ |
BridgeXmlBlockParserTest.java | 35 assertEquals(XmlPullParser.START_DOCUMENT, parser.next()); 37 assertEquals(XmlPullParser.START_TAG, parser.next()); 40 assertEquals(XmlPullParser.TEXT, parser.next()); 42 assertEquals(XmlPullParser.START_TAG, parser.next()); 44 assertEquals(XmlPullParser.TEXT, parser.next()); 45 assertEquals(XmlPullParser.END_TAG, parser.next()); 47 assertEquals(XmlPullParser.TEXT, parser.next()); 49 assertEquals(XmlPullParser.START_TAG, parser.next()); 51 assertEquals(XmlPullParser.END_TAG, parser.next()); 53 assertEquals(XmlPullParser.TEXT, parser.next()); [all...] |
/external/dhcpcd/ |
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...] |
/libcore/luni/src/main/java/java/lang/ref/ |
FinalizerReference.java | 35 private FinalizerReference<?> next; field in class:FinalizerReference 57 reference.next = head; 67 FinalizerReference<?> next = reference.next; local 69 reference.next = null; 72 prev.next = next; 74 head = next; 76 if (next != null) { 77 next.prev = prev [all...] |
/system/core/libcutils/ |
dir_hash.c | 119 struct list *next; member in struct:list 153 struct list *next; local 154 for (f = list; f != NULL; f = next) { 155 next = f->next; 169 node->next = list; 175 for (f = list; f != NULL; f = f->next) { 184 struct list *next; local 185 for (f = list; f != NULL; f = f->next) { 186 next = f->next 212 struct list *next; local 238 struct list *next; local 250 struct list *next; local 288 struct list *next; local 306 struct list *next; local 325 struct list *next; local [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;
|
/external/chromium_org/third_party/leveldatabase/src/table/ |
iterator.cc | 11 cleanup_.next = NULL; 17 for (Cleanup* c = cleanup_.next; c != NULL; ) { 19 Cleanup* next = c->next; local 21 c = next; 33 c->next = cleanup_.next; 34 cleanup_.next = c; 49 virtual void Next() { assert(false); }
|
/external/chromium_org/third_party/polymer/components/core-field/ |
core-field.css | 15 polyfill-next-selector { content: ':host > core-icon'; } 20 polyfill-next-selector { content: ':host input'; } 30 polyfill-next-selector { content: ':host input:focus'; } 35 polyfill-next-selector { content: ':host input::placeholder'; }
|
/external/chromium_org/third_party/polymer/components-chromium/core-field/ |
core-field.css | 15 polyfill-next-selector { content: ':host > core-icon'; } 20 polyfill-next-selector { content: ':host input'; } 30 polyfill-next-selector { content: ':host input:focus'; } 35 polyfill-next-selector { content: ':host input::placeholder'; }
|
/external/clang/lib/Basic/ |
VersionTuple.cpp | 42 char next = input[0]; local 44 if (next < '0' || next > '9') return true; 45 value = (unsigned) (next - '0'); 48 next = input[0]; 49 if (next < '0' || next > '9') return false; 51 value = value * 10 + (unsigned) (next - '0');
|
/external/clang/test/CodeGen/ |
2002-02-14-EntryNodePreds.c | 11 struct edge_rec *next; member in struct:edge_rec 33 return (int)basel->next;
|
types.c | 4 struct FileName *next; member in struct:FileName 9 struct ieeeExternal *next; member in struct:ieeeExternal
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/ |
types.h | 18 struct list_head *next, *prev; member in struct:list_head 26 struct hlist_node *next, **pprev; member in struct:hlist_node
|