Searched refs:iterators (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java115 AttributedCharacterIterator iterators[] = new
119 iterators[counter] = ((AttributedString)attributedStrings.
122 return new AttributedString(iterators).getIterator();
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 DMessageFormat.java900 ArrayList iterators = new ArrayList();
906 subformat((Object[]) arguments, result, null, iterators);
907 if (iterators.size() == 0) {
911 (AttributedCharacterIterator[])iterators.toArray(
912 new AttributedCharacterIterator[iterators.size()]));
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];
587 // since AttributedString instances are accessed through iterators
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentImpl.java99 protected Vector iterators; field in class:DocumentImpl
229 if (iterators == null) {
230 iterators = new Vector();
233 iterators.addElement(iterator);
288 if (iterators == null) return;
290 iterators.removeElement(nodeIterator);
1131 // notify iterators
1132 if (iterators != null) {
1133 int size = iterators.size();
1135 ((NodeIteratorImpl)iterators
[all...]

Completed in 52 milliseconds