Searched refs:previous (Results 51 - 75 of 110) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfig.java580 String previous = null;
599 // So, if a line is "{", adhere to the previous line.
601 if (previous == null) {
605 previous += " " + current;
607 if (previous != null) {
608 v.addElement(previous);
610 previous = current;
614 if (previous != null) {
615 v.addElement(previous);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java1289 * Complicating factor: We need to handle the case of popping back to a previous
1291 * Basically: If pop says this DTM is now empty, then return to the previous
1297 int previous=m_last_pushed_rtfdtm.pop();
1301 if(m_which_rtfdtm==previous)
1303 if(previous>=0) // guard against none-active
1305 boolean isEmpty=((SAX2RTFDTM)(m_rtfdtm_stack.elementAt(previous))).popRewindMark();
1308 else while(m_which_rtfdtm!=previous)
1311 // _DON'T_ pop the previous, since it's still open (which is why we
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java1450 Token previous = (Token)this.children.elementAt(size-1);
1451 if (!((previous.type == CHAR || previous.type == STRING)
1457 //System.err.println("Merge '"+previous+"' and '"+tok+"'.");
1461 if (previous.type == CHAR) { // Replace previous token by STRING
1463 int ch = previous.getChar();
1468 previous = Token.createString(null);
1469 this.children.setElementAt(previous, size-1);
1471 buffer = new StringBuffer(previous
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java825 * Return the previous character in the normalized text and decrement
831 public int previous() { method in class:NormalizerBase
872 * while {@link #next} and {@link #previous} iterate through characters
875 * by <tt>next</tt> and <tt>previous</tt> and the indices passed to and
925 * {@link #next} and {@link #previous} iterate through characters in the
928 * <tt>previous</tt> and the indices passed to and returned from
959 * over a string, calls to {@link #next} and {@link #previous} may
1048 if((ch=src.previous()) == UCharacterIterator.DONE) {
1064 } else if(UTF16.isLeadSurrogate(chars[1]=(char)src.previous())) {
1075 /* unpaired second surrogate, undo the c2=src.previous() movemen
1174 private static int previous(UCharacterIterator src, method in class:NormalizerBase
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DParser.java198 InputGraph previous = getParentObject().getLastAdded();
200 previous = null;
202 InputGraph curGraph = new InputGraph(getParentObject(), previous, name);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java86 private Token previous; field in class:Parser
120 * to the previous token.
123 lookahead = previous;
129 * member variable, storing its previous value in the previous member
134 previous = lookahead;
/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 DUtilities.java109 // In addition to the previous method it can extend spaces for
212 // In addition to the previous method it can extend spaces for
322 // In addition to the previous method it can extend spaces for
648 offs = lineStart + words.previous() - seg.offset;
789 * Finds the previous word in the given elements text. The first
812 int wordPosition = words.previous();
814 wordPosition = words.previous();
832 wordPosition = words.previous();
/openjdk7/hotspot/src/share/vm/memory/
H A Diterator.hpp133 HeapWord* previous() { return _previous_address; } function in class:UpwardsObjectClosure
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java554 arg = pbp.previous();
653 // Increment any previous value as a numeral.
666 strval = pbp.previous();
700 pbp.previous();
723 args.add(0, pbp.previous());
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java118 kind == NoteKind.END ? iter.previous() : iter.next();
H A DLocalVariableTypeTableWriter.java119 kind == NoteKind.END ? iter.previous() : iter.next();
H A DTryBlockWriter.java109 kind == NoteKind.END ? iter.previous() : iter.next();
/openjdk7/jdk/src/share/demo/applets/CardTest/
H A DCardTest.java138 b = new Button("previous");
171 } else if ("previous".equals(arg)) {
172 ((CardLayout) cards.getLayout()).previous(cards);
/openjdk7/jdk/test/java/util/PluggableLocale/
H A Dfooprovider.jar ... public int next (int) public int preceding (int) public int previous () public void setText (java.text.CharacterIterator) } com/foo ...
/openjdk7/jdk/make/common/
H A DRelease.gmk1313 compare-image:: install-previous-sanity install-previous-jre install-previous-jdk
1328 install-previous-sanity:
1330 $(ECHO) "ERROR: You do not have access to the previous java release jre bundles. \n" \
1338 $(ECHO) "ERROR: You do not have access to the previous java release sdk bundles. \n" \
1345 install-previous-jre: $(PREV_JRE_IMAGE_DIR)/bin/java$(EXE_SUFFIX)
1346 install-previous-jdk: $(PREV_JDK_IMAGE_DIR)/bin/java$(EXE_SUFFIX)
1349 $(TEMP_PREV_JRE_COMPARISON): install-previous-jre $(DIRDIFF_JARFILE)
1356 $(TEMP_PREV_JDK_COMPARISON): install-previous
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java658 TreeNode previous;
661 previous = ancestor;
665 return previous;
1044 * Returns the previous sibling of this node in the parent's children
1170 * previous node, this method first performs a linear search in the
/openjdk7/jdk/test/java/util/ArrayList/
H A DIteratorMicroBenchmark.java165 public T next() { return it.previous(); }
246 sum += it.previous();
343 sum += it.previous();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractButton.java2742 return s.substring(words.previous(), end);
2753 return s.substring(sentence.previous(), end);
2856 end = words.previous();
2857 int start = words.previous();
2872 end = sentence.previous();
2873 int start = sentence.previous();
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s236 MEMBAR_BEFORE_BLD ! to ensure all previous memory load
256 MEMBAR_AFTER_BLD ! to ensure all previous memory load
/openjdk7/jdk/test/java/util/List/
H A DLockStep.java277 it.previous();
294 it.previous();
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DWizardDlg.java106 panesLayout.previous(panesPanel);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DX509CertPath.java287 X509Certificate cert = li.previous();
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java320 obj = i.previous();
431 fwd.set(rev.previous());
946 si.previous();
1002 si.previous();
1236 public E previous() {return i.previous();}
2543 public E previous() { return i.previous(); }
3019 * <li>{@link Iterator#next next} and {@link ListIterator#previous
3020 * previous} alway
3055 public E previous() { throw new NoSuchElementException(); } method in class:Collections.EmptyListIterator
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp1221 MemNode* previous = last; local
1224 memops.push(previous);
1227 if (use->is_Mem() && use != previous)
1231 previous = current;
1270 previous = last; //previous store in pk
1276 assert(in_pack(previous, pk), "previous stays in pack");
1280 // Forward users of my memory state (except "previous) to my input memory state
1283 if (use->is_Mem() && use != previous) {
[all...]

Completed in 92 milliseconds

12345