HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 226 - 250 of 6142) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/
ucharstrieiterator.cpp 101 UCharsTrie::Iterator::next(UErrorCode &errorCode) { function in class:UCharsTrie::Iterator
110 // Pop the state off the stack and continue with the next outbound edge of
152 // next time.
uenumimp.h 63 * This function returns the next element as a UChar *,
69 * @return next element as UChar *,
80 * This function returns the next element as a char *,
86 * @return next element as char *,
126 UEnumNext *next; member in struct:UEnumeration
147 * when a UEnumeration is defined with 'next' pointing to this
  /external/icu/icu4c/source/i18n/
regeximp.cpp 27 UChar32 CaseFoldingUTextIterator::next() { function in class:CaseFoldingUTextIterator
32 // Start handling the next char from the input UText.
74 UChar32 CaseFoldingUCharIterator::next() { function in class:CaseFoldingUCharIterator
79 // Start handling the next char from the input UText.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ComposedCharIter.java 63 * {@link #next} returns this value when there are no more composed characters
102 * by {@link #next}.
114 * Returns the next precomposed Unicode character.
115 * Repeated calls to <tt>next</tt> return all of the precomposed characters defined
118 * to <tt>next</tt> will return {@link #DONE}.
122 public char next() { method in class:ComposedCharIter
134 * recently returned by {@link #next}. The resulting decomposition is
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
RangeValueIterator.java 39 * while (iterator.next(result)) {
96 * <p>Returns the next maximal result range with a common value and returns
105 public boolean next(Element element); method in interface:RangeValueIterator
UResourceBundleIterator.java 21 * temp = iterartor.next();
55 * Returns the next element of this iterator if this iterator object has at least one more element to provide
60 public UResourceBundle next()throws NoSuchElementException{ method in class:UResourceBundleIterator
67 * Returns the next String of this iterator if this iterator object has at least one more element to provide
ValueIterator.java 28 * while (iterator.next(result)) {
42 * <p>The return result container of each iteration. Stores the next
75 * <p>Returns the next result for this iteration and returns
84 public boolean next(Element element); method in interface:ValueIterator
97 * <p>If setRange(start, end) is not performed before next(element) is
102 * implementation, next(element) will always return false.
  /external/iproute2/include/
names.h 7 struct db_entry *next; member in struct:db_entry
  /external/iproute2/tipc/
cmdl.c 72 int next; local
75 next = (cmdl->optind)++;
77 next = cmdl->argc;
79 return cmdl->argv[next];
  /external/ipsec-tools/src/racoon/
sainfo.h 68 struct sainfoalg *next; member in struct:sainfoalg
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
StringSwitchJavacFilter.java 72 next(); method
77 // jump to next comparison or second switch
80 next(); method
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
Token.java 52 * A reference to the next regular (non-special) token from the input
59 public Token next; field in class:Token
66 * to the last of these special tokens, which in turn refers to the next
69 * The next fields of special tokens refer to other special tokens that
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
Token.java 52 * A reference to the next regular (non-special) token from the input
59 public Token next; field in class:Token
66 * to the last of these special tokens, which in turn refers to the next
69 * The next fields of special tokens refer to other special tokens that
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 21 private IntQueue.Entry next; field in class:IntQueue.Entry
34 tail.next = entry;
50 head = head.next;
  /external/junit/src/main/java/org/junit/experimental/theories/internal/
ParameterizedAssertionError.java 34 Object next = iter.next(); local
35 sb.append(stringValueOf(next));
43 private static String stringValueOf(Object next) {
45 return String.valueOf(next);
  /external/kmod/testsuite/
stripped-module.h 11 struct list_head *next, *prev; member in struct:list_head
  /external/libcap-ng/libcap-ng-0.7/utils/
proc-llist.h 40 struct _lnode* next; // Next node pointer member in struct:_lnode
  /external/libchrome/base/allocator/
allocator_shim.h 98 const AllocatorDispatch* next; member in struct:base::allocator::AllocatorDispatch
  /external/libcups/cups/
getifaddrs.c 206 struct ifaddrs *next; /* Next interface in list */ local
212 * Make a copy of the next interface pointer...
215 next = addrs->ifa_next;
246 * Free this node and continue to the next...
251 addrs = next;
  /external/libcxxabi/src/
cxa_thread_atexit.cpp 61 DtorList* next; member in struct:__cxxabiv1::__anon24569::DtorList
73 dtors = head->next;
131 head->next = dtors;
  /external/libdrm/amdgpu/
amdgpu_vamgr.c 172 hole = container_of(mgr->va_holes.next, hole, list);
180 struct amdgpu_bo_va_hole *next; local
183 LIST_FOR_EACH_ENTRY(next, &mgr->va_holes, list) {
184 if (next->offset < va)
186 hole = next;
195 if (next != hole
196 && &next->list != &mgr->va_holes
197 && (next->offset + next->size) == va) {
198 next->size += hole->size
    [all...]
  /external/libdrm/intel/
mm.c 44 for (p = heap->next; p != heap; p = p->next) {
79 heap->next = block;
85 block->next = heap;
103 /* break left [p, newblock, p->next], then p = newblock */
114 newblock->next = p->next;
116 p->next->prev = newblock;
117 p->next = newblock;
128 /* break right, also [p, newblock, p->next] */
258 struct mem_block *next = p->next; local
    [all...]
mm.h 39 struct mem_block *next, *prev; member in struct:mem_block
  /external/libdrm/
xf86drmHash.h 12 * The above copyright notice and this permission notice (including the next
35 struct HashBucket *next; member in struct:HashBucket
  /external/libnfnetlink/src/
rtnl.h 8 struct rtnl_handler *next; member in struct:rtnl_handler

Completed in 1018 milliseconds

1 2 3 4 5 6 7 8 91011>>