Home
last modified time | relevance | path

Searched defs:columnIndex (Results 1 – 10 of 10) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
DTestCursor.java83 public String getColumnName(int columnIndex) { in getColumnName()
98 public byte[] getBlob(int columnIndex) { in getBlob()
103 public String getString(int columnIndex) { in getString()
108 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { in copyStringToBuffer()
113 public short getShort(int columnIndex) { in getShort()
118 public int getInt(int columnIndex) { in getInt()
123 public long getLong(int columnIndex) { in getLong()
128 public float getFloat(int columnIndex) { in getFloat()
133 public double getDouble(int columnIndex) { in getDouble()
138 public boolean isNull(int columnIndex) { in isNull()
[all …]
DSimpleTestCursor.java34 public String getString(int columnIndex) { in getString()
39 public long getLong(int columnIndex) { in getLong()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DAbstractCursorTest.java244 public double getDouble(int columnIndex) { in getDouble()
249 public float getFloat(int columnIndex) { in getFloat()
254 public int getInt(int columnIndex) { in getInt()
259 public long getLong(int columnIndex) { in getLong()
264 public short getShort(int columnIndex) { in getShort()
269 public String getString(int columnIndex) { in getString()
274 public boolean isNull(int columnIndex) { in isNull()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteCursor.java63 Integer columnIndex = getColIndex(columnName); in getColumnIndexOrThrow() local
101 public byte[] getBlob(int columnIndex) { in getBlob()
107 public String getString(int columnIndex) { in getString()
122 public short getShort(int columnIndex) { in getShort()
130 public int getInt(int columnIndex) { in getInt()
138 public long getLong(int columnIndex) { in getLong()
146 public float getFloat(int columnIndex) { in getFloat()
155 public double getDouble(int columnIndex) { in getDouble()
190 public boolean isNull(int columnIndex) { in isNull()
DShadowCursorWrapper.java209 public int getType(int columnIndex) { in getType()
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java281 public Array getArray(int columnIndex) throws SQLException { in getArray()
289 public InputStream getAsciiStream(int columnIndex) throws SQLException { in getAsciiStream()
297 public BigDecimal getBigDecimal(int columnIndex, int scale) in getBigDecimal()
302 public BigDecimal getBigDecimal(int columnIndex) throws SQLException { in getBigDecimal()
315 public InputStream getBinaryStream(int columnIndex) throws SQLException { in getBinaryStream()
323 public Blob getBlob(int columnIndex) throws SQLException { in getBlob()
331 public boolean getBoolean(int columnIndex) throws SQLException { in getBoolean()
339 public byte getByte(int columnIndex) throws SQLException { in getByte()
347 public byte[] getBytes(int columnIndex) throws SQLException { in getBytes()
355 public Reader getCharacterStream(int columnIndex) throws SQLException { in getCharacterStream()
[all …]
/external/webkit/Source/WebCore/accessibility/
DAccessibilityTableColumn.h56 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } in setColumnIndex()
57 int columnIndex() const { return m_columnIndex; } in columnIndex() function
/external/guava/guava/src/com/google/common/collect/
DArrayTable.java224 public V at(int rowIndex, int columnIndex) { in at()
243 public V set(int rowIndex, int columnIndex, @Nullable V value) { in set()
333 Integer columnIndex = columnKeyToIndex.get(columnKey); in get() local
337 private V getIndexed(Integer rowIndex, Integer columnIndex) { in getIndexed()
362 Integer columnIndex = columnKeyToIndex.get(columnKey); in put() local
417 Integer columnIndex = columnKeyToIndex.get(columnKey); in erase() local
478 final int columnIndex = index % columnList.size(); in iterator() local
/external/chromium/chrome/browser/resources/net_internals/
Dutil.js217 TablePrinter.prototype.getCell_ = function(rowIndex, columnIndex) { argument
/external/webkit/Source/WebCore/rendering/
DRenderLayer.cpp3288 … const Vector<RenderLayer*>& columnLayers, size_t columnIndex) in scrollTo()