/external/chromium_org/third_party/polymer/components-chromium/core-animated-pages/transitions/ |
hero-transition.css | 2 polyfill-next-selector { content: ':host > [animate] [hero]'; } 7 polyfill-next-selector { content: ':host > .core-selected[animate] [hero]'; }
|
/external/chromium_org/third_party/polymer/components-chromium/core-pages/ |
core-pages.css | 15 polyfill-next-selector { content: ':host > *'; } 26 polyfill-next-selector { content: ':host > .core-selected'; }
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkAddIntersections.h | 14 bool AddIntersectTs(SkOpContour* test, SkOpContour* next);
|
/external/chromium_org/tools/perf/clear_system_cache/ |
clear_system_cache_main.cc | 45 for (base::FilePath next = enumerator.Next(); !next.empty(); 46 next = enumerator.Next()) { 47 ClearCacheForFile(next);
|
/external/e2fsprogs/lib/et/ |
error_table.h | 18 struct et_list *next; member in struct:et_list
|
/external/e2fsprogs/lib/et/test_cases/ |
continuation.c | 21 struct et_list *next; member in struct:et_list 42 for (end = list, et = *list; et; end = &et->next, et = et->next) 53 et->next = 0;
|
heimdal3.c | 22 struct et_list *next; member in struct:et_list 43 for (end = list, et = *list; et; end = &et->next, et = et->next) 54 et->next = 0;
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
CDL.java | 49 * Get the next value. The value can be wrapped in quotes. The value can 58 c = x.next(); 90 char c = x.next();
|
/external/guava/guava/src/com/google/common/base/ |
AbstractIterator.java | 40 private T next; field in class:AbstractIterator 64 next = computeNext(); 73 public final T next() { method in class:AbstractIterator 78 return next;
|
/external/iproute2/genl/ |
genl_utils.h | 9 struct genl_util *next; member in struct:genl_util
|
/external/ipsec-tools/src/racoon/ |
throttle.h | 39 TAILQ_ENTRY(throttle_entry) next; member in struct:throttle_entry
|
/external/javassist/src/main/javassist/convert/ |
TransformAfter.java | 23 public TransformAfter(Transformer next, 27 super(next, origMethod, afterMethod); 37 pos = iterator.next(); 44 return iterator.next();
|
/external/libcxx/test/containers/associative/map/map.cons/ |
assign_initializer_list.pass.cpp | 45 assert(*next(m.begin()) == V(2, 1)); 46 assert(*next(m.begin(), 2) == V(3, 1)); 70 assert(*next(m.begin()) == V(2, 1)); 71 assert(*next(m.begin(), 2) == V(3, 1));
|
initializer_list.pass.cpp | 41 assert(*next(m.begin()) == V(2, 1)); 42 assert(*next(m.begin(), 2) == V(3, 1)); 62 assert(*next(m.begin()) == V(2, 1)); 63 assert(*next(m.begin(), 2) == V(3, 1));
|
/external/libcxx/test/containers/associative/map/map.modifiers/ |
insert_initializer_list.pass.cpp | 43 assert(*next(m.begin()) == V(2, 1)); 44 assert(*next(m.begin(), 2) == V(3, 1)); 66 assert(*next(m.begin()) == V(2, 1)); 67 assert(*next(m.begin(), 2) == V(3, 1));
|
/external/libcxx/test/containers/associative/set/ |
insert_iter_iter.pass.cpp | 45 assert(*next(m.begin()) == 2); 46 assert(*next(m.begin(), 2) == 3); 69 assert(*next(m.begin()) == 2); 70 assert(*next(m.begin(), 2) == 3);
|
/external/libcxx/test/containers/associative/set/set.cons/ |
iter_iter.pass.cpp | 44 assert(*next(m.begin()) == 2); 45 assert(*next(m.begin(), 2) == 3); 67 assert(*next(m.begin()) == 2); 68 assert(*next(m.begin(), 2) == 3);
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_screen.h | 15 * next paragraph) shall be included in all copies or substantial portions 42 struct tr_list *next; member in struct:tr_list
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Handler.java | 67 * Next exception handler block info.
69 Handler next;
field in class:Handler
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
NetObjectList.java | 111 /** returns the next element 114 public GenericObject next() { method in class:NetObjectList 115 return (NetObject) super.next(); 118 /** returns the next element 122 public GenericObject next(ListIterator li) { method in class:NetObjectList 123 return (NetObject) super.next(li);
|
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
address_field_util.cc | 71 for (std::string::const_iterator next = format.begin(); 72 next != format.end(); prev = ++next) { 73 // Find the next field element or newline (indicated by %<TOKEN>). 74 if ((next = std::find(next, format.end(), '%')) == format.end()) { 78 if (prev < next) { 80 elements->push_back(FormatElement(std::string(prev, next))); 82 if ((prev = ++next) == format.end()) { 88 if (*next == 'n') [all...] |
/external/okhttp/okio/src/main/java/okio/ |
Segment.java | 36 /** The next byte of application data byte to read in this segment. */ 42 /** Next segment in a linked or circularly-linked list. */ 43 Segment next; field in class:Segment 53 Segment result = next != this ? next : null; 54 prev.next = next; 55 next.prev = prev; 56 next = null; 67 segment.next = next [all...] |
/external/bison/lib/ |
hash.c | 49 struct hash_entry *next; member in struct:hash_entry 186 while (cursor = cursor->next, cursor) 218 while (cursor = cursor->next, cursor) 269 for (cursor = bucket; cursor; cursor = cursor->next) 312 /* Find next entry in the same bucket. */ 316 if (cursor->data == entry && cursor->next) 317 return cursor->next->data; 318 cursor = cursor->next; 347 for (cursor = bucket; cursor; cursor = cursor->next) 379 for (cursor = bucket; cursor; cursor = cursor->next) 662 struct hash_entry *next; local 700 struct hash_entry *next; local 811 struct hash_entry *next = bucket->next; local 837 struct hash_entry *next = cursor->next; local 864 struct hash_entry *next; local 1190 struct hash_entry *next; local [all...] |
/developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 28 * Takes the "next" LogNode as a parameter, to simplify chaining. 30 * @param next The next LogNode in the pipeline. 32 public MessageOnlyLogFilter(LogNode next) { 33 mNext = next; 47 * Returns the next LogNode in the chain.
|
/developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 28 * Takes the "next" LogNode as a parameter, to simplify chaining. 30 * @param next The next LogNode in the pipeline. 32 public MessageOnlyLogFilter(LogNode next) { 33 mNext = next; 47 * Returns the next LogNode in the chain.
|