/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | AttributedCharacterIteratorTest.java | 32 AttributedCharacterIterator it = attrString.getIterator(); in test_current() 42 it = attrString.getIterator(null, 2, 8); in test_current() 52 AttributedCharacterIterator it = attrString.getIterator(); in test_first() 54 it = attrString.getIterator(null, 0, 3); in test_first() 56 it = attrString.getIterator(null, 2, 8); in test_first() 58 it = attrString.getIterator(null, 11, 11); in test_first() 68 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); in test_getBeginIndex() 78 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); in test_getEndIndex() 88 AttributedCharacterIterator it = attrString.getIterator(); in test_getIndex() 105 AttributedCharacterIterator it = attrString.getIterator(); in test_last() [all …]
|
D | AttributedStringTest.java | 35 AttributedCharacterIterator it = attrString.getIterator(); in test_ConstructorLjava_lang_String() 123 AttributedCharacterIterator it = as.getIterator(); in test_addAttributeLjava_text_AttributedCharacterIterator$AttributeLjava_lang_ObjectII() 130 it = as.getIterator(); in test_addAttributeLjava_text_AttributedCharacterIterator$AttributeLjava_lang_ObjectII()
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | OldAttributedCharacterIteratorTest.java | 36 AttributedCharacterIterator it = as.getIterator(); in test_getRunLimitLSet() 46 it = as.getIterator(); in test_getRunLimitLSet() 57 AttributedCharacterIterator it = as.getIterator(); in test_getAllAttributeKeys() 67 it = as.getIterator(); in test_getAllAttributeKeys() 99 assertTrue(as.getIterator().getAttributes().isEmpty()); in test_getAttributes() 107 assertEquals(0, as.getIterator().getRunLimit()); in test_getRunLimit() 110 getIterator(), 2, 7); in test_getRunLimit() 112 AttributedCharacterIterator it = as.getIterator(); in test_getRunLimit() 118 assertEquals(0, as.getIterator().getRunLimit( in test_getRunLimitLAttribute() 128 assertEquals(4, as.getIterator().getRunLimit( in test_getRunLimitLAttribute() [all …]
|
D | OldAttributedStringTest.java | 31 AttributedCharacterIterator it = attrString.getIterator(); in assertEqualString() 43 AttributedCharacterIterator iter = attrString.getIterator(); in test_ConstructorLAttributedCharacterIterator_1() 51 AttributedCharacterIterator iter = attrString.getIterator(); in test_ConstructorLAttributedCharacterIterator_2() 94 AttributedCharacterIterator iter = attrString.getIterator(); in test_ConstructorLAttributedCharacterIterator_3() 169 AttributedCharacterIterator it = attrString.getIterator(); in test_ConstructorLjava_lang_StringLjava_util_Map() 283 AttributedCharacterIterator it = as.getIterator(); in test_addAttributeLjava_text_AttributedCharacterIterator$AttributeLjava_lang_ObjectII() 290 it = as.getIterator(); in test_addAttributeLjava_text_AttributedCharacterIterator$AttributeLjava_lang_ObjectII() 399 AttributedCharacterIterator it = attrString.getIterator(); in test_getIterator() 424 AttributedCharacterIterator it = attrString.getIterator(aci); in test_getIterator$Ljava_text_AttributedCharacterIterator$Attribute() 456 AttributedCharacterIterator it = attrString.getIterator(aci, 1, 5); in test_getIterator$Ljava_text_AttributedCharacterIterator$AttributeII() [all …]
|
/libcore/ojluni/src/main/java/java/text/ |
D | Format.java | 280 return as.getIterator(); in createAttributedCharacterIterator() 297 return as.getIterator(); in createAttributedCharacterIterator() 316 return as.getIterator(); in createAttributedCharacterIterator() 335 return as.getIterator(); in createAttributedCharacterIterator()
|
D | CharacterIteratorFieldDelegate.java | 106 public AttributedCharacterIterator getIterator(String string) { in getIterator() method in CharacterIteratorFieldDelegate 120 get(counter).getIterator(); in getIterator() 122 return new AttributedString(iterators).getIterator(); in getIterator()
|
D | AttributedString.java | 559 public AttributedCharacterIterator getIterator() { in getIterator() method in AttributedString 560 return getIterator(null, 0, length()); in getIterator() 574 public AttributedCharacterIterator getIterator(Attribute[] attributes) { in getIterator() method in AttributedString 575 return getIterator(attributes, 0, length()); in getIterator() 594 …public AttributedCharacterIterator getIterator(Attribute[] attributes, int beginIndex, int endInde… in getIterator() method in AttributedString
|
D | DecimalFormat.java | 1107 return result.getIterator(); in formatToCharacterIterator()
|
D | SimpleDateFormat.java | 1130 return delegate.getIterator(sb.toString()); in formatToCharacterIterator()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Hashtable.java | 607 private <T> Iterator<T> getIterator(int type) { in getIterator() method in Hashtable 649 return getIterator(KEYS); in iterator() 689 return getIterator(ENTRIES); in iterator() 771 return getIterator(VALUES); in iterator()
|