/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
AbstractQueueTest.java | 48 public E next() { method 150 iter.next(); 152 assertTrue(I == iter.next());
|
WeakHashMapTest.java | 181 Map.Entry<Object, Object> entry = it.next(); 201 .next(), entrySet.iterator().next()); 208 it.next(); 212 it.next(); 222 it.next(); 229 it.next(); 252 Map.Entry entry = (Map.Entry) it.next(); 356 Object key = it.next(); 381 iter.next(); [all...] |
HashtableTest.java | 206 iterator.next(); 237 // next is removed "9" 257 s2.add(((Map.Entry) i.next()).getValue()); 268 ((Map.Entry) ht10.entrySet().iterator().next()).setValue(null); 320 .next().hashCode()) 383 iterator.next(); 429 Integer remove1 = (Integer) it.next(); 431 Integer remove2 = (Integer) it.next(); 437 assertTrue("Wrong result", it.next().equals(list.get(0))); 439 assertTrue("Wrong contents", map.keySet().iterator().next().equals 447 Integer next; local [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Analyzer.java | 141 queue.add(iter.next()); 171 iter.next(); 194 // Merge the state before the jsr into the next instruction 202 // Can advance to next instruction 260 iter.next(); 261 int next = iter.lookAhead(); local 263 iter.next(); 265 return next; 306 private void mergeJsr(IntQueue queue, Frame frame, Subroutine sub, int pos, int next) throws BadBytecode { 310 Frame old = frames[next]; [all...] |
/external/smack/src/org/apache/harmony/javax/security/auth/ |
Subject.java | 438 buf.append(it.next()); 445 buf.append(it.next()); 454 buf.append(it.next()); 576 SST o = it.next(); 625 * checks permission to access next private credential moves 626 * to the next element even SecurityException was thrown 629 public SST next() { 630 SST obj = iterator.next(); 704 SST o = it.next(); 732 verifyElement(it.next()); 767 public SST next() { method in class:SecureIterator [all...] |
/frameworks/base/core/java/android/util/ |
MapCollections.java | 54 public T next() { method in class:MapCollections.ArrayIterator 89 public Map.Entry<K, V> next() { method in class:MapCollections.MapIterator 202 if (!contains(it.next())) { 381 if (!contains(it.next())) { 459 if (!map.containsKey(it.next())) { 470 map.remove(it.next()); 479 if (!collection.contains(it.next())) {
|
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardHelper.java | 251 Keyboard next = null; local 253 next = mSymbolsKeyboard; 255 next = mQwertyKeyboard; 257 if (next != null) { 258 mKeyboardView.setKeyboard(next); 273 PasswordEntryKeyboard next = null; local 278 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted; 281 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted; 284 next = isAlphaMode ? mQwertyKeyboard : mSymbolsKeyboard; 286 if (next != null) [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardSimPukView.java | 64 public void next() { method in class:KeyguardSimPukView.StateMachine 342 mStateMachine.next();
|
/frameworks/support/v4/java/android/support/v4/util/ |
MapCollections.java | 52 public T next() { method in class:MapCollections.ArrayIterator 87 public Map.Entry<K, V> next() { method in class:MapCollections.MapIterator 200 if (!contains(it.next())) { 379 if (!contains(it.next())) { 457 if (!map.containsKey(it.next())) { 468 map.remove(it.next()); 477 if (!collection.contains(it.next())) {
|
/libcore/json/src/test/java/org/json/ |
JSONTokenerTest.java | 38 new JSONTokener(null).next(); 44 new JSONTokener(null).next(3); 50 new JSONTokener(null).next('A'); 108 assertEquals('\0', new JSONTokener("").next()); 110 new JSONTokener("").next(3); 115 new JSONTokener("").next('A'); 141 assertEquals('A', abcdeTokener.next()); 142 assertEquals('B', abcdeTokener.next('B')); 143 assertEquals("CD", abcdeTokener.next(2)); 145 abcdeTokener.next(2) [all...] |
/libcore/luni/src/main/java/java/text/ |
AttributedString.java | 165 Range range = it.next(); 194 Map.Entry<Attribute, List<Range>> entry = it.next(); 209 Range range = it.next(); 237 Map.Entry<Attribute, List<Range>> entry = it.next(); 288 AttributedCharacterIterator.Attribute attribute = it.next(); 305 Range range = it.next(); 336 AttributedCharacterIterator.Attribute attribute = it.next(); 353 public char next() { method in class:AttributedString.AttributedIterator 395 iterator.next(); 408 AttributedCharacterIterator.Attribute attribute = it.next(); [all...] |
/libcore/luni/src/main/java/javax/security/auth/ |
Subject.java | 423 buf.append(it.next()); 430 buf.append(it.next()); 439 buf.append(it.next()); 597 * checks permission to access next private credential moves 598 * to the next element even SecurityException was thrown 601 public SST next() { 602 SST obj = iterator.next(); 730 public SST next() { method in class:SecureIterator 731 return iterator.next();
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldAttributedStringTest.java | 35 while ((ch = it.next()) != CharacterIterator.DONE) 175 while ((ch = it.next()) != CharacterIterator.DONE) 266 public char next() { method in class:OldAttributedStringTest.testAttributedCharacterIterator 468 it.next();
|
/libcore/luni/src/test/java/tests/api/java/util/ |
AbstractQueueTest.java | 50 public E next() { method 152 iter.next(); 154 assertTrue(I == iter.next());
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
InputMethodAndSubtypeUtil.java | 122 String nextImsStr = sStringInputMethodSplitter.next(); 127 String imeId = sStringInputMethodSubtypeSplitter.next(); 129 subtypeHashes.add(sStringInputMethodSubtypeSplitter.next()); 146 set.add(sStringInputMethodSplitter.next());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/ |
GridModelTest.java | 657 GridModel.ViewData next = model.getView(index); local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
IteratorsTest.java | 80 iterator.next(); 103 iterator.next(); 104 iterator.next(); 313 assertEquals("pants", iterator.next()); 346 assertEquals("pants", iterator.next()); 378 assertEquals("pants", iterator.next()); 444 assertEquals(Integer.valueOf(1), iterator.next()); 445 assertEquals(Integer.valueOf(2), iterator.next()); 460 result.next(); 462 result.next(); [all...] |
/libcore/luni/src/test/java/libcore/java/sql/ |
OldResultSetTest.java | 68 target.next(); 76 assertFalse(target.next()); 93 assertTrue(target.next()); 116 target.next(); 147 while (rs2.next()){ 158 while (rs1.next()) { 209 target.next(); 225 assertTrue(target.next()); 245 target.next(); 271 assertFalse(emptyTarget.next()); [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
GeneratedMessage.java | 682 // a way to get the next element without advancing the iterator. 686 private Map.Entry<FieldDescriptor, Object> next; field in class:GeneratedMessage.ExtendableMessage.ExtensionWriter 691 next = iter.next(); 698 while (next != null && next.getKey().getNumber() < end) { 699 FieldDescriptor descriptor = next.getKey(); 703 if (next instanceof LazyField.LazyEntry<?>) { 705 ((LazyField.LazyEntry<?>) next).getField().toByteString()); 708 (Message) next.getValue()) [all...] |
GeneratedMessageLite.java | 252 // a way to get the next element without advancing the iterator. 256 private Map.Entry<ExtensionDescriptor, Object> next; field in class:GeneratedMessageLite.ExtendableMessage.ExtensionWriter 261 next = iter.next(); 268 while (next != null && next.getKey().getNumber() < end) { 269 ExtensionDescriptor extension = next.getKey(); 274 (MessageLite) next.getValue()); 276 FieldSet.writeField(extension, next.getValue(), output); 279 next = iter.next() [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
GeneratedMessageLite.java | 159 // a way to get the next element without advancing the iterator. 163 private Map.Entry<ExtensionDescriptor, Object> next; field in class:GeneratedMessageLite.ExtendableMessage.ExtensionWriter 168 next = iter.next(); 175 while (next != null && next.getKey().getNumber() < end) { 176 ExtensionDescriptor extension = next.getKey(); 181 (MessageLite) next.getValue()); 183 FieldSet.writeField(extension, next.getValue(), output); 186 next = iter.next() [all...] |
/external/smack/src/org/jivesoftware/smack/util/collections/ |
AbstractReferenceMap.java | 295 * An iterator returned entry is valid until <code>next()</code> is called again. 382 data[index] = entry.next; 384 previous.next = entry.next; 390 entry = entry.next; 444 * @param next the next entry in sequence 450 public HashEntry<K, V> createEntry(HashEntry<K, V> next, int hashCode, K key, V value) { 451 return new ReferenceEntry<K, V>(this, (ReferenceEntry<K, V>) next, hashCode, key, value); 500 Map.Entry<K, V> e = iterator.next(); 721 protected ReferenceEntry<K, V> next() { method in class:AbstractReferenceMap.ReferenceEntry 840 public ReferenceEntry<K, V> next() { method in class:AbstractReferenceMap.ReferenceEntrySetIterator 855 public K next() { method in class:AbstractReferenceMap.ReferenceKeySetIterator 869 public V next() { method in class:AbstractReferenceMap.ReferenceValuesIterator 883 public K next() { method in class:AbstractReferenceMap.ReferenceMapIterator [all...] |
/libcore/luni/src/main/java/java/util/ |
LinkedList.java | 51 Link<ET> previous, next; field in class:LinkedList.Link 56 next = n; 77 link = link.next; 91 Link<ET> next = link.next; local 92 Link<ET> newLink = new Link<ET>(object, link, next); 93 link.next = newLink; 94 next.previous = newLink; 107 return link.next != list.voidLink; 114 public ET next() { method in class:LinkedList.LinkIterator 116 LinkedList.Link<ET> next = link.next; local 151 Link<ET> next = lastLink.next; local 208 public ET next() { method in class:LinkedList.ReverseLinkIterator 224 Link<ET> next = link.previous; local 363 Link<E> next = previous.next; local 653 Link<E> next = link.next; local 682 Link<E> next = first.next; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
TiledTexture.java | 184 Tile next = mTiles[mUploadIndex++]; local 188 if (next.bitmap != null) { 189 boolean hasBeenLoad = next.isLoaded(); 190 next.updateContent(canvas); 196 if (!hasBeenLoad) next.draw(canvas, 0, 0);
|
/bionic/libc/bionic/ |
malloc_debug_leak.cpp | 121 entry = entry->next; 153 entry->next = gHashTable.slots[slot]; 161 if (entry->next != NULL) { 162 entry->next->prev = entry; 183 e1 = e1->next; 193 HashEntry* next = entry->next; local 195 if (prev != NULL) entry->prev->next = next; 196 if (next != NULL) entry->next->prev = prev [all...] |