Home
last modified time | relevance | path

Searched refs:columnIndex (Results 1 – 25 of 46) sorted by relevance

12

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteCursor.java33 for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) { in cacheColumnNames()
34 String cName = metaData.getColumnName(columnIndex).toLowerCase(); in cacheColumnNames()
35 this.columnNames.put(cName, columnIndex-1); in cacheColumnNames()
36 this.columnNameArray[columnIndex-1]=cName; in cacheColumnNames()
63 Integer columnIndex = getColIndex(columnName); in getColumnIndexOrThrow() local
64 if (columnIndex == -1) { in getColumnIndexOrThrow()
67 return columnIndex; in getColumnIndexOrThrow()
101 public byte[] getBlob(int columnIndex) { in getBlob() argument
103 return (byte[]) this.currentRow.get(getColumnNames()[columnIndex]); in getBlob()
107 public String getString(int columnIndex) { in getString() argument
[all …]
DShadowCursorWrapper.java209 public int getType(int columnIndex) { in getType() argument
/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() argument
289 public InputStream getAsciiStream(int columnIndex) throws SQLException { in getAsciiStream() argument
297 public BigDecimal getBigDecimal(int columnIndex, int scale) in getBigDecimal() argument
302 public BigDecimal getBigDecimal(int columnIndex) throws SQLException { in getBigDecimal() argument
315 public InputStream getBinaryStream(int columnIndex) throws SQLException { in getBinaryStream() argument
323 public Blob getBlob(int columnIndex) throws SQLException { in getBlob() argument
331 public boolean getBoolean(int columnIndex) throws SQLException { in getBoolean() argument
339 public byte getByte(int columnIndex) throws SQLException { in getByte() argument
347 public byte[] getBytes(int columnIndex) throws SQLException { in getBytes() argument
355 public Reader getCharacterStream(int columnIndex) throws SQLException { in getCharacterStream() argument
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSet.java219 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) {
243 throw new SQLException("column " + columnIndex + " not found");
246 lastg = rd[columnIndex - 1];
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
DTestCursor.java83 public String getColumnName(int columnIndex) { in getColumnName() argument
98 public byte[] getBlob(int columnIndex) { in getBlob() argument
103 public String getString(int columnIndex) { in getString() argument
108 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { in copyStringToBuffer() argument
113 public short getShort(int columnIndex) { in getShort() argument
118 public int getInt(int columnIndex) { in getInt() argument
123 public long getLong(int columnIndex) { in getLong() argument
128 public float getFloat(int columnIndex) { in getFloat() argument
133 public double getDouble(int columnIndex) { in getDouble() argument
138 public boolean isNull(int columnIndex) { in isNull() argument
[all …]
DSimpleTestCursor.java34 public String getString(int columnIndex) { in getString() argument
35 return (String) results[resultsIndex][columnIndex]; in getString()
39 public long getLong(int columnIndex) { in getLong() argument
40 return (Long) results[resultsIndex][columnIndex]; in getLong()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DArrayTable.java328 public V at(int rowIndex, int columnIndex) {
331 checkElementIndex(columnIndex, columnList.size());
332 return array[rowIndex][columnIndex];
350 public V set(int rowIndex, int columnIndex, @Nullable V value) {
353 checkElementIndex(columnIndex, columnList.size());
354 V oldValue = array[rowIndex][columnIndex];
355 array[rowIndex][columnIndex] = value;
422 Integer columnIndex = columnKeyToIndex.get(columnKey);
423 return (rowIndex == null || columnIndex == null)
424 ? null : at(rowIndex, columnIndex);
[all …]
/external/guava/guava/src/com/google/common/collect/
DDenseImmutableTable.java69 int columnIndex = columnKeyToIndex.get(columnKey); in DenseImmutableTable() local
70 V existingValue = values[rowIndex][columnIndex]; in DenseImmutableTable()
72 values[rowIndex][columnIndex] = cell.getValue(); in DenseImmutableTable()
74 columnCounts[columnIndex]++; in DenseImmutableTable()
76 iterationOrderColumn[i] = columnIndex; in DenseImmutableTable()
177 private final int columnIndex;
179 Column(int columnIndex) {
180 super(columnCounts[columnIndex]);
181 this.columnIndex = columnIndex;
191 return values[keyIndex][columnIndex];
[all …]
DArrayTable.java330 public V at(int rowIndex, int columnIndex) {
333 checkElementIndex(columnIndex, columnList.size());
334 return array[rowIndex][columnIndex];
352 public V set(int rowIndex, int columnIndex, @Nullable V value) {
355 checkElementIndex(columnIndex, columnList.size());
356 V oldValue = array[rowIndex][columnIndex];
357 array[rowIndex][columnIndex] = value;
446 Integer columnIndex = columnKeyToIndex.get(columnKey);
447 return (rowIndex == null || columnIndex == null)
448 ? null : at(rowIndex, columnIndex);
[all …]
DSparseImmutableTable.java100 int columnIndex = iterationOrderColumn[index]; in getCell() local
101 Map.Entry<C, V> colEntry = row.entrySet().asList().get(columnIndex); in getCell()
109 int columnIndex = iterationOrderColumn[index]; in getValue() local
110 return row.values().asList().get(columnIndex); in getValue()
/external/lzma/CPP/Windows/Control/
DListView.h29 …bool DeleteColumn(int columnIndex) { return BOOLToBool(ListView_DeleteColumn(_window, columnIndex)… in DeleteColumn() argument
31 …int InsertColumn(int columnIndex, const LVCOLUMN *columnInfo) { return ListView_InsertColumn(_wind… in InsertColumn() argument
32 int InsertColumn(int columnIndex, LPCTSTR text, int width);
40 …int InsertColumn(int columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMessage(LVM_INSER… in InsertColumn() argument
41 int InsertColumn(int columnIndex, LPCWSTR text, int width);
78 bool GetColumn(int columnIndex, LVCOLUMN* columnInfo) const in GetColumn() argument
79 { return BOOLToBool(ListView_GetColumn(_window, columnIndex, columnInfo)); } in GetColumn()
DListView.cpp34 int CListView::InsertColumn(int columnIndex, LPCTSTR text, int width) in InsertColumn() argument
39 ci.iSubItem = columnIndex; in InsertColumn()
41 return InsertColumn(columnIndex, &ci); in InsertColumn()
67 int CListView::InsertColumn(int columnIndex, LPCWSTR text, int width) in InsertColumn() argument
72 ci.iSubItem = columnIndex; in InsertColumn()
74 return InsertColumn(columnIndex, &ci); in InsertColumn()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DAbstractCursorTest.java244 public double getDouble(int columnIndex) { in getDouble() argument
249 public float getFloat(int columnIndex) { in getFloat() argument
254 public int getInt(int columnIndex) { in getInt() argument
259 public long getLong(int columnIndex) { in getLong() argument
264 public short getShort(int columnIndex) { in getShort() argument
269 public String getString(int columnIndex) { in getString() argument
274 public boolean isNull(int columnIndex) { in isNull() argument
/external/skia/src/views/mac/
DSkOptionsTableView.mm151 NSInteger columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
152 if (columnIndex == 0) {
166 NSInteger columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
167 if (columnIndex == 1)
176 NSInteger columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
177 if (columnIndex == 1) {
210 NSInteger columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
211 if (columnIndex == 1) {
/external/webrtc/webrtc/tools/loopback_test/
Dstat_tracker.js44 var columnIndex = dataTable.addColumn('number', varName);
49 dataTable.setCell(rowIndex, columnIndex, sample);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/robolectric/v3/runtime/
Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
/external/guice/extensions/persist/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...

12