Home
last modified time | relevance | path

Searched refs:getIterator (Results 1 – 10 of 10) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DAttributedCharacterIteratorTest.java32 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 …]
DAttributedStringTest.java35 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/
DOldAttributedCharacterIteratorTest.java36 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 …]
DOldAttributedStringTest.java31 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/
DFormat.java280 return as.getIterator(); in createAttributedCharacterIterator()
297 return as.getIterator(); in createAttributedCharacterIterator()
316 return as.getIterator(); in createAttributedCharacterIterator()
335 return as.getIterator(); in createAttributedCharacterIterator()
DCharacterIteratorFieldDelegate.java106 public AttributedCharacterIterator getIterator(String string) { in getIterator() method in CharacterIteratorFieldDelegate
120 get(counter).getIterator(); in getIterator()
122 return new AttributedString(iterators).getIterator(); in getIterator()
DAttributedString.java559 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
DDecimalFormat.java1107 return result.getIterator(); in formatToCharacterIterator()
DSimpleDateFormat.java1130 return delegate.getIterator(sb.toString()); in formatToCharacterIterator()
/libcore/ojluni/src/main/java/java/util/
DHashtable.java607 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()