Searched defs:getShort (Results 1 - 25 of 69) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DXSDecimal.java60 public short getShort() throws NumberFormatException; method in interface:XSDecimal
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DReadBuffer.java48 public short getShort(long pos) throws IOException; method in interface:ReadBuffer
H A DFileReadBuffer.java70 public synchronized short getShort(long pos) throws IOException { method in class:FileReadBuffer
H A DMappedReadBuffer.java100 public synchronized short getShort(long pos) throws IOException { method in class:MappedReadBuffer
102 return buf.getShort();
/openjdk7/jdk/src/share/classes/java/io/
H A DBits.java48 static short getShort(byte[] b, int off) { method in class:Bits
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java135 public short getShort(long address, boolean bigEndian) { method in class:Page
149 return (char) getShort(address, bigEndian);
H A DPageCache.java87 public synchronized short getShort(long address, boolean bigEndian) { method in class:PageCache
88 return checkPage(getPage(address & pageMask), address).getShort(address, bigEndian);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java214 public static native short getShort(Object array, int index) method in class:Array
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DHeader.java88 xid = getShort(msg, pos);
92 short flags = (short) getShort(msg, pos);
103 numQuestions = getShort(msg, pos);
105 numAnswers = getShort(msg, pos);
107 numAuthorities = getShort(msg, pos);
109 numAdditionals = getShort(msg, pos);
122 private static int getShort(byte[] msg, int pos) { method in class:Header
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java83 public int getShort(int offset) throws InvalidIndex { method in class:Code_attribute
98 return (getShort(offset) << 16) | (getShort(offset + 2) & 0xFFFF);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeObject.java202 final short getShort(int offset) { method in class:NativeObject
203 return unsafe.getShort(offset + address);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DFieldAccessor.java47 public short getShort(Object obj) throws IllegalArgumentException; method in interface:FieldAccessor
H A DFieldAccessorImpl.java51 public abstract short getShort(Object obj) method in class:FieldAccessorImpl
H A DUnsafeBooleanFieldAccessorImpl.java52 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeBooleanFieldAccessorImpl
H A DUnsafeByteFieldAccessorImpl.java52 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeByteFieldAccessorImpl
H A DUnsafeCharacterFieldAccessorImpl.java52 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeCharacterFieldAccessorImpl
H A DUnsafeDoubleFieldAccessorImpl.java51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeDoubleFieldAccessorImpl
H A DUnsafeFloatFieldAccessorImpl.java51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeFloatFieldAccessorImpl
H A DUnsafeIntegerFieldAccessorImpl.java51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeIntegerFieldAccessorImpl
H A DUnsafeLongFieldAccessorImpl.java51 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeLongFieldAccessorImpl
H A DUnsafeObjectFieldAccessorImpl.java52 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeObjectFieldAccessorImpl
H A DUnsafeQualifiedBooleanFieldAccessorImpl.java54 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedBooleanFieldAccessorImpl
H A DUnsafeQualifiedByteFieldAccessorImpl.java54 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedByteFieldAccessorImpl
H A DUnsafeQualifiedCharacterFieldAccessorImpl.java54 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedCharacterFieldAccessorImpl
H A DUnsafeQualifiedDoubleFieldAccessorImpl.java53 public short getShort(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedDoubleFieldAccessorImpl

Completed in 80 milliseconds

123