Searched refs:DONE (Results 1 - 25 of 57) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/text/
H A DComposedCharIter.java37 public static final int DONE = NormalizerBase.DONE; field in class:ComposedCharIter
64 * to <tt>next</tt> will return {@link #DONE}.
68 return DONE;
H A DCodePointIterator.java41 public static final int DONE = -1; field in class:CodePointIterator
109 return DONE;
124 return DONE;
160 return DONE;
175 return DONE;
201 if (cp1 != CharacterIterator.DONE) {
203 if (Character.isHighSurrogate(cp1) && cp2 != CharacterIterator.DONE) {
211 return DONE;
216 if (cp2 != CharacterIterator.DONE) {
226 return DONE;
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java64 if(c==CharacterIterator.DONE){
65 return DONE;
90 if(i==CharacterIterator.DONE){
91 return DONE;
101 if(i==CharacterIterator.DONE){
102 return DONE;
125 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
H A DReplaceableUCharacterIterator.java102 return DONE;
126 * @return next UTF16 character in text or DONE if the new currentIndex is off the
133 return DONE;
142 * @return next UTF16 character in text or DONE if the new currentIndex is off the
149 return DONE;
159 * @return the character at the specified currentIndex or DONE if the specified
H A DUCharacterIterator.java71 public static final int DONE = -1; field in class:UCharacterIterator
116 * of range, returns DONE. Index is not changed.
141 * range, DONE is returned, and the iterator is reset to the limit
143 * @return the next UTF16 code unit, or DONE if the index is at the limit
156 * @return the next codepoint in text, or DONE if the index is at
167 }else if (ch2 != DONE) {
179 * DONE is returned.
180 * @return the previous code unit in the text, or DONE if the new
H A DRuleCharacterIterator.java62 // 2. Rather than return DONE, throw an exception if the end
100 public static final int DONE = -1; field in class:RuleCharacterIterator
154 * Returns the next character using the given options, or DONE if there
159 * @return the current 32-bit code point, or DONE
162 int c = DONE;
346 return (i < text.length()) ? UTF16.charAt(text, i) : DONE;
H A DNormalizerBase.java171 * This is guaranteed to have the same value as {@link UCharacterIterator#DONE}.
174 public static final int DONE = UCharacterIterator.DONE; field in class:NormalizerBase
802 return DONE;
809 * of the text has already been reached, {@link #DONE} is returned.
819 return DONE;
827 * of the text has already been reached, {@link #DONE} is returned.
837 return DONE;
1048 if((ch=src.previous()) == UCharacterIterator.DONE) {
1138 while(src.getIndex()>0 && chars[0]!=UCharacterIterator.DONE) {
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java56 * The methods previous() and next() are used for iteration. They return DONE if
58 * signaling that the iterator has reached the end of the sequence. DONE is
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
88 * c != CharacterIterator.DONE && notBoundary(c);
93 * c != CharacterIterator.DONE && notBoundary(c);
113 public static final char DONE = '\uFFFF'; field in interface:CharacterIterator
118 * @return the first character in the text, or DONE if the text is empty
126 * @return the last character in the text, or DONE if the text is empty
133 * @return the character at the current position or DONE i
[all...]
H A DStringCharacterIterator.java168 return DONE;
184 return DONE;
199 return DONE;
H A DRuleBasedBreakIterator.java624 private int cachedLastKnownBreak = BreakIterator.DONE;
631 // if we're already sitting at the beginning of the text, return DONE
634 return BreakIterator.DONE;
644 if (lastResult >= start || lastResult <= BreakIterator.DONE) {
658 while (result != BreakIterator.DONE && result < start) {
727 return CharacterIterator.DONE;
783 if (result >= offset || result <= BreakIterator.DONE) {
791 while (result != BreakIterator.DONE && result <= offset) {
890 cachedLastKnownBreak = BreakIterator.DONE;
906 // if we're already at the end of the text, return DONE
[all...]
H A DCollationElementIterator.java217 if (ch == NormalizerBase.DONE) {
243 } else if (consonant != NormalizerBase.DONE) {
253 } else if (consonant != NormalizerBase.DONE) {
307 if (ch == NormalizerBase.DONE) {
668 while (maxLength > 0 && c != NormalizerBase.DONE) {
736 while (maxLength > 0 && c != NormalizerBase.DONE) {
/openjdk7/jdk/test/sun/rmi/runtime/Log/4504153/
H A DTest4504153.java41 private final static String DONE = "Done!"; field in class:Test4504153
58 if (errString.indexOf(DONE) < 0) {
74 System.err.println(DONE);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DSegment.java129 * @return the first character in the text, or DONE if the text is empty
138 return DONE;
144 * @return the last character in the text, or DONE if the text is empty
154 return DONE;
159 * @return the character at the current position or DONE if the current
168 return DONE;
175 * a value of DONE is returned.
176 * @return the character at the new position or DONE if the new
185 return DONE;
193 * remains at getBeginIndex() and a value of DONE i
[all...]
H A DWhitespaceBasedBreakIterator.java55 for (char c = ci.first(); c != CharacterIterator.DONE; c = ci.next()) {
87 return (pos == breaks.length - 1 ? DONE : breaks[++pos]);
91 return (pos == 0 ? DONE : breaks[--pos]);
108 return DONE;
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java41 for (; i != DONE; i = bi.next()) {
74 return DONE;
78 return DONE;
86 return DONE;
94 return DONE;
108 return DONE;
120 return DONE;
H A DExceptionTest.java31 import static java.text.BreakIterator.DONE;
59 check(bi.following(i), DONE);
80 check(bi.preceding(i), DONE);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DCharArrayIterator.java49 * @return the first character in the text, or DONE if the text is empty
61 * @return the last character in the text, or DONE if the text is empty
77 * @return the character at the current position or DONE if the current
87 return DONE;
95 * a value of DONE is returned.
96 * @return the character at the new position or DONE if the new
107 return DONE;
114 * remains at getBeginIndex() and a value of DONE is returned.
115 * @return the character at the new position or DONE if the current
126 return DONE;
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java123 while ((ch = nextCodePoint(lim)) != DONE && (mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK) == sl);
141 static final int DONE = -1; field in class:FontRunIterator
149 return DONE;
H A DScriptRun.java166 while ((ch = nextCodePoint()) != DONE) {
243 static final int DONE = -1; field in class:ScriptRun
247 return DONE;
H A DFontResolver.java189 * a different index or until the iterator is DONE, and returns the font index.
198 if (cp != CodePointIterator.DONE) {
201 while ((cp = iter.next()) != CodePointIterator.DONE) {
/openjdk7/langtools/test/tools/javac/processing/6350124/
H A DHelloWorldAP.java37 boolean DONE=false; field in class:HelloWorldAP
48 if(!renv.processingOver() && !DONE) {
67 DONE=true;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.h71 DONE, /* finished check, done -- remain here until reset */ enumerator in enum:__anon662
97 CHECK -> LENGTH -> DONE
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java374 * @return the first character in the text, or DONE if the text is empty
381 return DONE;
387 * @return the last character in the text, or DONE if the text is empty
395 return DONE;
400 * @return the character at the current position or DONE if the current
405 return pos == max ? DONE : chars[pos];
413 * a value of DONE is returned.
414 * @return the character at the new position or DONE if the new
422 return DONE;
429 * remains at getBeginIndex() and a value of DONE i
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DTextComponent.java1107 while (current != BreakIterator.DONE) {
1117 return BreakIterator.DONE;
1144 if (start == BreakIterator.DONE || start >= s.length()) {
1148 if (end == BreakIterator.DONE || end >= s.length()) {
1158 if (start == BreakIterator.DONE || start >= s.length()) {
1162 if (end == BreakIterator.DONE || end >= s.length()) {
1197 if (end == BreakIterator.DONE) {
1201 if (start == BreakIterator.DONE) {
1213 if (start == BreakIterator.DONE) {
H A DMediaTracker.java259 static final int DONE = (ABORTED | ERRORED | COMPLETE); field in class:MediaTracker
314 if ((cur.getStatus(load, verify) & DONE) == 0) {
533 && (cur.getStatus(load, verify) & DONE) == 0)
862 static final int DONE = (ABORTED | ERRORED | COMPLETE); field in class:MediaEntry

Completed in 90 milliseconds

123