Searched refs:begin (Results 1 - 25 of 251) sorted by relevance

1234567891011

/openjdk10/nashorn/test/script/nosecurity/parsertests/
H A DlabelledStat.js30 begin: { for (;;) break begin };
31 begin: { while (true) break begin };
H A DcontinueStat.js31 begin: { while (true) { continue begin; } };
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A DlabelledStat.js38 begin: { for (;;) break begin };
39 begin: { while (true) break begin };
40 begin: { while (false) continue begin };
41 begin: { for (;;) continue begin };
42 begin: { do continue begin; whil
[all...]
H A DcontinueStat.js38 begin: { while (true) { continue begin; } };
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DStringCharacterIterator.java56 private int begin; field in class:StringCharacterIterator
58 // invariant: begin <= pos <= end
87 * @param begin Index of the first character
91 public StringCharacterIterator(String text, int begin, int end, int pos) { argument
96 if (begin < 0 || begin > end || end > text.length())
99 if (pos < begin || pos > end)
102 this.begin = begin;
120 this.begin
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/font/
H A DCharArrayIterator.java34 private int begin; field in class:CharArrayIterator
41 CharArrayIterator(char[] chars, int begin) { argument
43 reset(chars, begin);
140 position -= begin;
153 return begin;
162 return begin+chars.length;
170 return begin+pos;
178 CharArrayIterator c = new CharArrayIterator(chars, begin);
187 void reset(char[] chars, int begin) { argument
190 this.begin
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DSignatureConverter.java54 public void doObject(int begin, int end) { doObject(begin, end, true); } argument
55 public void doArray (int begin, int end) { argument
57 int inner = arrayInnerBegin(begin);
70 for (int i = 0; i < inner - begin + 1; i++) {
82 private void doObject(int begin, int end, boolean comma) { argument
86 appendSubstring(begin, end - 1);
89 private void appendSubstring(int begin, int end) { argument
90 for (int i = begin; i < end; i++) {
95 private int arrayInnerBegin(int begin) { argument
[all...]
H A DSignatureIterator.java89 int begin = ++_index;
91 doObject(begin, _index);
96 int begin = ++_index;
107 doArray(begin, _index);
200 // Object types (begin indexes the first character of the entry, end
202 public abstract void doObject(int begin, int end); argument
203 public abstract void doArray (int begin, int end); argument
/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DJarFacade.c48 char *begin = (char *)value; local
53 while (*begin == ' ') {
54 begin++;
58 end = &begin[strlen(begin)];
59 while (end > begin && end[-1] == ' ') {
63 if (begin == end) {
70 value_len = (size_t)(end - begin);
77 strncpy(attribute->value, begin, value_len);
/openjdk10/hotspot/src/cpu/s390/vm/
H A DrelocInfo_s390.hpp115 static bool update_oop_pool(address begin, address end, address newTarget, CodeBlob* cb);
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/
H A DMain.java75 return jdoc.begin(args);
90 return jdoc.begin(args);
101 return jdoc.begin(args);
117 return jdoc.begin(args);
131 return jdoc.begin(args);
151 return jdoc.begin(args);
173 return jdoc.begin(args);
202 return jdoc.begin(args);
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/
H A DCooperativeHandler.java48 * The handler invokes `Consumer.accept(end)` to begin the task. The task
51 * The next run of the task will not begin until the previous run has finished.
66 begin, end, begin, end...
70 begin
72 begin
107 private final Consumer<Runnable> begin; field in class:CooperativeHandler
113 public CooperativeHandler(Consumer<Runnable> begin) { argument
114 this.begin = requireNonNull(begin);
[all...]
/openjdk10/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp51 assert(_begin <= end, "begin & end not properly ordered");
55 void set_begin(address begin) { argument
56 assert(begin >= _begin, "begin may not decrease");
57 assert(_end == NULL || begin <= _end, "begin & end not properly ordered");
58 _begin = begin;
71 StubCodeDesc(const char* group, const char* name, address begin, address end = NULL) { argument
77 _begin = begin;
86 address begin() cons function in class:StubCodeDesc
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/stream/
H A DSink.java37 * {@code Sink} for the first time, you must first call the {@code begin()}
41 * {@code accept()} without again calling {@code begin()}. {@code Sink} also
48 * It starts out in the initial state; the {@code begin()} method transitions
94 * {@code begin()}, {@code end()}, and {@code cancellationRequested()} to
128 default void begin(long size) {} method in interface:Sink
237 * sinks. The {@code begin}, {@code end}, and
252 public void begin(long size) { method in class:Sink.ChainedReference
253 downstream.begin(size);
269 * sinks. The {@code begin}, {@code end}, and
284 public void begin(lon method in class:Sink.ChainedInt
316 public void begin(long size) { method in class:Sink.ChainedLong
348 public void begin(long size) { method in class:Sink.ChainedDouble
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/
H A DMain.java63 return jdoc.begin(args).exitCode;
75 return jdoc.begin(args).exitCode;
88 return jdoc.begin(args).exitCode;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeArrayBuffer.java85 * @param begin begin byte index
88 protected NativeArrayBuffer(final NativeArrayBuffer other, final int begin, final int end) { argument
89 this(cloneBuffer(other.getNioBuffer(), begin, end));
117 private static ByteBuffer cloneBuffer(final ByteBuffer original, final int begin, final int end) { argument
123 clone.position(begin);
171 final int begin = adjustIndex(JSType.toInt32(begin0), byteLength);
173 return new NativeArrayBuffer(arrayBuffer, begin, Math.max(end, begin));
179 * @param begin star
184 slice(final Object self, final int begin, final int end) argument
197 slice(final Object self, final int begin) argument
[all...]
/openjdk10/jdk/test/java/text/Collator/
H A DBug6271411.java105 int begin = prefix.length();
108 -2, -1, 0, 1, begin - 2, begin - 1, 9, 10, 11, 12, 13, 14,
122 new StringCharacterIterator(str, begin, end, begin);
159 int begin = prefix.length();
160 int[] offsets = { begin, begin + 1, 2, 3, 4 };
170 new StringCharacterIterator(str, begin, end, begin);
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DKillingBeginNode.java45 public static AbstractBeginNode begin(FixedNode with, LocationIdentity locationIdentity) { method in class:KillingBeginNode
49 AbstractBeginNode begin = with.graph().add(KillingBeginNode.create(locationIdentity));
50 begin.setNext(with);
51 return begin;
H A DBeginNode.java51 // This begin node is necessary.
53 // This begin node can be removed and all guards moved up to the preceding begin node.
65 // This begin node is necessary.
67 // This begin node can be removed and all guards moved up to the preceding begin node.
74 public static AbstractBeginNode begin(FixedNode with) { method in class:BeginNode
78 BeginNode begin = with.graph().add(new BeginNode());
79 begin.setNext(with);
80 return begin;
[all...]
H A DLoopEndNode.java50 * evaluation can temporarily assign a non-loop begin. This node will then be deleted shortly
67 * {@link LoopBeginNode#canEndsSafepoint loop begin}. New loop ends inherit the flag value from
68 * the loop begin.
72 public LoopEndNode(LoopBeginNode begin) { argument
74 int idx = begin.nextEndIndex();
77 this.loopBegin = begin;
78 this.canSafepoint = begin.canEndsSafepoint;
104 assert !canSafepoint || loopBegin().canEndsSafepoint : "When safepoints are disabled for loop begin, safepoints must be disabled for all loop ends";
116 assertTrue(loopBegin != null, "must have a loop begin");
125 * <b>not</b> the index into {@link PhiNode} values at the loop begin
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DWhitespaceBasedBreakIterator.java47 int begin = ci.getBeginIndex();
48 text = new char[ci.getEndIndex() - begin];
51 breaks0[brIx++] = begin;
59 breaks0[brIx++] = charIx + begin;
65 breaks0[brIx++] = text.length + begin;
/openjdk10/jdk/src/jdk.accessibility/windows/native/jaccessinspector/
H A DMessageHistory.cpp52 m_CurrentPosition = m_Messages.begin();
61 if ( m_CurrentPosition != m_Messages.begin() ) {
96 if ( m_CurrentPosition == m_Messages.begin() ) {
136 stringlist::const_iterator it = m_Messages.begin();
148 stringlist::const_iterator itBegin = m_Messages.begin();
/openjdk10/jdk/make/src/classes/build/tools/generatecharacter/
H A DPrintCharacterRanges.java36 private int begin; field in class:PrintCharacterRanges.BooleanRange
39 BooleanRange(int begin, int end) { argument
40 this.begin = begin;
44 int begin() { return begin; } method in class:PrintCharacterRanges.BooleanRange
98 System.out.print(" [ " + describe(range.begin()) + ", " + describe(range.end()) + " ]");
109 private int begin; field in class:PrintCharacterRanges.ShiftRange
113 ShiftRange(int begin, int end, int offset) { argument
114 this.begin
119 int begin() { return begin; } method in class:PrintCharacterRanges.ShiftRange
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java176 int begin = this.beginpos[index], end = this.endpos[index];
177 if (begin < 0 || end < 0) return null;
179 ret = REUtil.substring(this.ciSource, begin, end);
181 ret = this.strSource.substring(begin, end);
183 ret = new String(this.charSource, begin, end-begin);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/phases/
H A DStackMoveOptimizationPhase.java80 private int begin = NONE; field in class:StackMoveOptimizationPhase.Closure
109 if (begin == NONE) {
110 // trace begin
111 begin = i;
116 } else if (begin != NONE) {
133 instructions.set(begin, multiMove);
135 Collections.fill(instructions.subList(begin + 1, begin + size), null);
143 begin = NONE;

Completed in 360 milliseconds

1234567891011