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

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DFilteringCursorWrapper.java118 public short getShort(int column) { method in class:FilteringCursorWrapper
119 return mCursor.getShort(column);
H A DRootCursorWrapper.java113 public short getShort(int column) { method in class:RootCursorWrapper
114 return mCursor.getShort(column);
H A DSortingCursorWrapper.java148 public short getShort(int column) { method in class:SortingCursorWrapper
149 return mCursor.getShort(column);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexAppParameters.java142 public short getShort(byte tag) { method in class:ObexAppParameters
149 return ByteBuffer.wrap(bval).getShort();
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DObexAppParameters.java142 public short getShort(byte tag) { method in class:ObexAppParameters
149 return ByteBuffer.wrap(bval).getShort();
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java61 public short getShort(int columnIndex) { method in class:AbstractWindowedCursor
63 return mWindow.getShort(mPos, columnIndex);
H A DMatrixCursor.java260 public short getShort(int column) { method in class:MatrixCursor
H A DMergeCursor.java102 public short getShort(int column) method in class:MergeCursor
104 return mCursor.getShort(column);
H A DCursor.java262 short getShort(int columnIndex); method in interface:Cursor
H A DCursorWrapper.java109 public short getShort(int columnIndex) { method in class:CursorWrapper
110 return mCursor.getShort(columnIndex);
H A DAbstractCursor.java84 abstract public short getShort(int column); method in class:AbstractCursor
H A DCursorWindow.java561 public short getShort(int row, int column) { method in class:CursorWindow
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java191 public short getShort(int column) method in class:SortCursor
193 return mCursor.getShort(column);
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java474 public short getShort(String property, short def) { method in class:TypedProperties
623 public short getShort(String property) { method in class:TypedProperties
624 return getShort(property, (short)0);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java74 public short getShort(int columnIndex) { method in class:MockCursor
/frameworks/base/core/java/android/os/
H A DBundle.java615 public short getShort(String key) { method in class:Bundle
616 return super.getShort(key);
628 public short getShort(String key, short defaultValue) { method in class:Bundle
629 return super.getShort(key, defaultValue);
H A DBaseBundle.java746 short getShort(String key) { method in class:BaseBundle
748 return getShort(key, (short) 0);
759 short getShort(String key, short defaultValue) { method in class:BaseBundle

Completed in 5443 milliseconds