Home
last modified time | relevance | path

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

12

/external/robolectric/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/guava/guava/src/com/google/common/collect/
DArrayTable.java224 public V at(int rowIndex, int columnIndex) { in at() argument
225 return array[rowIndex][columnIndex]; in at()
243 public V set(int rowIndex, int columnIndex, @Nullable V value) { in set() argument
244 V oldValue = array[rowIndex][columnIndex]; in set()
245 array[rowIndex][columnIndex] = value; in set()
333 Integer columnIndex = columnKeyToIndex.get(columnKey); in get() local
334 return getIndexed(rowIndex, columnIndex); in get()
337 private V getIndexed(Integer rowIndex, Integer columnIndex) { in getIndexed() argument
338 return (rowIndex == null || columnIndex == null) in getIndexed()
339 ? null : array[rowIndex][columnIndex]; in getIndexed()
[all …]
DRegularImmutableTable.java305 int columnIndex = columnKeyToIndex.get(columnKey);
306 V existingValue = values[rowIndex][columnIndex];
309 values[rowIndex][columnIndex] = cell.getValue();
320 int columnIndex = columnIndexInteger;
323 V value = values[i][columnIndex];
379 Integer columnIndex = columnKeyToIndex.get(columnKey);
380 return ((rowIndex == null) || (columnIndex == null)) ? null
381 : values[rowIndex][columnIndex];
/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/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/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
DTestContentProvider.java118 public boolean isNull(int columnIndex) { in isNull() argument
119 return columnIndex != ColumnIndex.RESOURCE_REQUEST_COUNT_COLUMN.ordinal(); in isNull()
128 public int getType(int columnIndex) { in getType() argument
129 if (columnIndex == ColumnIndex.RESOURCE_REQUEST_COUNT_COLUMN.ordinal()) { in getType()
140 public double getDouble(int columnIndex) { in getDouble() argument
146 public float getFloat(int columnIndex) { in getFloat() argument
152 public int getInt(int columnIndex) { in getInt() argument
153 if (columnIndex == ColumnIndex.RESOURCE_REQUEST_COUNT_COLUMN.ordinal()) { in getInt()
160 public short getShort(int columnIndex) { in getShort() argument
166 public long getLong(int columnIndex) { in getLong() argument
[all …]
/external/chromium_org/ui/webui/resources/js/cr/ui/table/
Dtable_splitter.js49 this.columnWidth_ = cm.getWidth(this.columnIndex);
50 this.nextColumnWidth_ = cm.getWidth(this.columnIndex + 1);
58 this.table_.columnModel.setWidth(this.columnIndex,
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXTableColumn.h51 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } in setColumnIndex() argument
52 int columnIndex() const { return m_columnIndex; } in columnIndex() function
/external/robolectric/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/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableCellTest.cpp53 static const unsigned columnIndex = 10; in TEST_F() local
54 m_cell->setCol(columnIndex); in TEST_F()
55 EXPECT_EQ(columnIndex, m_cell->col()); in TEST_F()
DRenderMultiColumnSet.cpp76 unsigned columnIndex = columnIndexAtOffset(blockOffset); in flowThreadTranslationAtOffset() local
77 LayoutRect portionRect(flowThreadPortionRectAt(columnIndex)); in flowThreadTranslationAtOffset()
79 LayoutRect columnRect(columnRectAt(columnIndex)); in flowThreadTranslationAtOffset()
104 unsigned columnIndex = columnIndexAtOffset(offset, AssumeNewColumns); in pageLogicalTopForOffset() local
105 return logicalTopInFlowThread() + columnIndex * pageLogicalHeight(); in pageLogicalTopForOffset()
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
Dfile_table.js123 columnIndex, columnWidth) { argument
125 if (columnIndex < 0 ||
126 columnIndex >= FileTableColumnModel.RESIZABLE_LENGTH_ ||
133 this.columnPos_[columnIndex] + Math.max(columnWidth,
137 for (var i = 0; i < columnIndex + 1; i++) {
140 for (var i = columnIndex + 1;
143 var posStart = this.columnPos_[columnIndex + 1];
151 newPos[columnIndex] = this.columnPos_[columnIndex];
183 this.table_.columnModel.setWidthAndKeepTotal(this.columnIndex,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
DKitKatBrowserAccessibilityManager.java53 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) { in setAccessibilityNodeInfoCollectionItemInfo() argument
55 rowIndex, rowSpan, columnIndex, columnSpan, heading)); in setAccessibilityNodeInfoCollectionItemInfo()
93 int rowIndex, int rowSpan, int columnIndex, int columnSpan) { in setAccessibilityEventCollectionItemInfo() argument
DBrowserAccessibilityManager.java617 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) { in setAccessibilityNodeInfoCollectionItemInfo() argument
714 int rowIndex, int rowSpan, int columnIndex, int columnSpan) { in setAccessibilityEventCollectionItemInfo() argument
719 bundle.putInt("AccessibilityNodeInfo.CollectionItemInfo.columnIndex", columnIndex); in setAccessibilityEventCollectionItemInfo()
/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/chromium_org/third_party/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/chromium_org/third_party/webrtc/tools/loopback_test/
Dstat_tracker.js44 var columnIndex = dataTable.addColumn('number', varName);
49 dataTable.setCell(rowIndex, columnIndex, sample);
/external/chromium_org/chrome/browser/resources/net_internals/
Dtable_printer.js104 getCell_: function(rowIndex, columnIndex) { argument
108 if (columnIndex >= row.length)
110 return row[columnIndex];
/external/chromium_org/third_party/angle/src/libGLESv2/
DShader.h38 unsigned int columnIndex; // Assigned during link, defaults to 0 member
43 columnIndex(0) in PackedVarying()
/external/chromium_org/third_party/WebKit/public/web/
DWebAXObject.h183 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const;
190 BLINK_EXPORT unsigned columnIndex() const;
/external/chromium_org/third_party/WebKit/Source/web/
DWebAXObject.cpp978 WebAXObject WebAXObject::columnAtIndex(unsigned columnIndex) const in columnAtIndex()
987 if (columnIndex < columns.size()) in columnAtIndex()
988 return WebAXObject(columns[columnIndex]); in columnAtIndex()
1015 unsigned WebAXObject::columnIndex() const in columnIndex() function in blink::WebAXObject
1023 return toAXTableColumn(m_private.get())->columnIndex(); in columnIndex()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
DDynamicHLSL.cpp129 varying->columnIndex = 0; in packVarying()
163 varying->columnIndex = 2; in packVarying()
207 varying->columnIndex = column; in packVarying()
338 …unsigned int semanticIndex = elementIndex * variableRows + varying.columnIndex * mRenderer->getRen… in generateVaryingHLSL()
775 …int r = varying.registerIndex + varying.columnIndex * mRenderer->getRendererCaps().maxVaryingVecto… in generateShaderLinkHLSL()
923 …std::string n = Str(varying.registerIndex + varying.columnIndex * mRenderer->getRendererCaps().max… in generateShaderLinkHLSL()

12