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

1 2 3 4 5 6 7 891011>>

  /external/e2fsprogs/lib/ext2fs/
ext2_err.c 44 N_( "Can't read next inode"),
135 N_( "No 'next' extent"),
198 struct et_list *next; member in struct:et_list
219 for (end = list, et = *list; et; end = &et->next, et = et->next)
230 et->next = 0;
hashmap.h 17 struct ext2fs_hashmap_entry *next; member in struct:ext2fs_hashmap::ext2fs_hashmap_entry
io_manager.c 26 char *next, *ptr, *options, *arg; local
43 next = strchr(ptr, '&');
44 if (next)
45 *next++ = 0;
54 ptr = next;
  /external/e2fsprogs/lib/ss/
get_readline.c 48 char *tmp, *cp, *next; local
64 for (cp = tmp; cp; cp = next) {
65 next = strchr(cp, ':');
66 if (next)
67 *next++ = 0;
ss_err.c 32 struct et_list *next; member in struct:et_list
53 for (end = list, et = *list; et; end = &et->next, et = et->next)
64 et->next = 0;
  /external/e2fsprogs/lib/support/
parse_qtype.c 20 char *buf, *token, *next, *tmp; local
33 for (token = buf, next = strtok_r(buf, PARSE_DELIM, &tmp);
34 token && *token; token = next) {
67 next = strtok_r(NULL, PARSE_DELIM, &tmp);
prof_err.c 51 struct et_list *next; member in struct:et_list
72 for (end = list, et = *list; et; end = &et->next, et = et->next)
83 et->next = 0;
  /external/eigen/debug/gdb/
printers.py 92 def next(self): member in class:EigenMatrixPrinter._iterator
158 def next(self): member in class:EigenQuaternionPrinter._iterator
  /external/elfutils/libelf/
elf_end.c 92 parent->state.ar.children = elf->next;
97 while (child->next != elf)
98 child = child->next;
100 child->next = elf->next;
124 Elf_Data_Chunk *next = rawchunks->next; local
128 rawchunks = next;
175 runp = scn->data_list.next;
179 runp = runp->next;
    [all...]
  /external/expat/tests/
memcheck.c 44 struct allocation_entry * next; member in struct:allocation_entry
72 entry->next = NULL;
80 alloc_tail->next = entry;
92 for (entry = alloc_head; entry != NULL; entry = entry->next) {
115 entry->prev->next = entry->next;
117 alloc_head = entry->next;
118 if (entry->next != NULL)
119 entry->next->prev = entry->prev;
121 alloc_tail = entry->next;
    [all...]
  /external/expat/xmlwf/
ct.c 118 const char *next, *p; local
121 next = buf;
122 p = getTok(&next);
123 if (matchkey(p, next, "text"))
125 else if (!matchkey(p, next, "application"))
127 p = getTok(&next);
130 p = getTok(&next);
131 if (matchkey(p, next, "xml"))
133 p = getTok(&next);
136 p = getTok(&next);
    [all...]
xmlmime.c 122 const char *next, *p; local
125 next = buf;
126 p = getTok(&next);
127 if (matchkey(p, next, "text"))
129 else if (!matchkey(p, next, "application"))
131 p = getTok(&next);
134 p = getTok(&next);
136 if (!matchkey(p, next, "xml") && charset[0] == '\0')
139 p = getTok(&next);
142 p = getTok(&next);
    [all...]
  /external/gptfdisk/
parttypes.h 29 AType* next; member in struct:AType
  /external/guava/guava/src/com/google/common/collect/
AbstractIndexedListIterator.java 41 * {@link #next()}.
47 * position is 0. That is, the first call to {@link #next()} will return the
60 * return {@code position}, and the first call to {@link #next()} will return
80 public final E next() { method in class:AbstractIndexedListIterator
Iterators.java 79 public Object next() {
133 @Override public Object next() {
167 public T next() { method in class:Iterators
168 return iterator.next();
192 iterator.next();
235 if (predicate.apply(removeFrom.next())) {
273 Object o1 = iterator1.next();
274 Object o2 = iterator2.next();
302 T first = iterator.next();
310 sb.append(", " + iterator.next());
    [all...]
Maps.java 129 public V next() { method in class:Maps
130 return entryIterator.next().getValue();
    [all...]
TransformedIterator.java 47 public final T next() { method in class:TransformedIterator
48 return transform(backingIterator.next());
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 77 public Object next() {
131 @Override public Object next() {
165 public T next() { method in class:Iterators
166 return iterator.next();
190 iterator.next();
233 if (predicate.apply(removeFrom.next())) {
271 Object o1 = iterator1.next();
272 Object o2 = iterator2.next();
300 T first = iterator.next();
308 sb.append(", " + iterator.next());
    [all...]
Maps.java 124 public V next() { method in class:Maps
125 return entryIterator.next().getValue();
942 K key = keys.next();
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBiMapTest.java 30 // The next two tests verify that map entries are not accessed after they're
40 iterator.next();
41 iterator.next();
43 iterator.next();
57 iterator.next();
58 iterator.next();
60 iterator.next();
  /external/harfbuzz_ng/src/
hb-utf-private.hh 38 next (const uint8_t *text, function in struct:hb_utf8_t
116 if (likely (next (text, end, unicode, replacement) == end))
136 next (const uint16_t *text, function in struct:hb_utf16_t
216 next (const uint32_t *text, function in struct:hb_utf32_t
254 next (const uint8_t *text, function in struct:hb_latin1_t
  /external/harfbuzz_ng/test/api/
test-set.c 35 hb_codepoint_t next = HB_SET_VALUE_INVALID; local
40 g_assert (!hb_set_next (s, &next));
41 g_assert_cmpint (next, ==, HB_SET_VALUE_INVALID);
48 hb_codepoint_t next = HB_SET_VALUE_INVALID; local
52 g_assert (hb_set_next (s, &next));
53 g_assert_cmpint (next, !=, HB_SET_VALUE_INVALID);
119 hb_codepoint_t next; local
121 for (next = HB_SET_VALUE_INVALID; hb_set_next (s, &next); )
122 printf ("%d, ", next);
241 hb_codepoint_t next, first, last; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ComposedCharIter.java 65 * {@link #next} returns this value when there are no more composed characters
104 * by {@link #next}.
116 * Returns the next precomposed Unicode character.
117 * Repeated calls to <tt>next</tt> return all of the precomposed characters defined
120 * to <tt>next</tt> will return {@link #DONE}.
124 public char next() { method in class:ComposedCharIter
136 * recently returned by {@link #next}. The resulting decomposition is
  /external/icu/android_icu4j/src/main/java/android/icu/util/
UResourceBundleIterator.java 22 * temp = iterartor.next();
55 * Returns the next element of this iterator if this iterator object has at least one more element to provide
59 public UResourceBundle next()throws NoSuchElementException{ method in class:UResourceBundleIterator
66 * Returns the next String of this iterator if this iterator object has at least one more element to provide
  /external/icu/icu4c/source/common/
ruleiter.cpp 38 UChar32 RuleCharacterIterator::next(int32_t options, UBool& isEscaped, UErrorCode& ec) { function in class:RuleCharacterIterator

Completed in 1565 milliseconds

1 2 3 4 5 6 7 891011>>