Searched refs:position (Results 226 - 250 of 718) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJTextComponentOperator.java72 * caret position <BR>
369 * Finds start text position.
374 * @return Caret position correspondent to text start.
385 int position = 0;
387 while ((position = allText.indexOf(text, position)) >= 0) {
388 if (tChooser.checkPosition(doc, position)) {
390 return position;
395 position = position
481 changeCaretPosition(final int position) argument
703 scrollToPosition(int position) argument
749 waitText(final String text, final int position) argument
801 waitCaretPosition(final int position) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/
H A DAMD64Call.java190 int before = masm.position();
199 int after = masm.position();
207 int offset = masm.position();
216 int before = masm.position();
218 int after = masm.position();
224 int before = masm.position();
226 int after = masm.position();
232 int before = masm.position();
234 int after = masm.position();
/openjdk10/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java80 long oldSinkPosition = sinkChannel.position();
81 long oldSourcePosition = sourceChannel.position();
87 if (sourceChannel.position() == oldSourcePosition)
88 throw new RuntimeException("Source position didn't change");
90 if (sinkChannel.position() != oldSinkPosition)
91 throw new RuntimeException("Sink position changed");
137 long oldPosition = fc.position();
144 if (fc.position() != oldPosition)
266 sourceChannel.position(7);
267 long remaining = sourceChannel.size() - sourceChannel.position();
[all...]
H A DTransferTo6GBFile.java115 long position = testdata[(int)i][0];
125 fc.write(sendbuf, position);
127 fc.transferTo(position, count, source);
129 position, count, System.nanoTime() - t0);
/openjdk10/jdk/src/java.base/share/classes/sun/nio/cs/
H A DHKSCS.java85 int sp = src.arrayOffset() + src.position();
89 int dp = dst.arrayOffset() + dst.position();
131 src.position(sp - src.arrayOffset());
132 dst.position(dp - dst.arrayOffset());
137 int mark = src.position();
175 src.position(mark);
271 int sp = src.arrayOffset() + src.position();
275 int dp = dst.arrayOffset() + dst.position();
310 src.position(sp - src.arrayOffset());
311 dst.position(d
[all...]
H A DCESU_8.java72 src.position(sp - src.arrayOffset());
73 dst.position(dp - dst.arrayOffset());
152 src.position(sp - src.arrayOffset());
162 src.position(mark);
164 src.position(mark);
182 src.position(mark);
195 src.position(mark);
205 int sp = src.arrayOffset() + src.position();
209 int dp = dst.arrayOffset() + dst.position();
266 int mark = src.position();
[all...]
H A DUnicodeDecoder.java68 int mark = src.position();
127 src.position(mark);
/openjdk10/jdk/src/jdk.charsets/share/classes/sun/nio/cs/ext/
H A DSJIS_0213.java95 int sp = src.arrayOffset() + src.position();
99 int dp = dst.arrayOffset() + dst.position();
137 src.position(sp - src.arrayOffset());
138 dst.position(dp - dst.arrayOffset());
143 int mark = src.position();
179 src.position(mark);
253 int sp = src.arrayOffset() + src.position();
256 int dp = dst.arrayOffset() + dst.position();
317 src.position(sp - src.arrayOffset());
318 dst.position(d
[all...]
H A DISCII91.java308 '\uffff', // eb -- This position shall not be used
309 '\uffff', // ec -- This position shall not be used
310 '\uffff', // ed -- This position shall not be used
311 '\uffff', // ee -- This position shall not be used
327 '\uffff', // fb -- This position shall not be used
328 '\uffff', // fc -- This position shall not be used
329 '\uffff', // fd -- This position shall not be used
330 '\uffff', // fe -- This position shall not be used
331 '\uffff' // ff -- This position shall not be used
501 int sp = src.arrayOffset() + src.position();
[all...]
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/text/
H A DTextAPIDriver.java52 public void changeCaretPosition(ComponentOperator oper, int position) { argument
55 ((TextComponentOperator) oper).setCaretPosition(position);
57 ((JTextComponentOperator) oper).setCaretPosition(position);
132 * Returns current caret position.
135 * @return int represnting current operator's caret position.
140 * Returns a caret position of selection start.
148 * Returns a caret position of selection end.
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/classfile/
H A DTypeAnnotationPropagationTest.java68 assertEquals(anno.position.lvarOffset, new int[] {3}, "start_pc");
69 assertEquals(anno.position.lvarLength, new int[] {8}, "length");
70 assertEquals(anno.position.lvarIndex, new int[] {1}, "index");
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DTokenLookup.java109 * @param position index of position to start looking
114 public static TokenType lookupKeyword(final char[] content, final int position, final int length) { argument
118 final char first = content[position];
137 if (content[position + i] != name.charAt(i)) {
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DCipherBox.java341 * The byte buffers position and limit initially define the amount
342 * to encrypt. On return, the position and limit are
343 * set to last position padded/encrypted. The limit may have changed
351 bb.position(bb.limit());
355 int pos = bb.position();
361 bb.position(pos);
420 if (bb.position() != dup.position()) {
511 * resulting block if padding was required. position and limit
523 bb.position(b
[all...]
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AEAD/
H A DEncrypt.java434 buf.position(0);
465 buf.position(0);
514 buf1.position(0);
526 buf2.position(0);
558 buf.position(0);
591 buf.position(0);
598 in.position(0);
602 output.position(0);
608 int resultSize = output.position();
610 output.position(
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DHierarchicalGraphLayout.java90 private Point position; field in class:HierarchicalGraphLayout.VertexWrapper
108 this.position = w.getPreferredLocation();
121 return position;
126 position = p;
/openjdk10/hotspot/src/share/vm/logging/
H A DlogDecorations.cpp49 char* position = _decorations_buffer; local
52 _decoration_offset[LogDecorators::full_name##_decorator] = position; \
53 position = create_##full_name##_decoration(position) + 1; \
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCurrentNodeListIterator.java141 final int position = _docOrder ? index + 1 : last - index;
144 if (_filter.test(node, position, last, currentNode, translet,
189 final int position = _docOrder ? index + 1 : last - index;
192 if (_filter.test(nodeIndex, position, last, currNode, translet,
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMNodeFactory.java95 public CMNode getCMLeafNode(int type, Object leaf, int id, int position) { argument
96 return new XSCMLeaf(type, leaf, id, position) ;
100 int minOccurs, int maxOccurs, int id, int position) {
102 return new XSCMRepeatingLeaf(type, leaf, minOccurs, maxOccurs, id, position);
99 getCMRepeatingLeafNode(int type, Object leaf, int minOccurs, int maxOccurs, int id, int position) argument
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLEInsertionList.h56 * @param atPosition the position of the insertion
109 * @param position the glyph at this position in the array will be
119 LEGlyphID *insert(le_int32 position, le_int32 count, LEErrorCode &success);
/openjdk10/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWingDings.java74 int sp = src.arrayOffset() + src.position();
79 int dp = dst.arrayOffset() + dst.position();
96 src.position(sp - src.arrayOffset());
97 dst.position(dp - dst.arrayOffset());
/openjdk10/jdk/test/java/nio/channels/DatagramChannel/
H A DUseDGWithIPv6.java53 "\n position:" + data.position() +
/openjdk10/jdk/src/java.desktop/unix/classes/sun/font/
H A DX11Dingbats.java69 int sp = src.arrayOffset() + src.position();
74 int dp = dst.arrayOffset() + dst.position();
96 src.position(sp - src.arrayOffset());
97 dst.position(dp - dst.arrayOffset());
/openjdk10/test/lib/jdk/test/lib/hprof/parser/
H A DFileReadBuffer.java52 file.getChannel().position(pos);
/openjdk10/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java126 ipos = ib.position();
135 int pos = b.position();
137 b.position(0);
139 b.position(pos);
144 char[] a = new char[b.position()];
145 b.position(0);
221 // if (ib.position() == 0 && ob.position() > 0)
226 if (ib.position() != r.ipos ||
227 ob.position() !
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCJumpOp.java55 delaySlotPosition = masm.position();
67 int disp = crb.asm.position() - delaySlotPosition;

Completed in 263 milliseconds

1234567891011>>