Searched defs:previous (Results 1 - 25 of 53) sorted by relevance

123

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DIIOPPrimaryToContactInfo.java59 * @param previous - if null return true. Otherwise, find previous in
66 ContactInfo previous,
71 * @param previous - if null then map primary to failover. If failover is
73 * non-empty then return failover. If previous is non-null that
74 * indicates that the previous failed. Therefore, find previous in
76 * previous to primary and return that <code>ContactInfo</code>.
79 ContactInfo previous,
65 hasNext(ContactInfo primary, ContactInfo previous, List contactInfos) argument
78 next(ContactInfo primary, ContactInfo previous, List contactInfos) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java56 * The methods previous() and next() are used for iteration. They return DONE if
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
94 * c = iter.previous()) {
156 public char previous(); method in interface:CharacterIterator
H A DDictionaryBasedBreakIterator.java171 public int previous() { method in class:DictionaryBasedBreakIterator
182 // otherwise, dump the cache and use the inherited previous() method to move
187 int result = super.previous();
505 // and previous(), so this is where we actually refresh the cache.
H A DStringCharacterIterator.java189 * Implements CharacterIterator.previous() for String.
190 * @see CharacterIterator#previous
192 public char previous() method in class:StringCharacterIterator
H A DCollationElementIterator.java176 * previous() updates the pointer first and then returns the element. This
178 * then call previous(), or call previous() and then call next()), you'll get
244 text.previous();
254 text.previous();
263 * Get the previous collation element in the string. <p>This iterator iterates
267 * collation element [or ordering priority] of the previous character in the
273 * iterating (i.e., call next() and then call previous(), or call previous()
277 public int previous() method in class:CollationElementIterator
[all...]
H A DBreakIterator.java160 * for (int start = boundary.previous();
162 * end = start, start = boundary.previous()) {
185 * int start = boundary.previous();
196 * int start = boundary.previous();
262 * DONE is returned by previous(), next(), next(int), preceding(int)
295 * does nothing. Negative values move to previous boundaries
321 * @return The character index of the previous text boundary or
325 public abstract int previous(); method in class:BreakIterator
364 pos = previous();
398 * recently returned by next(), next(int), previous(), firs
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DListIterator.java35 * to {@code previous()} and the element that would be
46 * {@link #previous()}.
77 * or intermixed with calls to {@link #previous} to go back and forth.
78 * (Note that alternating calls to {@code next} and {@code previous}
89 * returns {@code true} if {@link #previous} would return an element
98 * Returns the previous element in the list and moves the cursor
102 * to {@code next} and {@code previous} will return the same
105 * @return the previous element in the list
106 * @throws NoSuchElementException if the iteration has no previous
109 E previous(); method in interface:ListIterator
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DThreadContext.java70 "previous" and "key" both null. There is a different sentinel
99 private /*final*/ ThreadContext previous; field in class:ThreadContext
103 private ThreadContext(ThreadContext previous, String key, Object value) { argument
104 this.previous = previous;
163 context = context.previous) {
261 context = context.previous) {
312 throw new IllegalArgumentException("previous context not empty");
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DCharArrayIterator.java118 public char previous() { method in class:CharArrayIterator
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DPrinter.java78 InputGraph previous = null;
80 export(writer, graph, previous, true);
81 previous = graph;
87 public void export(XMLWriter writer, InputGraph graph, InputGraph previous, boolean difference) throws IOException { argument
96 if (previous != null) {
97 for (InputNode n : previous.getNodes()) {
128 if (previous != null) {
129 for (InputEdge e : previous.getEdges()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DFragmentedArray.java37 FragmentedArray(T item, FragmentedArray<T> previous) { argument
39 if (previous != null) {
40 previous._next = this;
41 _previous = previous;
70 void setPrevious(FragmentedArray<T> previous) { argument
71 _previous = previous;
72 if (previous != null) {
73 previous._next = this;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java97 * @see UCharacterIterator#previous()
99 public int previous() { method in class:CharacterIteratorWrapper
100 int i = iterator.previous();
H A DReplaceableUCharacterIterator.java138 * Returns previous UTF16 character and decrements the iterator's currentIndex by
145 public int previous(){ method in class:ReplaceableUCharacterIterator
H A DUCharacterIterator.java169 previous();
176 * Decrement to the position of the previous code unit in the
180 * @return the previous code unit in the text, or DONE if the new
184 public abstract int previous(); method in class:UCharacterIterator
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DElemContext.java107 /** The previous element "stack frame". */
135 * @param previous The "stack frame" corresponding to the new
138 private ElemContext(final ElemContext previous) argument
140 m_prev = previous;
141 m_currentElemDepth = previous.m_currentElemDepth + 1;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java44 * c) previous() returns null when the current element is the root
287 * Fetches the previous Element. If howver the current
291 * @return previous <code>Element</code> if available
294 public Element previous() { method in class:ElementIterator
308 /* return child at previous index. */
312 first child, therefore previous is the
H A DWhitespaceBasedBreakIterator.java90 public int previous() { method in class:WhitespaceBasedBreakIterator
H A DSegment.java198 public char previous() { method in class:Segment
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DPCSCTerminals.java131 private int current, previous; field in class:PCSCTerminals.ReaderState
134 previous = SCARD_STATE_UNAWARE;
140 previous = current;
144 return !present(previous) && present(current);
147 return present(previous) && !present(current);
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java92 public int previous() { method in class:MirroredBreakIterator
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DOutput.java104 private void transferAttribute(Output previous, String qname) { argument
105 if (!hasAttribute(qname) && previous.hasAttribute(qname)) {
106 addAttribute(qname, previous.getAttribute(qname));
110 public void mergeOutput(Output previous) { argument
111 // Transfer attributes from previous xsl:output
112 transferAttribute(previous, "version");
113 transferAttribute(previous, "method");
114 transferAttribute(previous, "encoding");
115 transferAttribute(previous, "doctype-system");
116 transferAttribute(previous, "doctyp
[all...]
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DResetPeakThreadCount.java71 long previous = mbean.getThreadCount();
77 checkThreadCount(previous, current, DAEMON_THREADS_1);
78 previous = current;
83 checkThreadCount(previous, current, TERMINATE_1 * -1);
85 previous = current;
92 checkThreadCount(previous, current, DAEMON_THREADS_2);
93 previous = current;
102 checkThreadCount(previous, current, DAEMON_THREADS_3);
103 previous = current;
108 checkThreadCount(previous, curren
224 checkThreadCount(long previous, long current, int expectedDelta) argument
[all...]
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DBreakIteratorProviderImpl.java133 public int previous() { method in class:BreakIteratorProviderImpl.FooBreakIterator
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java57 public Object previous() {
244 public Object previous() { method in class:XSObjectListImpl.XSObjectListIterator
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java100 header.next = header.previous = header;
139 return header.previous.element;
159 return remove(header.previous);
281 Entry<E> predecessor = successor.previous;
287 successor.previous = predecessor;
300 e.next = e.previous = null;
304 header.next = header.previous = header;
378 e = e.previous;
421 for (Entry e = header.previous; e != header; e = e.previous) {
692 public E previous() { method in class:IdentityLinkedList.ListItr
750 Entry<E> previous; field in class:IdentityLinkedList.Entry
752 Entry(E element, Entry<E> next, Entry<E> previous) argument
[all...]

Completed in 102 milliseconds

123