Searched defs:iterators (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DFormat.java288 * @param iterators AttributedCharacterIterators used to create resulting
294 AttributedCharacterIterator[] iterators) {
295 AttributedString as = new AttributedString(iterators);
293 createAttributedCharacterIterator( AttributedCharacterIterator[] iterators) argument
H A DAttributedString.java71 * @param iterators AttributedCharacterIterators to construct
73 * @throws NullPointerException if iterators is null
75 AttributedString(AttributedCharacterIterator[] iterators) { argument
76 if (iterators == null) {
79 if (iterators.length == 0) {
85 for (int counter = 0; counter < iterators.length; counter++) {
86 appendContents(buffer, iterators[counter]);
97 for (int counter = 0; counter < iterators.length; counter++) {
98 AttributedCharacterIterator iterator = iterators[counter];
599 // since AttributedString instances are accessed through iterators
[all...]

Completed in 46 milliseconds