Searched defs:position (Results 1 - 25 of 154) sorted by relevance

1234567

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedWriteStream.java39 public CompressedWriteStream(Address buffer, int position) { argument
40 super(buffer, position);
H A DCompressedReadStream.java35 public CompressedReadStream(Address buffer, int position) { argument
36 super(buffer, position);
110 int pos = position - 1;
131 short retval = (short) buffer.getCIntegerAt(position, 1, true);
132 ++position;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompressedLineNumberReadStream.java36 public CompressedLineNumberReadStream(Address buffer, int position) { argument
37 super(buffer, position);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DSubstitutionLookups.cpp56 le_int32 position,
69 tempIterator.setCurrStreamPosition(position);
50 applySubstitutionLookups( LookupProcessor *lookupProcessor, SubstitutionLookupRecord *substLookupRecordArray, le_uint16 substCount, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, le_int32 position, LEErrorCode& success) argument
H A DGlyphIterator.h83 void setCurrStreamPosition(le_int32 position);
107 le_int32 position; member in class:GlyphIterator
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCurrentNodeListFilter.java35 public abstract boolean test(int node, int position, int last, int current, argument
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DFileLock.java64 * held, the type and validity of the lock, and the position and size of the
110 * certain position, often 2<sup>30</sup> or 2<sup>31</sup>. In general, great
122 private final long position; field in class:FileLock
132 * @param position
133 * The position within the file at which the locked region starts;
138 * <tt>position</tt>&nbsp;+&nbsp;<tt>size</tt> must be non-negative
148 long position, long size, boolean shared)
150 if (position < 0)
151 throw new IllegalArgumentException("Negative position");
154 if (position
147 FileLock(FileChannel channel, long position, long size, boolean shared) argument
185 FileLock(AsynchronousFileChannel channel, long position, long size, boolean shared) argument
234 public final long position() { method in class:FileLock
267 overlaps(long position, long size) argument
[all...]
H A DSeekableByteChannel.java32 * A byte channel that maintains a current <i>position</i> and allows the
33 * position to be changed.
37 * written. The current position can be {@link #position() <i>queried</i>} and
38 * {@link #position(long) <i>modified</i>}. The channel also provides access to
43 * <p> The {@link #position(long) position} and {@link #truncate truncate} methods
59 * <p> Bytes are read starting at this channel's current position, and
60 * then the position is updated with the number of bytes actually read.
70 * <p> Bytes are written starting at this channel's current position, unles
94 long position() throws IOException; method in interface:SeekableByteChannel
125 SeekableByteChannel position(long newPosition) throws IOException; method in interface:SeekableByteChannel
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java82 * Traverse both forward and backward from a given position in the text.
116 * Sets the position to getBeginIndex() and returns the character at that
117 * position.
124 * Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty)
125 * and returns the character at that position.
132 * Gets the character at the current position (as returned by getIndex()).
133 * @return the character at the current position or DONE if the current
134 * position is off the end of the text.
144 * @return the character at the new position or DONE if the new
145 * position i
166 setIndex(int position) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DPositionDataInputStream.java40 * (in effect 'position' in stream) so far.
61 public long position() { method in class:PositionDataInputStream
62 return ((PositionInputStream)in).position();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DInputSlot.java43 public void setPosition(int position) { argument
45 InputSlot s = inputSlots.remove(position);
46 inputSlots.add(position, s);
55 return "InputSlot[figure=" + this.getFigure().toString() + ", position=" + getPosition() + "]";
H A DOutputSlot.java42 public void setPosition(int position) { argument
43 OutputSlot s = getFigure().outputSlots.remove(position);
44 getFigure().outputSlots.add(position, s);
53 return "OutputSlot[figure=" + this.getFigure().toString() + ", position=" + getPosition() + "]";
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DTag.java154 * Return the source position of this tag.
155 * @return the source position of this tag.
157 public SourcePosition position(); method in interface:Tag
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTextTag.java106 public SourcePosition position() { method in class:TextTag
107 return holder.position();
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSourcePositionImpl.java35 * A source position: filename, line number, and column number.
39 * @author Michael Van De Vanter (position representation changed to char offsets)
43 int position; field in class:SourcePositionImpl
64 return lineMap.getLineNumber(position);
77 return lineMap.getColumnNumber(position);
81 private SourcePositionImpl(FileObject file, int position, argument
85 this.position = position;
107 if (position == Position.NOPOS)
H A DTagImpl.java180 public SourcePosition position() { method in class:TagImpl
181 return holder.position();
/openjdk7/jdk/test/javax/swing/text/View/8014863/
H A Dbug8014863.java113 private static void setCaretPosition(final int position) throws Exception { argument
116 editorPane.setCaretPosition(position);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockImpl.java36 FileLockImpl(FileChannel channel, long position, long size, boolean shared) argument
38 super(channel, position, size, shared);
41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared) argument
43 super(channel, position, size, shared);
/openjdk7/jdk/src/share/sample/nio/server/
H A DFileContent.java82 private long position = -1; // NB only; >= 0 if transferring field in class:FileContent
92 position = 0; // NB only
98 if (position < 0) // NB only
104 if (position >= length) {
108 position += cio.transferTo(fc, position, length - position);
109 return (position < length);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMRepeatingLeaf.java38 int minOccurs, int maxOccurs, int id, int position) {
39 super(type, leaf, id, position);
37 XSCMRepeatingLeaf(int type, Object leaf, int minOccurs, int maxOccurs, int id, int position) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DTypeCodeReader.java68 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position); argument
69 public TypeCodeImpl getTypeCodeAtPosition(int position); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapStream.java34 private int position; field in class:OopMapStream
55 position = 0;
90 while (position++ < size) {
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineEvent.java61 * The media position when the event occurred, expressed in sample frames.
65 * other events for which this value is not known, the position value
70 private final long position; field in class:LineEvent
77 * @param position the number of sample frames that the line had already processed when the event occurred,
83 public LineEvent(Line line, Type type, long position) { argument
87 this.position = position;
111 * Obtains the position in the line's audio data when the event occurred, expressed in sample frames.
113 * paused, the pause event would report the line's position as 14. The next frame to be processed
119 * other events for which this value is not known, the position valu
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutStyle.java32 * <code>LayoutStyle</code> provides information about how to position
159 * current size and position of <code>component2</code> or
168 * @param position the position <code>component2</code> is being placed
181 * @throws IllegalArgumentException if <code>position</code> is not
191 ComponentPlacement type, int position,
199 * @param position the position <code>component</code> is being placed
209 * @throws IllegalArgumentException if <code>position</code> is not
215 public abstract int getContainerGap(JComponent component, int position, argument
189 getPreferredGap(JComponent component1, JComponent component2, ComponentPlacement type, int position, Container parent) argument
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DBlob.java50 * determining the position of a pattern of bytes within a
78 * consecutive bytes starting at position <code>pos</code>.
80 * @param pos the ordinal position of the first byte in the
82 * position 1
88 * byte at position <code>pos</code>
114 * Retrieves the byte position at which the specified byte array
117 * search for <code>pattern</code> begins at position
121 * @param start the position at which to begin searching; the
122 * first position is 1
123 * @return the position a
130 long position(byte pattern[], long start) throws SQLException; method in interface:Blob
149 long position(Blob pattern, long start) throws SQLException; method in interface:Blob
[all...]

Completed in 89 milliseconds

1234567