Searched refs:colName (Results 1 – 3 of 3) sorted by relevance
245 private static int getInt(Cursor c, String colName) { in getInt() argument246 int colIndex = c.getColumnIndex(colName); in getInt()248 Log.w(TAG, "Column " + colName + " not found."); in getInt()257 private static String getString(Cursor c, String colName) { in getString() argument258 int colIndex = c.getColumnIndex(colName); in getString()260 Log.w(TAG, "Column " + colName + " not found."); in getString()
246 protected int getColumnIndex(String colName) { in getColumnIndex() argument249 return mCursor.getColumnIndex(colName); in getColumnIndex()283 protected String getStringOrNull(String colName) { in getStringOrNull() argument284 int col = getColumnIndex(colName); in getStringOrNull()
292 final int colName = cursor.getColumnIndex(NAME); in loadFromCursor() local300 final String name = cursor.getString(colName); in loadFromCursor()