Searched refs:last (Results 126 - 150 of 407) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DLinkedHashMap.java63 * in which its entries were last accessed, from least-recently accessed to
223 LinkedHashMap.Entry<K,V> last = tail;
225 if (last == null)
228 p.before = last;
229 last.after = p;
305 void afterNodeAccess(Node<K,V> e) { // move node to last
306 LinkedHashMap.Entry<K,V> last;
307 if (accessOrder && (last = tail) != e) {
318 last = b;
319 if (last
[all...]
/openjdk10/jdk/src/java.base/windows/native/libnet/
H A DInet4AddressImpl.c69 struct addrinfo hints, *res = NULL, *resNew = NULL, *last = NULL, local
125 last->ai_next = next;
127 last = next;
157 last = resNew;
159 free(last);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/table/
H A DDefaultTableModel.java447 int first, last;
450 last = end;
454 last = to + end - start;
456 rotate(dataVector, first, last + 1, shift);
458 fireTableRowsUpdated(first, last);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DAbstractParser.java71 /** Type of last token. */
72 protected TokenType last; field in class:AbstractParser
83 /** Position of last EOL + 1. */
114 this.last = EOL;
128 while (i > stream.last()) {
206 // Capture last token type, but ignore comments (which are irrelevant for the purpose of newline detection).
208 last = type;
220 if (last != EOL) {
/openjdk10/jdk/test/java/util/concurrent/tck/
H A DTreeMapTest.java152 * lastKey returns last key
206 Integer last = (Integer)i.next();
207 assertEquals(last, one);
211 assertTrue(last.compareTo(k) < 0);
212 last = k;
225 Integer last = (Integer)i.next();
226 assertEquals(last, five);
230 assertTrue(last.compareTo(k) > 0);
231 last = k;
244 Integer last
[all...]
H A DConcurrentSkipListMapTest.java153 * lastKey returns last key
207 Integer last = (Integer)i.next();
208 assertEquals(last, one);
212 assertTrue(last.compareTo(k) < 0);
213 last = k;
226 Integer last = (Integer)i.next();
227 assertEquals(last, five);
231 assertTrue(last.compareTo(k) > 0);
232 last = k;
245 Integer last
[all...]
/openjdk10/hotspot/src/share/vm/gc/shared/
H A Dspace.cpp123 HeapWord* last = mr.last(); local
139 top_obj = _sp->block_start(last);
469 guarantee(p == top(), "end of last object must match end of space");
581 HeapWord* last = bottom();
582 HeapWord* cur = last;
584 last = cur;
587 assert(oopDesc::is_oop(oop(last)), PTR_FORMAT " should be an object start", p2i(last));
588 return last;
[all...]
H A DcardTableModRefBSForCTRS.hpp102 return (size_t)(addr_to_chunk_index(mr.last()) -
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java177 // paint the selected tab last.
453 // first or last
455 boolean last = nonRectIndex == tabCount - 1;
459 last = true;
462 last = false;
465 if (needsRightScrollTab) last = false;
470 final boolean tempSwap = last;
471 last = first;
478 painter.state.set(getSegmentPosition(first, last, isLeftToRight));
491 final boolean tempSwap = last;
508 getSegmentPosition(final boolean first, final boolean last, final boolean isLeftToRight) argument
548 Rectangle standard, first, last; field in class:AquaTabbedPaneUI.AlterRects
577 fillTabWithBackground(final Graphics g, final Rectangle rect, final int tabPlacement, final boolean first, final boolean last, final Color color) argument
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DsparsePRT.cpp427 RSHashTable* last = _next; local
428 _next = new RSHashTable(last->capacity() * 2);
429 for (size_t i = 0; i < last->num_entries(); i++) {
430 SparsePRTEntry* e = last->entry((int)i);
435 if (last != _cur) {
436 delete last;
H A DsurvRateGroup.cpp103 double surv_rate = _surv_rate_pred[_region_num-1]->last();
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinflate.c70 * - Unroll last copy for window match in inflate_fast()
155 state->last = 0;
407 Update the window with the last wsize (normally 32K) bytes written before
415 advantage, since only the last 32K of output is copied to the sliding window
630 When there is a window, goto inf_leave will update the window with the last
660 code last; /* parent table entry */ local
876 if (state->last) {
882 state->last = BITS(1);
887 state->last ? " (last)"
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Ddomgraph.cpp78 // IterGVN. They are cleaned up by CCP or the loop opts, but the last
204 i = _stack_top->freq_idx; // process most frequent successor last
328 Tarjan **last;
335 last = top;
349 } while (next < last);
350 } while (last < top);
591 NTarjan **last;
598 last = top;
612 } while (next < last);
613 } while (last < to
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeSortRecordFactory.java144 public NodeSortRecord makeNodeSortRecord(int node, int last) argument
157 sortRecord.initialize(node, last, _dom, _sortSettings);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DEncodingInfo.java321 private EncodingImpl(String encoding, int first, int last, int codePoint) { argument
325 m_last = last;
/openjdk10/jdk/test/java/text/BreakIterator/
H A DExceptionTest.java49 final int last = bi.last();
/openjdk10/jdk/test/java/util/Arrays/
H A DSortingLongBenchmarkTestJMH.java226 * @param right the index of the last element, inclusive, to be sorted
312 for (int last; count > 1; count = last) {
313 for (int k = (last = 0) + 2; k <= count; k += 2) {
323 run[++last] = hi;
330 run[++last] = right;
346 * @param right the index of the last element, inclusive, to be sorted
407 long last = a[right];
409 while (last < a[--right]) {
412 a[right + 1] = last;
[all...]
H A DSortingIntBenchmarkTestJMH.java303 for (int last; count > 1; count = last) {
304 for (int k = (last = 0) + 2; k <= count; k += 2) {
314 run[++last] = hi;
321 run[++last] = right;
390 int last = a[right];
392 while (last < a[--right]) {
395 a[right + 1] = last;
477 * The first and the last elements to be sorted are moved to the
/openjdk10/jdk/test/lib/testlibrary/bootlib/java.base/java/util/stream/
H A DLambdaTestHelpers.java220 T last = i.next();
223 assertTrue(last.compareTo(t) <= 0);
224 assertTrue(t.compareTo(last) >= 0);
225 last = t;
238 T last = i.next();
241 assertTrue(comp.compare(last, t) <= 0);
242 assertTrue(comp.compare(t, last) >= 0);
243 last = t;
/openjdk10/jdk/test/javax/swing/JTable/
H A DLostTextTest.java125 int last = 10;
126 for (int i = 0; i <= last; i++) {
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DparCardTableModRefBS.cpp74 uintptr_t last_chunk_index = addr_to_chunk_index(mr.last());
100 jbyte* end_card = byte_after(used.last());
213 jbyte* last_card_of_cur_chunk = byte_for(chunk_mr.last());
217 // Note that this does not need to go beyond our last card
246 // This is not the last chunk in the used region.
247 // What is our last block? We check the first block of
248 // the next (right) chunk rather than strictly check our last block
252 if ((last_block == chunk_mr.end()) // our last block does not straddle boundary
260 // last_obj_card is the card corresponding to the start of the last object
261 // in the chunk. Note that the last objec
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/validator/
H A DPKIXValidator.java152 * Returns the length of the last certification path that is validated by
158 * @return the length of the last certification path passed to
254 X509Certificate last = chain[chain.length - 1];
255 X500Principal issuer = last.getIssuerX500Principal();
256 X500Principal subject = last.getSubjectX500Principal();
258 isSignatureValid(trustedSubjects.get(issuer), last)) {
272 // temporarily set last cert as sole trust anchor
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
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
H A DWhitespaceBasedBreakIterator.java78 public int last() { method in class:WhitespaceBasedBreakIterator
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DStringCharacterIterator.java88 * @param end Index of the character following the last character
136 * Implements CharacterIterator.last() for String.
137 * @see CharacterIterator#last
139 public char last() method in class:StringCharacterIterator

Completed in 206 milliseconds

1234567891011>>