Searched defs:columnIndex (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Email/src/com/android/email/provider/
H A DEmailMessageCursor.java105 public String getString(final int columnIndex) { argument
106 if (columnIndex == mHtmlColumnIndex) {
108 } else if (columnIndex == mTextColumnIndex) {
111 return super.getString(columnIndex);
115 public int getType(int columnIndex) { argument
116 if (columnIndex == mHtmlColumnIndex || columnIndex == mTextColumnIndex) {
121 return super.getType(columnIndex);
/packages/apps/UnifiedEmail/src/com/android/mail/content/
H A DThreadSafeCursorWrapper.java114 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { argument
117 super.copyStringToBuffer(columnIndex, buffer);
/packages/apps/Browser/src/com/android/browser/
H A DBrowserSnapshotPage.java175 static Bitmap getBitmap(Cursor cursor, int columnIndex) { argument
176 byte[] data = cursor.getBlob(columnIndex);
H A DBrowserBookmarksPage.java233 static Bitmap getBitmap(Cursor cursor, int columnIndex) { argument
234 return getBitmap(cursor, columnIndex, null);
243 static Bitmap getBitmap(Cursor cursor, int columnIndex, Bitmap inBitmap) { argument
244 byte[] data = cursor.getBlob(columnIndex);
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DDbTestUtils.java119 public String getString(int columnIndex) { argument
120 return queryResult.get(columnIndex);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
H A DExpectedKeyboardBuilder.java68 private static ExpectedKey[] replaceKeyAt(final ExpectedKey[] keys, final int columnIndex, argument
72 keys[columnIndex] = replacingKeys[0];
76 // Remove the key at columnIndex.
78 System.arraycopy(keys, columnIndex + 1, newKeys, columnIndex + replacingKeys.length,
79 keys.length - 1 - columnIndex);
80 // Insert replacing keys at columnIndex.
81 System.arraycopy(replacingKeys, 0, newKeys, columnIndex, replacingKeys.length);
92 for (int columnIndex = 0; columnIndex < key
[all...]
/packages/apps/Browser/src/com/android/browser/provider/
H A DBrowserProvider.java544 public String getString(int columnIndex) { argument
562 switch(columnIndex) {
H A DBrowserProvider2.java2183 public String getString(int columnIndex) { argument
2184 switch (columnIndex) {
2186 return mSource.getString(columnIndex);
/packages/apps/Mms/src/com/android/mms/
H A DSuggestionsProvider.java318 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { argument
319 mDatabaseCursor.copyStringToBuffer(columnIndex, buffer);
326 public byte[] getBlob(int columnIndex) { argument
335 public String getColumnName(int columnIndex) { argument
339 public double getDouble(int columnIndex) { argument
347 public float getFloat(int columnIndex) { argument
351 public int getInt(int columnIndex) { argument
355 public long getLong(int columnIndex) { argument
363 public short getShort(int columnIndex) { argument
391 public int getType(int columnIndex) { argument
395 isNull(int columnIndex) argument
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
H A DPicker.java303 protected void updateSelection(int columnIndex, int selectedIndex) { argument
304 ScrollAdapterView columnView = mColumnViews.get(columnIndex);
307 String text = mColumns.get(columnIndex).getItems()[selectedIndex];
308 mResult.set(columnIndex, text);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java965 * @param columnIndex the index of the column whose cached value we want to retrieve
968 private Object getCachedValue(int columnIndex) { argument
970 return getCachedValue(uri, columnIndex);
973 private Object getCachedValue(String uri, int columnIndex) { argument
977 if (columnIndex == DELETED_COLUMN_INDEX) {
980 columnName = mColumnNames[columnIndex];
1272 public double getDouble(int columnIndex) { argument
1273 Object obj = getCachedValue(columnIndex);
1275 return mUnderlyingCursor.getDouble(columnIndex);
1279 public float getFloat(int columnIndex) { argument
1286 getInt(int columnIndex) argument
1293 getLong(int columnIndex) argument
1300 getShort(int columnIndex) argument
1307 getString(int columnIndex) argument
1319 getBlob(int columnIndex) argument
1325 getCachedBlob(int columnIndex) argument
1922 getColumnName(int columnIndex) argument
1937 copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) argument
1942 getType(int columnIndex) argument
1947 isNull(int columnIndex) argument
[all...]
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 326 milliseconds