Searched refs:last (Results 1 - 25 of 407) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/compiler/c2/
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
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/undo/
H A DCompoundEdit.java85 * Returns the last <code>UndoableEdit</code> in
89 * @return the last {@code UndoableEdit} in {@code edits},
120 * <p>The last edit added to this <code>CompoundEdit</code>
123 * given a chance to <code>replaceEdit</code> the last edit.
135 UndoableEdit last = lastEdit();
138 // Otherwise, give the last one a chance to absorb the new
140 // the last one.
142 if (last == null) {
145 else if (!last.addEdit(anEdit)) {
146 if (anEdit.replaceEdit(last)) {
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8013874.js40 function NameBuilder(first, last) {
42 this.last = last;
48 function NameBuilder2(first, last) {
50 this.last = last;
H A DJDK-8020132.js31 var last = 58565; variable
23974 65278: last
/openjdk10/jdk/test/sun/security/krb5/
H A DMicroTime.java37 KerberosTime last = t1;
42 if (!last.equals(t2)) {
43 last = t2;
/openjdk10/langtools/test/tools/javac/lambda/
H A DMethodReference11.java39 String last = "1";
41 if (String.CASE_INSENSITIVE_ORDER.compare(last, s) > 0) {
/openjdk10/jdk/src/java.base/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()) {
127 * @return the last character in the text, or DONE if the text is empty
130 public char last(); method in interface:CharacterIterator
178 * @return the index after the last character in the text
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java53 /** A pointer pointing to the last element of 'elems' containing data,
56 private List<A> last; field in class:ListBuffer
74 this.last = null;
100 /** Copy list and sets last.
106 elems = last = List.of(orig.head);
109 last.tail = List.of(orig.head);
110 last = last.tail;
119 if (last == null) last
270 public A last() { method in class:ListBuffer
[all...]
/openjdk10/jdk/test/javax/sql/testng/util/
H A DSuperHero.java34 private String last; field in class:SuperHero
46 last = lname;
60 last = stream.readString();
68 stream.writeString(last);
75 return "[ name =" + first + " " + last + " "
94 return first.equals(ss.first) && last.equals(ss.last)
105 + ((31 + last.hashCode()) * 31) * 31
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DChecks.java57 String last = name.substring(off);
58 if (!isJavaIdentifier(last)) {
60 + ": '" + last + "' is not a Java identifier");
77 String last = name.substring(off);
78 return isJavaIdentifier(last);
152 String last = name.substring(off);
153 return isJavaIdentifier(last);
175 String last = name.substring(off);
176 if (!isJavaIdentifier(last)) {
178 + ": '" + last
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/dtdparser/
H A DInputEntity.java403 int last; // last char to return
409 for (first = last = start, sawContent = false; ; last++) {
412 if (last >= finish) {
413 if (last > first) {
415 docHandler.characters(buf, first, last - first);
417 start = last;
422 last = first - 1; // incremented in loop
426 c = buf[last];
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java57 List<InputSlot> last = new ArrayList<>();
74 last.add(is);
76 last.clear();
81 if (last.size() > 3) {
82 InputSlot first = last.get(0);
86 for (int i = 0; i < last.size(); i++) {
87 InputSlot is2 = last.get(i);
96 for (int i = 1; i < last.size(); i++) {
97 f.removeSlot(last.get(i));
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/
H A DInsnList.java83 * The last instruction in this list. May be <tt>null</tt>.
85 private AbstractInsnNode last; field in class:InsnList
113 * Returns the last instruction in this list.
115 * @return the last instruction in this list, or <tt>null</tt> if the list
119 return last;
250 last = insn;
280 if (last == null) {
282 last = insn;
284 last.next = insn;
285 insn.prev = last;
[all...]
/openjdk10/hotspot/test/compiler/stringopts/
H A DTestStringObjectInitialization.java55 Thread last = new Thread(new Runner(t));
56 last.start();
57 last.join();
/openjdk10/jdk/test/javax/security/auth/Subject/
H A DSynch.java45 Principal last = new X500Principal("CN=Bob");
49 principals.remove(last);
50 last = next;
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DLookupHistory.java45 private T last; field in class:LookupHistory.LookupHistoryImpl
51 last = Utilities.actionsGlobalContext().lookup(klass);
55 return last;
62 last = current;
/openjdk10/jdk/test/javax/swing/JTable/8005019/
H A Dbug8005019.java51 int last = 2;
52 for (int i = 0; i <= last; i++) {
58 table.setRowSelectionInterval(last, last);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java43 Attr last = null; field in class:NamespaceContextIterator
112 last = next;
114 return last;
119 if (last == null) {
122 ((Element) context).removeAttributeNode(last);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFT6Compressor.java76 int last = a0 + width;
82 a0 : nextState(data, lineAddr, a0, last);
88 a0 : nextState(refData, refAddr, a0, last);
96 int b2 = nextState(refData, refAddr, b1, last);
106 int a2 = nextState(data, lineAddr, a1, last);
113 if(a0 >= last) {
118 a1 = nextState(data, lineAddr, a0, last);
119 b1 = nextState(refData, refAddr, a0, last);
124 b1 = nextState(refData, refAddr, b1, last);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2DOM.java110 final Node last = (Node)_nodeStk.peek();
113 if (last != _document) {
120 final Node last = (Node)_nodeStk.peek();
121 if (last == _root && _nextSiblingCache != null) {
122 _lastSibling = last.insertBefore(_document.createTextNode(_textBuffer.toString()), _nextSiblingCache);
125 _lastSibling = last.appendChild(_document.createTextNode(_textBuffer.toString()));
210 Node last = (Node)_nodeStk.peek();
214 if (last == _root && _nextSibling != null)
215 last.insertBefore(tmp, _nextSibling);
217 last
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DDetailImpl.java94 SOAPElement last = null;
115 last = next;
117 return (DetailEntry) last;
122 if (last == null) {
125 SOAPElement target = last;
127 last = null;
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DNormalizer.java59 char last = 'a';
62 if ((c == ' ') && (sb.length() == 0 || last == ' ')) {
68 if (last != ' ') {
70 last = ' ';
74 last = c;
77 //remove the last space
78 if (last == ' ') {
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-set.cc226 * @last:
235 hb_codepoint_t last)
237 set->add_range (first, last);
260 * @last:
269 hb_codepoint_t last)
271 set->del_range (first, last);
456 * @last: (inout): input current last and output last codepoint in the range.
459 * are greater than current value of @last
233 hb_set_add_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
267 hb_set_del_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
466 hb_set_next_range(const hb_set_t *set, hb_codepoint_t *first, hb_codepoint_t *last) argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DScannerSupport.java30 private int lastFetched; // last fetched value for unfetch support
56 final int last = c;
71 c = last;
76 final int last = c;
93 c = last;
98 final int last = c;
115 c = last;
/openjdk10/jdk/make/src/classes/build/tools/generatecharacter/
H A DCharacterScript.java72 //last one.
124 int[] last = scripts[0];
126 if (scripts[i][0] != (last[1] + 1)) {
129 for (int cp = last[1] + 1; cp < scripts[i][0]; cp++) {
139 a[0] = last[1] + 1;
144 if (last[2] == scripts[i][2]) {
146 last[1] = scripts[i][1];
149 // expand last
150 last[1] = scripts[i][0] - 1;
155 last
[all...]

Completed in 229 milliseconds

1234567891011>>