Searched refs:position (Results 176 - 200 of 718) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/sun/security/ssl/StatusStapling/java.base/sun/security/ssl/
H A DTestUtils.java95 buf1.position(skip1);
96 buf2.position(skip2);
99 buf1.limit(buf1.position() + length);
100 buf2.limit(buf2.position() + length);
/openjdk10/jdk/test/javax/net/ssl/templates/
H A DSSLExplorer.java59 * limit, position, and mark values.
132 * limit, position, and mark values.
345 input.limit(handshakeLength + input.position());
388 int position = input.position();
389 input.position(position + 32); // 32: the length of Random
546 int position = input.position();
547 input.position(positio
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DDoc.java273 * Return the source position of the first line of the
275 * no position is available. A default constructor returns
281 * no position is available. A default constructor returns
284 SourcePosition position(); method in interface:Doc
/openjdk10/jdk/test/javax/crypto/Cipher/
H A DByteBuffers.java60 i0.position(random.nextInt(256));
61 i0.limit(i0.position() + n);
72 o0.position(random.nextInt(256));
73 o0.limit(o0.position() + n + 256);
/openjdk10/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSend.java99 int position = buffer.position();
106 check(buffer.position() == (position + sent),
107 "buffers position should have been incremented by sent");
136 position = buffer.position();
143 check(buffer.position() == (position + sent),
144 "buffers position shoul
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DAttribute.java153 public TypeAnnotationPosition position; field in class:Attribute.Compound
168 TypeAnnotationPosition position) {
171 this.position = position;
185 position = res == null ? null : res.snd.getPosition();
188 return position;
216 if (from != null && from.position != null &&
217 from.position.type != TargetType.UNKNOWN) {
218 position = from.position;
166 Compound(Type type, List<Pair<MethodSymbol,Attribute>> values, TypeAnnotationPosition position) argument
301 TypeCompound(Compound compound, TypeAnnotationPosition position) argument
306 TypeCompound(Type type, List<Pair<MethodSymbol,Attribute>> values, TypeAnnotationPosition position) argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/
H A DRegExpScanner.java84 * Returns true if this Capture can be referenced from the position specified by the
86 * a negative lookahead, or the position of the referrer is in the same negative lookahead.
90 * @return true if this capture group can be referenced from the given position
141 throw new PatternSyntaxException(e.getMessage(), string, scanner.position);
147 if (scanner.position != string.length()) {
207 * Restart the buffers back at an earlier position.
266 final int startIn = position;
292 final int startIn = position;
365 final int startIn = position;
417 final int startIn = position;
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/
H A Djquery-ui.js3 * Includes: core.js, widget.js, position.js, autocomplete.js, menu.js
29 // $.ui might exist from components with no dependencies, e.g., $.ui.position
58 var position = this.css( "position" ),
59 excludeStaticParent = position === "absolute",
63 if ( excludeStaticParent && parent.css( "position" ) === "static" ) {
69 return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent;
256 var elem = $( this[ 0 ] ), position, value;
258 // Ignore z-index if position is set to a value where z-index is ignored by the browser
261 position
1363 var position = $.ui.position; variable
[all...]
/openjdk10/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java126 long position = 0L;
128 Future<Integer> result = ch.write(src, position);
131 // update position
132 position += n;
144 position = 0L;
147 Future<Integer> result = ch.read(dst, position);
151 // update position
152 if (n > 0) position += n;
401 long[] position = new long[nwriters];
404 position[
550 writeFully(final AsynchronousFileChannel ch, final ByteBuffer src, long position) argument
575 readAll(final AsynchronousFileChannel ch, final ByteBuffer dst, long position) argument
[all...]
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/utils/
H A DOptionResolver.java42 int position = 0;
45 while (position < argv.length) {
46 String curArg = argv[position];
68 ++position;
80 ++position;
81 if (position < argv.length) {
82 valueArg = argv[position];
93 ++position;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMLeaf.java54 public CMLeaf(QName element, int position) { argument
57 // Store the element index and position
59 fPosition = position;
66 // Store the element index and position
129 // Otherwise, its just the one bit of our position
140 // Otherwise, its just the one bit of our position
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DXMLVersionDetector.java215 if(currentEntity.count-currentEntity.position+length > currentEntity.ch.length) {
218 currentEntity.ch = new char[length+currentEntity.count-currentEntity.position+1];
221 if(currentEntity.position < length) {
223 System.arraycopy(currentEntity.ch, currentEntity.position, currentEntity.ch, length, currentEntity.count-currentEntity.position);
224 currentEntity.count += length-currentEntity.position;
227 for(int i=length; i<currentEntity.position; i++)
232 currentEntity.position = 0;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMLeaf.java61 public XSCMLeaf(int type, Object leaf, int id, int position) { argument
64 // Store the element index and position
67 fPosition = position;
121 // Otherwise, its just the one bit of our position
131 // Otherwise, its just the one bit of our position
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DByteBufferInputStream.java51 * Increments position().
70 * Increments position().
85 * Increments position().
133 bb.position(bb.position() + skip);
165 * Marks the current position in this input stream.
171 * Repositions this stream to the position at the time the
H A DSSLSocketInputRecord.java143 // destination.position() is zero.
217 int dstPos = destination.position();
230 destination.position(dstPos + headerSize);
255 int pltPos = plaintext.position();
277 plaintext.position(frgPos);
309 plaintext.position(frgPos + howmuch);
315 plaintext.position(pltPos);
393 destination.position(2); // exclude the header
400 destination.position(0);
/openjdk10/jdk/src/java.base/share/classes/sun/nio/cs/
H A DStreamDecoder.java280 int pos = bb.position();
290 bb.position(pos + n);
312 if (cb.position() != 0)
324 if ((cb.position() > 0) && !inReady())
329 if ((cb.position() == 0) && (!bb.hasRemaining()))
336 assert cb.position() > 0;
347 if (cb.position() == 0) {
352 return cb.position();
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DMessageDigestSpi.java99 * at {@code input.position()}.
100 * Upon return, the buffer's position will be equal to its limit;
113 int pos = input.position();
116 input.position(lim);
/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DMacSpi.java91 * <code>input</code>, starting at <code>input.position()</code>.
92 * Upon return, the buffer's position will be equal to its limit;
108 int pos = input.position();
111 input.position(lim);
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DStringReader.java62 int p = input.position();
79 input.limit(input.position() + remainingLength);
/openjdk10/jdk/test/java/nio/Buffer/
H A DBasicByte.java104 b.position(0);
121 c.position(7);
125 c.position(7);
141 b.position(0);
189 ck(slice, 0, slice.position());
202 int p = b.position();
212 b.position(p);
269 int p = b.position();
301 b.limit(b.position());
302 b.position(
[all...]
/openjdk10/jdk/test/java/nio/channels/SocketChannel/
H A DBasic.java63 bb.position(bb.position() - 2); // Drop CRLF
/openjdk10/jdk/test/java/nio/channels/Channels/
H A DShortWrite.java50 src.position(src.position() + n);
/openjdk10/jdk/test/javax/sql/testng/util/
H A DStubBlob.java58 public long position(byte[] pattern, long start) method in class:StubBlob
63 public long position(Blob pattern, long start) method in class:StubBlob
/openjdk10/jdk/test/sun/security/pkcs11/Cipher/
H A DTestSymmCiphers.java151 inBuf.position(0);
154 inDirectBuf.position(0);
209 inDirectBuf.position(0);
210 outBuf.position(0);
224 inBuf.position(0);
225 outDirectBuf.position(0);
273 byte[] bbTemp = new byte[bb.position()];
274 bb.position(0);
/openjdk10/jdk/test/javax/swing/border/
H A DTest7149090.java26 @summary Nimbus:BorderFactory.createTitledBorder() the DEFAULT position of a title is not the same as the TOP
68 int position = (Integer) getPositionMethod.invoke(border);
70 if (position != expectedPosition) {
71 throw new RuntimeException("Invalid title position");

Completed in 316 milliseconds

1234567891011>>