Searched refs:colName (Results 1 – 3 of 3) sorted by relevance
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()
302 private static int getInt(Cursor c, String colName) { in getInt() argument303 int colIndex = c.getColumnIndex(colName); in getInt()305 Log.w(TAG, "Column " + colName + " not found."); in getInt()314 private static String getString(Cursor c, String colName) { in getString() argument315 int colIndex = c.getColumnIndex(colName); in getString()317 Log.w(TAG, "Column " + colName + " not found."); in getString()
286 final int colName = cursor.getColumnIndex(SimRecords.NAME); in loadFromCursor() local293 final String name = cursor.getString(colName); in loadFromCursor()