Searched refs:colIndex (Results 1 – 3 of 3) sorted by relevance
303 int colIndex = c.getColumnIndex(colName); in getInt() local304 if (colIndex == -1) { in getInt()308 return c.getInt(colIndex); in getInt()315 int colIndex = c.getColumnIndex(colName); in getString() local316 if (colIndex == -1) { in getString()320 return Strings.nullToEmpty(c.getString(colIndex)); in getString()
1410 int colIndex = c.getColumnIndex(Contacts.DISPLAY_NAME); in getContactNameFromPhone() local1413 name = c.getString(colIndex); in getContactNameFromPhone()1515 int colIndex = c.getColumnIndex(Mms.Addr.ADDRESS); in getAddressMms() local1518 addr = c.getString(colIndex); in getAddressMms()
2877 final int colIndex = c.getColumnIndex(columnName); in getRedactedUriCursor() local2878 if (c.getType(colIndex) == FIELD_TYPE_BLOB) { in getRedactedUriCursor()2879 row.add(c.getBlob(colIndex)); in getRedactedUriCursor()2881 row.add(c.getString(colIndex)); in getRedactedUriCursor()