Lines Matching defs:columnIndex

965      * @param columnIndex the index of the column whose cached value we want to retrieve
968 private Object getCachedValue(int columnIndex) {
970 return getCachedValue(uri, columnIndex);
973 private Object getCachedValue(String uri, int columnIndex) {
977 if (columnIndex == DELETED_COLUMN_INDEX) {
980 columnName = mColumnNames[columnIndex];
1272 public double getDouble(int columnIndex) {
1273 Object obj = getCachedValue(columnIndex);
1275 return mUnderlyingCursor.getDouble(columnIndex);
1279 public float getFloat(int columnIndex) {
1280 Object obj = getCachedValue(columnIndex);
1282 return mUnderlyingCursor.getFloat(columnIndex);
1286 public int getInt(int columnIndex) {
1287 Object obj = getCachedValue(columnIndex);
1289 return mUnderlyingCursor.getInt(columnIndex);
1293 public long getLong(int columnIndex) {
1294 Object obj = getCachedValue(columnIndex);
1296 return mUnderlyingCursor.getLong(columnIndex);
1300 public short getShort(int columnIndex) {
1301 Object obj = getCachedValue(columnIndex);
1303 return mUnderlyingCursor.getShort(columnIndex);
1307 public String getString(int columnIndex) {
1310 if (columnIndex == URI_COLUMN_INDEX) {
1313 Object obj = getCachedValue(columnIndex);
1315 return mUnderlyingCursor.getString(columnIndex);
1319 public byte[] getBlob(int columnIndex) {
1320 Object obj = getCachedValue(columnIndex);
1322 return mUnderlyingCursor.getBlob(columnIndex);
1325 public byte[] getCachedBlob(int columnIndex) {
1326 return (byte[]) getCachedValue(columnIndex);
1922 public String getColumnName(int columnIndex) {
1923 return mUnderlyingCursor.getColumnName(columnIndex);
1937 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {
1942 public int getType(int columnIndex) {
1943 return mUnderlyingCursor.getType(columnIndex);
1947 public boolean isNull(int columnIndex) {