/dalvik/dx/src/com/android/dx/util/ |
IntIterator.java | 25 * Checks to see if the iterator has a next value. 27 * @return true if next() will succeed 32 * Returns the next value in the iterator. 34 * @return next value 35 * @throws java.util.NoSuchElementException if no next element exists 37 int next(); method in interface:IntIterator
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMAxisTraverser.java | 38 * nodeHandle=myTraverser.next(myContext,nodeHandle)) 61 return next(context, context); 80 return next(context, context, extendedTypeID); 84 * Traverse to the next node after the current node. 94 * @return the next node in the iteration, or DTM.NULL. 97 public abstract int next(int context, int current); method in class:DTMAxisTraverser 100 * Traverse to the next node after the current node that is matched 112 * @return the next node in the iteration, or DTM.NULL. 115 public abstract int next(int context, int current, int extendedTypeID); method in class:DTMAxisTraverser
|
/external/bison/src/ |
AnnotationList.h | 39 /** The next node in the list or \c NULL if none. */ 40 struct AnnotationList *next; member in struct:AnnotationList
|
reader.h | 32 struct merger_list* next; member in struct:merger_list
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
BidiRun.h | 51 BidiRun* next() { return static_cast<BidiRun*>(m_next); } function in struct:WebCore::BidiRun
|
/external/chromium_org/third_party/icu/source/i18n/ |
fpositer.cpp | 90 UBool FieldPositionIterator::next(FieldPosition& fp) { function in class:FieldPositionIterator
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_quad_pipe.h | 15 * next paragraph) shall be included in all copies or substantial portions 47 struct quad_stage *next; member in struct:quad_stage
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
parse.h | 9 struct Symbol *next; member in struct:Symbol
|
/external/chromium_org/v8/src/extensions/i18n/ |
break-iterator.js | 167 * Returns the index of the next break and moves the pointer. 169 function next(iterator) { function 195 addBoundMethod(Intl.v8BreakIterator, 'next', next, 0);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
IntIterator.java | 25 * Checks to see if the iterator has a next value. 27 * @return true if next() will succeed 32 * Returns the next value in the iterator. 34 * @return next value 35 * @throws java.util.NoSuchElementException if no next element exists 37 int next(); method in interface:IntIterator
|
/external/e2fsprogs/lib/et/ |
error_table.h | 18 struct et_list *next; member in struct:et_list
|
/external/iproute2/genl/ |
genl_utils.h | 9 struct genl_util *next; member in struct:genl_util
|
/external/ipsec-tools/src/racoon/ |
grabmyaddr.h | 38 struct myaddrs *next; member in struct:myaddrs
|
throttle.h | 39 TAILQ_ENTRY(throttle_entry) next; member in struct:throttle_entry
|
/external/linux-tools-perf/util/ |
parse-events.h | 23 struct tracepoint_path *next; member in struct:tracepoint_path
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_quad_pipe.h | 15 * next paragraph) shall be included in all copies or substantial portions 47 struct quad_stage *next; member in struct:quad_stage
|
/external/mockito/src/org/mockito/internal/progress/ |
SequenceNumber.java | 11 public static synchronized int next() {
method in class:SequenceNumber
|
/external/oprofile/opjitconv/ |
conversion.c | 20 struct jitentry * entry, * next; local 22 for (entry = jitentry_list; entry; entry = next) { 25 next = entry->next; 33 struct jitentry_debug_line * entry, * next; local 35 for (entry = jitentry_debug_line_list; entry; entry = next) { 36 next = entry->next;
|
/external/qemu/android/ |
config.h | 24 AConfig* next; member in struct:AConfig
|
/external/qemu/ |
notify.c | 34 Notifier *notifier, *next; local 36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
|
/external/srec/config/en.us/dictionary/ |
cmu2nuance.cpp | 78 const char* next = 0; local 80 (next=xlate(p, "AA1 R", ")r")) || // odd AA D 81 (next=xlate(p, "AA0", "o")) || // odd AA D 82 (next=xlate(p, "AA1", "o")) || // odd AA D 83 (next=xlate(p, "AA2", "o")) || // odd AA D 85 (next=xlate(p, "AE0", "a")) || // at AE T 86 (next=xlate(p, "AE1", "a")) || // at AE T 87 (next=xlate(p, "AE2", "a")) || // at AE T 89 // (next=xlate(p, "AH0 L", "L")) || // drops accuracy by 1% 90 (next=xlate(p, "AH0 N", "~")) || // hut HH AH T - from jea [all...] |
/external/stlport/test/eh/ |
test_push_front.h | 38 typename C::const_iterator next = c.begin(); local 40 EH_ASSERT( EH_STD::equal( original.begin(), original.end(), ++next ) );
|
/external/valgrind/main/include/ |
pub_tool_hashtable.h | 45 struct _VgHashNode * next; member in struct:_VgHashNode 81 next one. Returns NULL if the last one has been passed, or if
|
/hardware/ti/omap4xxx/ |
mapinfo.h | 5 struct mapinfo *next; member in struct:mapinfo
|
/libcore/luni/src/main/java/java/util/ |
Iterator.java | 24 * methods {@code next} and {@code hasNext()} may throw a {@code ConcurrentModificationException}. 38 * @see #next 43 * Returns the next object and advances the iterator. 45 * @return the next object. 50 public E next(); method in interface:Iterator 53 * Removes the last object returned by {@code next} from the collection. 54 * This method can only be called once between each call to {@code next}. 60 * if {@code next} has not been called, or {@code remove} has 61 * already been called after the last call to {@code next}.
|