HomeSort by relevance Sort by last modified time
    Searched refs:columnIndex (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 43 public byte[] getBlob(int columnIndex) {
45 return mWindow.getBlob(mPos, columnIndex);
49 public String getString(int columnIndex) {
51 return mWindow.getString(mPos, columnIndex);
55 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {
57 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
61 public short getShort(int columnIndex) {
63 return mWindow.getShort(mPos, columnIndex);
67 public int getInt(int columnIndex) {
69 return mWindow.getInt(mPos, columnIndex);
    [all...]
CursorWrapper.java 81 public String getColumnName(int columnIndex) {
82 return mCursor.getColumnName(columnIndex);
89 public double getDouble(int columnIndex) {
90 return mCursor.getDouble(columnIndex);
97 public float getFloat(int columnIndex) {
98 return mCursor.getFloat(columnIndex);
101 public int getInt(int columnIndex) {
102 return mCursor.getInt(columnIndex);
105 public long getLong(int columnIndex) {
106 return mCursor.getLong(columnIndex);
    [all...]
Cursor.java 195 * @param columnIndex the zero-based index of the target column.
198 String getColumnName(int columnIndex);
221 * @param columnIndex the zero-based index of the target column.
224 byte[] getBlob(int columnIndex);
233 * @param columnIndex the zero-based index of the target column.
236 String getString(int columnIndex);
242 * @param columnIndex the zero-based index of the target column.
246 void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer);
256 * @param columnIndex the zero-based index of the target column.
259 short getShort(int columnIndex);
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 42 * @param columnIndex
51 public void setAutoIncrement(int columnIndex, boolean autoIncrement)
58 * @param columnIndex
67 public void setCaseSensitive(int columnIndex, boolean caseSensitive)
73 * @param columnIndex
81 public void setCatalogName(int columnIndex, String catalogName)
98 * @param columnIndex
106 public void setColumnDisplaySize(int columnIndex, int displaySize)
113 * @param columnIndex
121 public void setColumnLabel(int columnIndex, String theLabel
    [all...]
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 241 * @param columnIndex
247 public Array getArray(int columnIndex) throws SQLException;
265 * @param columnIndex
271 public InputStream getAsciiStream(int columnIndex) throws SQLException;
289 * @param columnIndex
295 public BigDecimal getBigDecimal(int columnIndex) throws SQLException;
303 * @param columnIndex
312 public BigDecimal getBigDecimal(int columnIndex, int scale)
354 * @param columnIndex
361 public InputStream getBinaryStream(int columnIndex) throws SQLException
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 52 public String getColumnName(int columnIndex) {
64 public boolean isNull(int columnIndex) {
68 public int getInt(int columnIndex) {
72 public long getLong(int columnIndex) {
76 public short getShort(int columnIndex) {
80 public float getFloat(int columnIndex) {
84 public double getDouble(int columnIndex) {
88 public byte[] getBlob(int columnIndex) {
92 public String getString(int columnIndex) {
144 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer)
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableColumn.h 56 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; }
57 int columnIndex() const { return m_columnIndex; }
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 33 for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) {
34 String cName = metaData.getColumnName(columnIndex).toLowerCase();
35 this.columnNames.put(cName, columnIndex-1);
36 this.columnNameArray[columnIndex-1]=cName;
63 Integer columnIndex = getColIndex(columnName);
64 if (columnIndex == -1) {
67 return columnIndex;
101 public byte[] getBlob(int columnIndex) {
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
TestCursor.java 83 public String getColumnName(int columnIndex) {
98 public byte[] getBlob(int columnIndex) {
103 public String getString(int columnIndex) {
108 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {
113 public short getShort(int columnIndex) {
118 public int getInt(int columnIndex) {
123 public long getLong(int columnIndex) {
128 public float getFloat(int columnIndex) {
133 public double getDouble(int columnIndex) {
138 public boolean isNull(int columnIndex) {
    [all...]
SimpleTestCursor.java 34 public String getString(int columnIndex) {
35 return (String) results[resultsIndex][columnIndex];
39 public long getLong(int columnIndex) {
40 return (Long) results[resultsIndex][columnIndex];
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 213 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but
217 * @param columnIndex position of the row key in {@link #columnKeyList()}
221 * or {@code columnIndex} is greater then or equal to the number of
224 public V at(int rowIndex, int columnIndex) {
225 return array[rowIndex][columnIndex];
231 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)}
235 * @param columnIndex position of the row key in {@link #columnKeyList()}
240 * or {@code columnIndex} is greater then or equal to the number of
243 public V set(int rowIndex, int columnIndex, @Nullable V value) {
244 V oldValue = array[rowIndex][columnIndex];
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 281 public Array getArray(int columnIndex) throws SQLException {
289 public InputStream getAsciiStream(int columnIndex) throws SQLException {
297 public BigDecimal getBigDecimal(int columnIndex, int scale)
302 public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
315 public InputStream getBinaryStream(int columnIndex) throws SQLException {
323 public Blob getBlob(int columnIndex) throws SQLException {
331 public boolean getBoolean(int columnIndex) throws SQLException {
339 public byte getByte(int columnIndex) throws SQLException {
347 public byte[] getBytes(int columnIndex) throws SQLException {
355 public Reader getCharacterStream(int columnIndex) throws SQLException
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlImageBinder.java 38 public boolean bind(View view, Cursor cursor, int columnIndex) {
40 final String url = mTransformation.transform(cursor, columnIndex);
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemPhotoEntry.java 117 final int columnIndex = cursor.getColumnIndex(columnName);
118 return cursor.isNull(columnIndex) ? missingValue : cursor.getInt(columnIndex);
122 final int columnIndex = cursor.getColumnIndex(columnName);
123 return cursor.getLong(columnIndex);
DataStatus.java 153 final int columnIndex = cursor.getColumnIndex(columnName);
154 return cursor.isNull(columnIndex) ? missingValue : cursor.getInt(columnIndex);
158 final int columnIndex = cursor.getColumnIndex(columnName);
159 return cursor.isNull(columnIndex) ? missingValue : cursor.getLong(columnIndex);
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 176 int columnIndex;
179 columnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);
180 if (columnIndex != -1) {
181 info.name = cursor.getString(columnIndex);
185 columnIndex = cursor.getColumnIndex(PhoneLookup.NUMBER);
186 if (columnIndex != -1) {
187 info.phoneNumber = cursor.getString(columnIndex);
191 columnIndex = cursor.getColumnIndex(PhoneLookup.NORMALIZED_NUMBER);
192 if (columnIndex != -1) {
193 info.normalizedNumber = cursor.getString(columnIndex);
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 219 public String getString(int columnIndex) throws SQLException {
220 if (tr == null || columnIndex < 1 || columnIndex > tr.ncolumns) {
221 throw new SQLException("column " + columnIndex + " not found");
224 lastg = rd[columnIndex - 1];
233 public int getInt(int columnIndex) throws SQLException {
234 Integer i = internalGetInt(columnIndex);
241 private Integer internalGetInt(int columnIndex) throws SQLException {
242 if (tr == null || columnIndex < 1 || columnIndex > tr.ncolumns)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 99 public Image getColumnImage(Object element, int columnIndex) {
100 if (columnIndex == 1) {
112 public String getColumnText(Object element, int columnIndex) {
113 switch (columnIndex) {
  /frameworks/base/core/java/android/widget/
TableLayout.java 157 int columnIndex = Integer.parseInt(columnIdentifier);
159 if (columnIndex >= 0) {
162 columns.put(columnIndex, true);
285 * @param columnIndex the index of the column
290 public void setColumnCollapsed(int columnIndex, boolean isCollapsed) {
292 mCollapsedColumns.put(columnIndex, isCollapsed);
298 ((TableRow) view).setColumnCollapsed(columnIndex, isCollapsed);
308 * @param columnIndex the index of the column
311 public boolean isColumnCollapsed(int columnIndex) {
312 return mCollapsedColumns.get(columnIndex);
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DataStatus.java 147 final int columnIndex = cursor.getColumnIndex(columnName);
148 return cursor.isNull(columnIndex) ? missingValue : cursor.getInt(columnIndex);
152 final int columnIndex = cursor.getColumnIndex(columnName);
153 return cursor.isNull(columnIndex) ? missingValue : cursor.getLong(columnIndex);
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 318 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {
319 mDatabaseCursor.copyStringToBuffer(columnIndex, buffer);
326 public byte[] getBlob(int columnIndex) {
335 public String getColumnName(int columnIndex) {
339 public double getDouble(int columnIndex) {
347 public float getFloat(int columnIndex) {
351 public int getInt(int columnIndex) {
355 public long getLong(int columnIndex) {
363 public short getShort(int columnIndex) {
391 public int getType(int columnIndex) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List3.java 54 public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
56 if (columnIndex != COLUMN_TYPE) {
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
AggregatorRecordStorage.java 103 int columnIndex = cursor.getColumnIndex(column);
104 if (!cursor.isNull(columnIndex)) {
105 String value = cursor.getString(columnIndex);
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 498 public String getString(int columnIndex) {
499 Object cell = mRows[mPos].get(columnIndex);
504 public short getShort(int columnIndex) {
505 Number num = (Number) mRows[mPos].get(columnIndex);
510 public int getInt(int columnIndex) {
511 Number num = (Number) mRows[mPos].get(columnIndex);
516 public long getLong(int columnIndex) {
517 Number num = (Number) mRows[mPos].get(columnIndex);
522 public float getFloat(int columnIndex) {
523 Number num = (Number) mRows[mPos].get(columnIndex);
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 163 public int getInt(int columnIndex) {
164 TestCase.assertEquals(0, columnIndex);
171 public String getString(int columnIndex) {
172 return String.valueOf(getInt(columnIndex));

Completed in 1377 milliseconds

1 2 3 4 5