Searched refs:last (Results 176 - 200 of 407) sorted by relevance

1234567891011>>

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXPathLexer.java42 int last, beforeLast; field in class:XPathLexer
44 last = beforeLast = -1;
77 switch (last) {
106 beforeLast = last;
107 last = ss;
111 beforeLast = last;
112 last = ss;
116 beforeLast = last;
117 last = ss;
121 beforeLast = last;
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java618 * the execution picks up from the last scheduled continuation.
1106 Tube last;
1113 last = popCont();
1115 LOGGER.log(Level.FINER, "{0} {1}.processException({2})", new Object[]{getName(), last, throwable});
1116 na = last.processException(throwable);
1122 last = next;
1129 last = popCont();
1131 LOGGER.log(Level.FINER, "{0} {1}.processResponse({2})", new Object[]{getName(), last, packet != null ? "Packet@"+Integer.toHexString(packet.hashCode()) : "null"});
1132 na = last.processResponse(packet);
1137 LOGGER.log(Level.FINER, "{0} {1} returned with {2}", new Object[]{getName(), last, n
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtPath.java321 int last = t.path.length() - 1;
322 if (last > 0 && t.path.charAt(last) == '/') {
323 last--;
326 return last == -1;
328 if ((o.isAbsolute() && (!t.isAbsolute() || olast != last))
329 || last < olast) {
332 for (; olast >= 0; olast--, last--) {
333 if (o.path.charAt(olast) != t.path.charAt(last)) {
338 last
[all...]
/openjdk10/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipPath.java340 int last = this.path.length - 1;
341 if (last > 0 && this.path[last] == '/')
342 last--;
344 return last == -1;
345 if ((o.isAbsolute() &&(!this.isAbsolute() || olast != last)) ||
346 (last < olast))
348 for (; olast >= 0; olast--, last--) {
349 if (o.path[olast] != this.path[last])
353 last
[all...]
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DObjectName.java196 * contains six characters, of which the first and last are spaces.
847 * @return The index following the last character of the key.
888 * following the last character of the value. The second
908 char last = s[next];
909 if (last == '\\') {
913 last = s[next];
914 switch (last) {
922 // quote is the last character, it does not
933 last + "'");
935 } else if (last
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DFilePermission.java162 // without the last character (the "*" or "-").
399 char last = ((len > 0) ? cpath.charAt(len - 1) : 0);
401 if (last == RECURSIVE_CHAR &&
406 } else if (last == WILD_CHAR &&
530 * after removing the base name (the last name in the pathname's name
650 int last = that.cpath.lastIndexOf(File.separatorChar);
651 if (last == -1)
654 // this.cpath.equals(that.cpath.substring(0, last+1));
656 return (this.cpath.length() == (last + 1)) &&
657 this.cpath.regionMatches(0, that.cpath, 0, last
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DList.java408 /** The last element in the list, if any, or null.
410 public A last() { method in class:List
411 A last = null;
414 last = t.head;
417 return last;
522 int last = -1;
526 last = i;
528 return last;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/
H A DControlFlowGraph.java468 FixedNode last = block.getEndNode();
469 if (last instanceof EndNode) {
470 EndNode endNode = (EndNode) last;
476 } else if (last instanceof IfNode) {
477 IfNode ifNode = (IfNode) last;
486 } else if (last instanceof LoopEndNode) {
487 LoopEndNode loopEndNode = (LoopEndNode) last;
490 } else if (last instanceof ControlSinkNode) {
493 assert !(last instanceof AbstractEndNode) : "Algorithm only supports EndNode and LoopEndNode.";
496 for (Node suxNode : last
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jimage/
H A DImageReader.java530 Directory last = rootDir;
535 last = makeDirectory(dir, last);
537 return makeDirectory(parent, last);
541 Directory makeDirectory(String dir, Directory last) { argument
544 nextDir = newDirectory(last, dir);
/openjdk10/jdk/test/java/util/logging/LogManager/Configuration/updateConfiguration/
H A DUpdateConfigurationTest.java80 public void run(Properties propertyFile, boolean last) throws Exception { argument
84 propertyFile, last);
192 static void test(ConfigMode mode, String name, Properties props, boolean last) argument
256 if (last || failed != null) {
533 public static void test(String name, Properties props, boolean last) throws Exception { argument
543 test(configMode, name, props, last); break;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeCounter.java323 // Append separation token after last digit/letter/numeral
394 char last = (char)(((value-1) % range) + min);
396 return alphaValue((value-1) / range, min, max) + last;
399 return "" + last;
/openjdk10/hotspot/test/compiler/compilercontrol/share/scenario/
H A DScenario.java117 // only the last output contains directives got from print command
118 List<OutputAnalyzer> last = new ArrayList<>();
119 last.add(outputList.get(outputList.size() - 1));
120 jcmdProcessor.accept(last);
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java193 int last = path.length() - 1;
196 if (pos == -1 || (pos == last)) {
203 pos = last;
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFFaxCompressor.java483 int last = bitIndex + rowLength;
502 while (bitIndex < last) {
504 nextState(data, lineAddr, bitIndex, last) - bitIndex;
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DTablePrintable.java121 private int last = -1; field in class:TablePrintable
292 while (last < pageIndex) {
309 last++;
H A DJList.java1059 * @return the index of the last visible cell
1090 int last;
1096 last = visIndex;
1108 last = visIndex;
1115 last = visIndex;
1121 last = visIndex;
1124 } while (visIndex != -1 && last != visIndex);
1772 * @param lastIndex the last index in the range, {@code >= firstIndex}
2058 * @param lead the last index to select
2081 * @param lead the last inde
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/parser/
H A DParser.java83 private TagElement last; field in class:Parser
162 /** Start position of the last block. */
377 if ((!space) || (stack == null) || last.breaksFlow() ||
379 last = tag;
413 last = tag;
478 ((last != null) && !last.breaksFlow()) ||
486 last = tag;
487 // Note that we should really check last.breakFlows before
1684 last
[all...]
/openjdk10/jdk/test/java/lang/invoke/common/test/java/lang/invoke/lib/
H A DHelper.java157 int last = result.size() - 1;
158 Class<?> aClass = result.get(last);
160 result.set(last, aClass);
/openjdk10/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLock.java285 int n, last = 0;
292 last += n;
293 } while (buf.get(last-1) != TERMINATOR);
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CardCounts.cpp120 // We use the last address in the range as the range could represent the
121 // last region in the heap. In which case trying to find the card will be an
123 const jbyte* last_card_ptr = _ct_bs->byte_for_const(mr.last());
/openjdk10/hotspot/src/share/vm/memory/
H A DmemRegion.hpp73 HeapWord* last() const { return _start + _word_size - 1; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DDFAContentModel.java421 * nullable(x+) := nullable(x), first(x+) := first(x), last(x+) := last(x)
422 * nullable(x?) := true, first(x?) := first(x), last(x?) := last(x)
452 // to calculate the first and last position sets of each node. This
457 // first/last pos sets.
631 // state. If we gave away the new set last time through then
774 // Now handle our level. We use our left child's last pos
778 final CMStateSet last = ((CMBinOp)nodeCur).getLeft().lastPos();
782 // Now, for every position which is in our left child's last se
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DNamedNodeMapImpl.java456 int last = nodes.size() - 1;
458 while (first <= last) {
459 i = (first + last) / 2;
465 last = i - 1;
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/font/
H A DLineBreakMeasurer.java167 * // the text. For convenience, the last entry is tabLocations
168 * // is the offset of the last character in the text.
372 // equivalent to breakIter.last(), breakIter.previous() but
378 breakIter.last();
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DDefaultFormatter.java483 // Don't go beyond last editable character.
517 int last = -1;
519 while (!isNavigatable(value) && value != last) {
520 last = value;
525 if (last == value || value == max) {

Completed in 309 milliseconds

1234567891011>>