Searched refs:checkIndex (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/classes/java/nio/
H A DStringCharBuffer.java77 return str.charAt(checkIndex(index) + offset);
107 pos + checkIndex(start, pos),
108 pos + checkIndex(end, pos),
H A DHeap-X-Buffer.java.template139 return hb[ix(checkIndex(i))];
172 hb[ix(checkIndex(i))] = x;
257 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian);
273 Bits.putChar(this, ix(checkIndex(i, 2)), x, bigEndian);
308 return Bits.getShort(this, ix(checkIndex(i, 2)), bigEndian);
324 Bits.putShort(this, ix(checkIndex(i, 2)), x, bigEndian);
359 return Bits.getInt(this, ix(checkIndex(i, 4)), bigEndian);
375 Bits.putInt(this, ix(checkIndex(i, 4)), x, bigEndian);
410 return Bits.getLong(this, ix(checkIndex(i, 8)), bigEndian);
426 Bits.putLong(this, ix(checkIndex(
[all...]
H A DBuffer.java530 final int checkIndex(int i) { // package-private method in class:Buffer
536 final int checkIndex(int i, int nb) { // package-private method in class:Buffer
H A DDirect-X-Buffer-bin.java.template47 return get$Type$(ix(checkIndex(i, $BYTES_PER_VALUE$)));
77 put$Type$(ix(checkIndex(i, $BYTES_PER_VALUE$)), x);
H A DByteBufferAs-X-Buffer.java.template115 return Bits.get$Type$$BO$(bb, ix(checkIndex(i)));
131 Bits.put$Type$$BO$(bb, ix(checkIndex(i)), x);
H A DDirect-X-Buffer.java.template253 return $fromBits$($swap$(unsafe.get$Swaptype$(ix(checkIndex(i)))));
300 unsafe.put$Swaptype$(ix(checkIndex(i)), $swap$($toBits$(x)));
H A DX-Buffer.java.template1238 return get(position() + checkIndex(index, 1));
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaValueArray.java283 private void checkIndex(int index) { method in class:JavaValueArray
296 checkIndex(index);
302 checkIndex(index);
308 checkIndex(index);
314 checkIndex(index);
320 checkIndex(index);
326 checkIndex(index);
332 checkIndex(index);
338 checkIndex(index);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageReader.java100 checkIndex(imageIndex);
106 checkIndex(imageIndex);
112 checkIndex(imageIndex);
116 private void checkIndex(int imageIndex) { method in class:WBMPImageReader
157 checkIndex(imageIndex);
173 checkIndex(imageIndex);
191 checkIndex(imageIndex);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassDump.java112 checkIndex(nameIndex, "Method name");
116 checkIndex(descriptorIndex, "Method descriptor");
144 checkIndex(nameIndex, "Method attr name");
162 checkIndex(nameIndex, "Code attr name");
216 private void checkIndex(int index, String comment) { method in class:ClassDump
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStubQueue.java155 checkIndex(offset);
161 checkIndex(i);
169 private void checkIndex(long i) { method in class:StubQueue
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java1592 private void checkIndex(int idx) throws SQLException { method in class:CachedRowSetImpl
1696 checkIndex(columnIndex);
1732 checkIndex(columnIndex);
1787 checkIndex(columnIndex);
1830 checkIndex(columnIndex);
1873 checkIndex(columnIndex);
1917 checkIndex(columnIndex);
1960 checkIndex(columnIndex);
2004 checkIndex(columnIndex);
2050 checkIndex(columnInde
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java137 checkIndex();
166 private void checkIndex() throws IOException { method in class:ZipFileIndex
236 checkIndex();
251 checkIndex();
268 checkIndex();
286 checkIndex();
307 checkIndex();
322 checkIndex();
692 checkIndex();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTabbedPane.java589 checkIndex(index);
933 checkIndex(index);
1244 checkIndex(tabIndex);
1265 checkIndex(tabIndex);
1287 checkIndex(index);
1623 checkIndex(tabIndex);
1663 checkIndex(tabIndex);
1766 private void checkIndex(int index) { method in class:JTabbedPane
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java464 return (DataDirectory) dataDirectories[checkIndex(0)].getValue();
467 return (DataDirectory) dataDirectories[checkIndex(1)].getValue();
470 return (DataDirectory) dataDirectories[checkIndex(2)].getValue();
473 return (DataDirectory) dataDirectories[checkIndex(3)].getValue();
476 return (DataDirectory) dataDirectories[checkIndex(4)].getValue();
479 return (DataDirectory) dataDirectories[checkIndex(5)].getValue();
482 return (DataDirectory) dataDirectories[checkIndex(6)].getValue();
485 return (DataDirectory) dataDirectories[checkIndex(7)].getValue();
488 return (DataDirectory) dataDirectories[checkIndex(8)].getValue();
491 return (DataDirectory) dataDirectories[checkIndex(
517 private int checkIndex(int index) throws COFFException { method in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl.OptionalHeaderDataDirectoriesImpl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java166 private void checkIndex(int imageIndex) { method in class:GIFImageReader
176 checkIndex(imageIndex);
187 checkIndex(imageIndex);
198 checkIndex(imageIndex);
271 checkIndex(imageIndex);
829 checkIndex(imageIndex);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java191 checkIndex(imageIndex);
197 checkIndex(imageIndex);
202 private void checkIndex(int imageIndex) { method in class:BMPImageReader
662 checkIndex(imageIndex);
676 checkIndex(imageIndex);
688 checkIndex(imageIndex);
700 checkIndex(imageIndex);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DRangeImpl.java179 checkIndex(refNode, offset);
216 checkIndex(refNode, offset);
1880 void checkIndex(Node refNode, int offset) throws DOMException method in class:RangeImpl
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp4573 int checkIndex = 1;
4578 assert(e.getOutputIndex() == checkIndex++);
4594 assert(checkIndex++);

Completed in 148 milliseconds