/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/ |
H A D | CompressedWriteStream.java | 39 public CompressedWriteStream(Address buffer, int position) { argument 40 super(buffer, position);
|
H A D | CompressedReadStream.java | 35 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 D | CompressedLineNumberReadStream.java | 36 public CompressedLineNumberReadStream(Address buffer, int position) { argument 37 super(buffer, position);
|
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | SubstitutionLookups.cpp | 56 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 D | GlyphIterator.h | 83 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 D | CurrentNodeListFilter.java | 35 public abstract boolean test(int node, int position, int last, int current, argument
|
/openjdk7/jdk/src/share/classes/java/nio/channels/ |
H A D | FileLock.java | 64 * 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> + <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 D | SeekableByteChannel.java | 32 * 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 D | CharacterIterator.java | 82 * 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 D | PositionDataInputStream.java | 40 * (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 D | InputSlot.java | 43 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 D | OutputSlot.java | 42 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 D | Tag.java | 154 * 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 D | TextTag.java | 106 public SourcePosition position() { method in class:TextTag 107 return holder.position();
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
H A D | SourcePositionImpl.java | 35 * 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 D | TagImpl.java | 180 public SourcePosition position() { method in class:TagImpl 181 return holder.position();
|
/openjdk7/jdk/test/javax/swing/text/View/8014863/ |
H A D | bug8014863.java | 113 private static void setCaretPosition(final int position) throws Exception { argument 116 editorPane.setCaretPosition(position);
|
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | FileLockImpl.java | 36 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 D | FileContent.java | 82 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 D | XSCMRepeatingLeaf.java | 38 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 D | TypeCodeReader.java | 68 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 D | OopMapStream.java | 34 private int position; field in class:OopMapStream 55 position = 0; 90 while (position++ < size) {
|
/openjdk7/jdk/src/share/classes/javax/sound/sampled/ |
H A D | LineEvent.java | 61 * 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 D | LayoutStyle.java | 32 * <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 D | Blob.java | 50 * 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...] |