Searched refs:colIndex (Results 1 – 4 of 4) sorted by relevance
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSet.java | 1001 public void updateNull(int colIndex) throws SQLException { 1003 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) { 1004 throw new SQLException("column " + colIndex + " not found"); 1007 rowbuf[colIndex - 1] = null; 1010 public void updateBoolean(int colIndex, boolean b) throws SQLException { 1011 updateString(colIndex, b ? "1" : "0"); 1014 public void updateByte(int colIndex, byte b) throws SQLException { 1018 public void updateShort(int colIndex, short b) throws SQLException { 1020 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) { 1021 throw new SQLException("column " + colIndex + " not found"); [all …]
|
/external/webkit/Source/WebCore/html/ |
D | DataGridColumnList.cpp | 96 size_t colIndex = m_columns.find(col); in move() local 97 if (colIndex == notFound) in move()
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityTable.cpp | 318 for (unsigned colIndex = 0; colIndex < numCols; ++colIndex) { in addChildren() local 320 RenderTableCell* cell = tableSection->primaryCellAt(rowIndex, colIndex); in addChildren()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderLayer.cpp | 2784 … PaintLayerFlags paintFlags, const Vector<RenderLayer*>& columnLayers, size_t colIndex) in paintChildLayerIntoColumns() argument 2786 RenderBlock* columnBlock = toRenderBlock(columnLayers[colIndex]->renderer()); in paintChildLayerIntoColumns() 2820 if (!colIndex) { in paintChildLayerIntoColumns() 2840 columnLayers[colIndex - 1]->convertToLayerCoords(rootLayer, childX, childY); in paintChildLayerIntoColumns() 2848 …paintChildLayerIntoColumns(childLayer, columnLayers[colIndex - 1], context, transform.inverse().ma… in paintChildLayerIntoColumns() 2850 columnLayers, colIndex - 1); in paintChildLayerIntoColumns()
|