Searched defs:last (Results 1 - 25 of 128) sorted by relevance

123456

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCurrentNodeListFilter.java35 public abstract boolean test(int node, int position, int last, int current, argument
H A DNodeSortRecordFactory.java145 public NodeSortRecord makeNodeSortRecord(int node, int last) argument
155 sortRecord.initialize(node, last, _dom, _sortSettings);
H A DNodeSortRecord.java100 public final void initialize(int node, int last, DOM dom, argument
106 _last = last;
250 int last);
248 extractValueFromDOM(DOM dom, int current, int level, AbstractTranslet translet, int last) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java54 * by calling setIndex(), first(), and last().
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
126 * @return the last character in the text, or DONE if the text is empty
129 public char last(); method in interface:CharacterIterator
177 * @return the index after the last character in the text
H A DDictionaryBasedBreakIterator.java92 * last range passed over by next()
159 public int last() { method in class:DictionaryBasedBreakIterator
163 return super.last();
168 * @return The position of the last boundary position before the
196 * Sets the current iteration position to the last boundary position
199 * @return The position of the last boundary before "offset"
216 // then all we have to do is search the cache for the last break position
384 // on the last character of a legal word. Push that position onto
426 // point the last time we tried it (this is to prevent a bunch of
461 // last brea
[all...]
H A DStringCharacterIterator.java85 * @param end Index of the character following the last character
133 * Implements CharacterIterator.last() for String.
134 * @see CharacterIterator#last
136 public char last() method in class:StringCharacterIterator
/openjdk7/jdk/src/share/classes/java/util/
H A DSortedSet.java216 * Returns the last (highest) element currently in this set.
218 * @return the last (highest) element currently in this set
221 E last(); method in interface:SortedSet
H A DTreeSet.java400 public E last() { method in class:TreeSet
/openjdk7/hotspot/test/compiler/7048332/
H A DTest7048332.java38 static int last = 2; field in class:Test7048332
42 if (last >= first) {
43 result = last - first;
45 result = last - first + capacity;
52 last = (i & 1) << 1; // 0 or 2
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DCharArrayIterator.java61 * @return the last character in the text, or DONE if the text is empty
64 public char last() { method in class:CharArrayIterator
159 * @return the index after the last character in the text
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DContextNodeList.java124 * Get the index of the last node in this list.
127 * @return the index of the last node in this list.
132 * Set the index of the last node in this list.
135 * @param last the index of the last node in this list.
137 public void setLast(int last); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWhitespaceBasedBreakIterator.java78 public int last() { method in class:WhitespaceBasedBreakIterator
H A DSegment.java144 * @return the last character in the text, or DONE if the text is empty
148 public char last() { method in class:Segment
239 * @return the index after the last character in the text
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.hpp39 ** TruncatedSeq: this class keeps track of the last L elements
68 virtual double last() const = 0; // last element added in the sequence
101 virtual double last() const { return _last; } function in class:NumberSeq
114 double *_sequence; // buffers the last L elements in the sequence
125 virtual double last() const; // the last value added to the sequence
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java43 Attr last = null; field in class:NamespaceContextIterator
110 last = next;
112 return last;
116 if (last == null) {
119 ((Element) context).removeAttributeNode(last);
/openjdk7/jdk/test/java/awt/event/MouseEvent/RobotLWTest/
H A DRobotLWTest.java82 b.last = null;
86 if (b.last == null) {
90 b.last = null;
94 if (b.last == null || b.last.getID() != MouseEvent.MOUSE_ENTERED) {
97 b.last = b.prev = null;
115 public MouseEvent last = null; field in class:MyLWContainer
123 prev = last;
124 last = e;
131 public MouseEvent last field in class:MyLWComponent
[all...]
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DAgent.cpp221 /* Move the last element to this Monitor's slot */
223 Monitor *last = monitor_list[monitor_count-1]; local
224 monitor_list[slot] = last;
225 last->set_slot(slot);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c97 unsigned char FAR *last; /* while in < last, enough input available */ local
124 last = in + (strm->avail_in - 5);
309 } while (in < last && out < end);
320 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoToken.java192 * Checks if the context tag in a sequence is in correct order. The "last"
194 * @param last the last tag seen
196 * @return the current tag, used as the next value for last
199 static int checkNextField(int last, int current) throws GSSException { argument
200 if (last < current) {
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java62 public int last() { method in class:MirroredBreakIterator
77 last();
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpNamedListTableCache.java61 * The last allocate index.
63 protected long last = 0; field in class:SnmpNamedListTableCache
104 if (++last > 0x00000000FFFFFFFFL) {
107 last = 0;
111 // If we never wrapped, we can safely return last as new index.
112 if (!wrapped) return new SnmpOid(last);
116 if (++last > 0x00000000FFFFFFFFL) last = 1;
117 final SnmpOid testOid = new SnmpOid(last);
/openjdk7/langtools/test/tools/javac/api/
H A DTestGetElement.java41 @SupportedOptions({"test", "last"})
102 boolean _last = Boolean.parseBoolean(options.get("last"));
127 final boolean last; field in class:TestGetElement.Scanner
130 Scanner(Trees trees, boolean last) { argument
132 this.last = last;
183 if (last && !e.getSimpleName().contentEquals("last")) {
184 m.printMessage(Diagnostic.Kind.ERROR, "Unexpected name in last test: "
185 + e.getSimpleName() + ", expected: last");
234 int last; // this name is verified by the test to make sure that all decls are checked field in class:TestGetElement
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodingInfo.java322 private EncodingImpl(String encoding, int first, int last, int codePoint) { argument
326 m_last = last;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java121 private int last = -1; field in class:TablePrintable
294 while (last < pageIndex) {
309 last++;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CardCounts.cpp172 // We use the last address in hr as hr could be the
173 // last region in the heap. In which case trying to find
176 HeapWord* last = hr->end() - 1; local
177 assert(_g1h->g1_committed().contains(last),
178 err_msg("last not in committed: "
179 "last: " PTR_FORMAT ", "
181 last,
186 const jbyte* last_card_ptr = _ct_bs->byte_for_const(last);

Completed in 285 milliseconds

123456