HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 326 - 350 of 3893) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/util/
AbstractSet.java 79 Object next = it.next(); local
80 result += next == null ? 0 : next.hashCode();
102 if (collection.contains(it.next())) {
110 result = remove(it.next()) || result;
ListIterator.java 28 * Inserts the specified object into the list between {@code next} and
46 * @see #next
60 * Returns the next object in the iteration.
62 * @return the next object.
67 public E next(); method in interface:ListIterator
70 * Returns the index of the next object in the iteration.
72 * @return the index of the next object, or the size of the list if the
76 * @see #next
102 * Removes the last object returned by {@code next} or {@code previous} from
108 * if {@code next} or {@code previous} have not been called, o
    [all...]
ListResourceBundle.java 63 String next = pEnum.nextElement(); local
64 if (!table.containsKey(next)) {
65 nextElement = next;
81 return local.next();
101 return it.next();
PropertyResourceBundle.java 93 String next = pEnum.nextElement(); local
94 if (!resources.containsKey(next)) {
95 nextElement = next;
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 14 list.add(nodes.next());
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 43 private T next; local
47 while (next == null && delegate.hasNext()) {
48 next = delegate.next().get();
49 if (trim && next == null) {
57 return next != null;
60 @Override public T next() { method
64 T result = next;
66 next = null;
  /libcore/luni/src/test/java/libcore/java/util/
OldLinkedHashMapTest.java 36 String id = (String) iterator.next();
39 iterator.next();
41 // iterator.next() Operation takes place after a get
52 id = (String) iterator.next();
54 iterator.next();
RandomTest.java 26 // functioning of next.
31 @Override protected synchronized int next(int bits) { return state.length(); } method in class:RandomTest.MyRandom
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 75 ss.add(it.next());
79 int nextValue = it.next().intValue();
97 objArray[counter] == it.next());
106 objArray[counter] == it.next());
  /ndk/sources/host-tools/make-3.81/
dep.h 31 chained through the `next'. `stem' is the stem for this
38 struct dep *next; member in struct:dep
53 struct nameseq *next; member in struct:nameseq
rule.h 23 struct rule *next; member in struct:rule
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
integral_wrapper.hpp 64 typedef AUX_WRAPPER_INST(next_value) next; typedef in struct:AUX_WRAPPER_NAME
69 typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N + 1)) ) next; typedef in struct:AUX_WRAPPER_NAME
72 typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (value + 1)) ) next; typedef in struct:AUX_WRAPPER_NAME
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
item.hpp 27 , typename Next
40 typedef Next next; typedef in struct:boost::mpl::l_item
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
binary_dictionary_bigrams_iterator.h 37 AK_FORCE_INLINE void next() { function in class:latinime::BinaryDictionaryBigramsIterator
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
vmalloc.h 37 struct vm_struct *next; member in struct:vm_struct

Completed in 655 milliseconds

<<11121314151617181920>>