Searched defs:getColumnIndex (Results 1 - 2 of 2) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DCursorBackedSuggestionCursor.java67 mFormatCol = getColumnIndex(SearchManager.SUGGEST_COLUMN_FORMAT);
68 mText1Col = getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_1);
69 mText2Col = getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_2);
70 mText2UrlCol = getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_2_URL);
71 mIcon1Col = getColumnIndex(SearchManager.SUGGEST_COLUMN_ICON_1);
72 mIcon2Col = getColumnIndex(SearchManager.SUGGEST_COLUMN_ICON_2);
73 mRefreshSpinnerCol = getColumnIndex(SearchManager.SUGGEST_COLUMN_SPINNER_WHILE_REFRESHING);
243 protected int getColumnIndex(String colName) { method in class:CursorBackedSuggestionCursor
246 return mCursor.getColumnIndex(colName);
249 Log.e(TAG, "getColumnIndex() faile
[all...]
/packages/apps/Mms/src/com/android/mms/
H A DSuggestionsProvider.java134 int textColumn = mDatabaseCursor.getColumnIndex("index_text");
135 int offsetsColumn = mDatabaseCursor.getColumnIndex("offsets(words)");
245 public int getColumnIndex(String columnName) { method in class:SuggestionsProvider.SuggestionsCursor
251 return mDatabaseCursor.getColumnIndex(columnName);
312 return getString(getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_1));

Completed in 92 milliseconds