/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSetMetaData.java | 13 public String getCatalogName(int column) throws java.sql.SQLException { in getCatalogName() argument 17 public String getColumnClassName(int column) throws java.sql.SQLException { in getColumnClassName() argument 18 column--; in getColumnClassName() 20 if (column < 0 || column >= r.tr.ncolumns) { in getColumnClassName() 24 switch (((TableResultX) r.tr).sql_type[column]) { in getColumnClassName() 51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { in getColumnDisplaySize() argument 55 public String getColumnLabel(int column) throws java.sql.SQLException { in getColumnLabel() argument 56 column--; in getColumnLabel() 59 if (column < 0 || column >= r.tr.ncolumns) { in getColumnLabel() 62 c = r.tr.column[column]; in getColumnLabel() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowMatrixCursor.java | 31 public String getString(int column) { in getString() argument 32 Object columnValue = get(column); in getString() 37 public long getLong(int column) { in getLong() argument 38 Number numberValue = (Number) get(column); in getLong() 43 public short getShort(int column) { in getShort() argument 44 Number numberValue = (Number) get(column); in getShort() 49 public int getInt(int column) { in getInt() argument 50 Number numberValue = (Number) get(column); in getInt() 55 public float getFloat(int column) { in getFloat() argument 56 Number numberValue = (Number) get(column); in getFloat() [all …]
|
/external/bison/src/ |
D | location.c | 37 add_column_width (int column, char const *buf, size_t bufsize) in add_column_width() argument 40 unsigned int remaining_columns = INT_MAX - column; in add_column_width() 51 return width <= remaining_columns ? column + width : INT_MAX; in add_column_width() 61 int column = cur->column; in location_compute() local 73 column = 1; in location_compute() 78 column = add_column_width (column, p0, p - p0); in location_compute() 79 column = add_column_width (column, NULL, 8 - ((column - 1) & 7)); in location_compute() 88 cur->column = column = add_column_width (column, p0, p - p0); in location_compute() 94 if (column == INT_MAX && loc->start.column != INT_MAX) in location_compute() 105 int end_col = 0 != loc.end.column ? loc.end.column - 1 : 0; in location_print() [all …]
|
/external/clang/tools/libclang/ |
D | CXSourceLocation.cpp | 124 unsigned column) { in clang_getLocation() argument 131 if (line == 0 || column == 0) in clang_getLocation() 138 SourceLocation SLoc = CXXUnit->getLocation(File, line, column); in clang_getLocation() 142 File->getName(), line, column); in clang_getLocation() 149 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column) in clang_getLocation() 184 unsigned *column, unsigned *offset) { in createNullLocation() argument 189 if (column) in createNullLocation() 190 *column = 0; in createNullLocation() 196 unsigned *column, unsigned *offset = nullptr) { in createNullLocation() argument 201 if (column) in createNullLocation() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | AbstractRealMatrix.java | 217 public void visit(final int row, final int column, final double value) { in getNorm() argument 248 public void visit(final int row, final int column, final double value) { in getFrobeniusNorm() argument 293 public double visit(final int row, final int column, final double value) { 294 return getEntry(selectedRows[row], selectedColumns[column]); 340 public void visit(final int row, final int column, final double value) { 341 destination[row - startRow][column - startColumn] = value; 373 public void setSubMatrix(final double[][] subMatrix, final int row, final int column) 395 MatrixUtils.checkColumnIndex(this, column); 397 MatrixUtils.checkColumnIndex(this, nCols + column - 1); 401 setEntry(row + i, column + j, subMatrix[i][j]); [all …]
|
D | AbstractFieldMatrix.java | 319 public T visit(final int row, final int column, final T value) { in getSubMatrix() 320 return getEntry(selectedRows[row], selectedColumns[column]); in getSubMatrix() 366 public void visit(final int row, final int column, final T value) { in copySubMatrix() 367 destination[row - startRow][column - startColumn] = value; in copySubMatrix() 399 public void setSubMatrix(final T[][] subMatrix, final int row, final int column) in setSubMatrix() argument 421 checkColumnIndex(column); in setSubMatrix() 423 checkColumnIndex(nCols + column - 1); in setSubMatrix() 427 setEntry(row + i, column + j, subMatrix[i][j]); in setSubMatrix() 467 public FieldMatrix<T> getColumnMatrix(final int column) in getColumnMatrix() argument 470 checkColumnIndex(column); in getColumnMatrix() [all …]
|
D | SparseFieldMatrix.java | 104 public void addToEntry(int row, int column, T increment) in addToEntry() argument 107 checkColumnIndex(column); in addToEntry() 108 final int key = computeKey(row, column); in addToEntry() 139 public T getEntry(int row, int column) throws MatrixIndexException { in getEntry() argument 141 checkColumnIndex(column); in getEntry() 142 return entries.get(computeKey(row, column)); in getEntry() 153 public void multiplyEntry(int row, int column, T factor) in multiplyEntry() argument 156 checkColumnIndex(column); in multiplyEntry() 157 final int key = computeKey(row, column); in multiplyEntry() 169 public void setEntry(int row, int column, T value) in setEntry() argument [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormatParseLocation.java | 54 static TextFormatParseLocation create(int line, int column) { in create() argument 55 if (line == -1 && column == -1) { in create() 58 if (line < 0 || column < 0) { in create() 60 String.format("line and column values must be >= 0: line %d, column: %d", line, column)); in create() 62 return new TextFormatParseLocation(line, column); in create() 66 private final int column; field in TextFormatParseLocation 68 private TextFormatParseLocation(int line, int column) { in TextFormatParseLocation() argument 70 this.column = column; in TextFormatParseLocation() 78 return column; in getColumn() 83 return String.format("ParseLocation{line=%d, column=%d}", line, column); in toString() [all …]
|
/external/llvm/test/Linker/ |
D | mdlocation.ll | 12 ; CHECK: !0 = !DILocation(line: 3, column: 7, scope: !1) 14 ; CHECK: !7 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !0) 15 ; CHECK: !8 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !7) 16 ; CHECK: !9 = distinct !DILocation(line: 3, column: 7, scope: !1) 17 ; CHECK: !10 = distinct !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !9) 18 ; CHECK: !11 = !DILocation(line: 3, column: 7, scope: !12) 20 ; CHECK: !15 = !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !11) 21 ; CHECK: !16 = !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !15) 22 ; CHECK: !17 = distinct !DILocation(line: 3, column: 7, scope: !12) 23 ; CHECK: !18 = distinct !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !17) [all …]
|
/external/llvm/test/Transforms/SampleProfile/ |
D | propagate.ll | 226 !13 = !DILocation(line: 3, column: 14, scope: !6) 228 !15 = !DILocation(line: 3, column: 21, scope: !6) 230 !17 = !DILocation(line: 3, column: 29, scope: !6) 231 !18 = !DILocation(line: 4, column: 7, scope: !19) 232 !19 = distinct !DILexicalBlock(scope: !6, file: !1, line: 4, column: 7) 233 !20 = !DILocation(line: 4, column: 11, scope: !19) 234 !21 = !DILocation(line: 4, column: 9, scope: !19) 235 !22 = !DILocation(line: 4, column: 7, scope: !6) 236 !23 = !DILocation(line: 5, column: 12, scope: !24) 237 !24 = distinct !DILexicalBlock(scope: !19, file: !1, line: 4, column: 14) [all …]
|
D | branch.ll | 178 !18 = !DILocation(line: 4, column: 15, scope: !6) 180 !20 = !DILocation(line: 4, column: 27, scope: !6) 181 !21 = !DILocation(line: 5, column: 8, scope: !22) 182 !22 = distinct !DILexicalBlock(scope: !6, file: !1, line: 5, column: 8) 183 !23 = !DILocation(line: 5, column: 13, scope: !22) 184 !24 = !DILocation(line: 5, column: 8, scope: !6) 185 !25 = !DILocation(line: 6, column: 6, scope: !22) 187 !27 = !DILocation(line: 7, column: 11, scope: !6) 189 !29 = !DILocation(line: 8, column: 8, scope: !6) 190 !30 = !DILocation(line: 8, column: 21, scope: !6) [all …]
|
D | gcc-simple.ll | 165 !18 = !DILocation(line: 3, column: 24, scope: !4) 166 !19 = !DILocation(line: 4, column: 7, scope: !20) 167 !20 = distinct !DILexicalBlock(scope: !4, file: !1, line: 4, column: 7) 168 !21 = !DILocation(line: 4, column: 14, scope: !20) 169 !22 = !DILocation(line: 4, column: 7, scope: !4) 170 !23 = !DILocation(line: 4, column: 21, scope: !24) 172 !25 = !DILocation(line: 4, column: 40, scope: !26) 174 !27 = distinct !DILexicalBlock(scope: !20, file: !1, line: 4, column: 40) 175 !28 = !DILocation(line: 4, column: 47, scope: !27) 176 !29 = !DILocation(line: 4, column: 40, scope: !20) [all …]
|
D | cov-zero-samples.ll | 109 !32 = !DILocation(line: 5, column: 27, scope: !31) 111 !34 = !DILocation(line: 8, column: 7, scope: !8) 113 !36 = distinct !DILexicalBlock(scope: !8, file: !1, line: 9, column: 3) 114 !37 = !DILocation(line: 9, column: 18, scope: !36) 115 !38 = !DILocation(line: 9, column: 8, scope: !36) 116 !39 = !DILocation(line: 9, column: 25, scope: !40) 118 !41 = distinct !DILexicalBlock(scope: !36, file: !1, line: 9, column: 3) 119 !42 = !DILocation(line: 9, column: 29, scope: !40) 120 !43 = !DILocation(line: 9, column: 27, scope: !40) 121 !44 = !DILocation(line: 9, column: 3, scope: !40) [all …]
|
D | remarks.ll | 138 !11 = distinct !DILexicalBlock(scope: !4, file: !1, line: 5, column: 3) 146 !19 = !DILocation(line: 4, column: 3, scope: !4) 148 !21 = !DILocation(line: 4, column: 17, scope: !4) 153 !26 = !DILocation(line: 5, column: 8, scope: !11) 154 !27 = !DILocation(line: 5, column: 12, scope: !11) 157 !30 = !DILocation(line: 5, column: 19, scope: !31) 160 !33 = distinct !DILexicalBlock(scope: !11, file: !1, line: 5, column: 3) 161 !34 = !DILocation(line: 5, column: 21, scope: !33) 162 !35 = !DILocation(line: 5, column: 3, scope: !11) 163 !36 = !DILocation(line: 5, column: 3, scope: !37) [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/ |
D | CounterColumnTest.java | 79 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, in testInitVisible() local 82 assertTrue(column.init(Arrays.asList(item), item.getNode())); in testInitVisible() 88 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, in testInitInvisible() local 91 assertFalse(column.init(Arrays.asList(item), createNode(1, 0))); in testInitInvisible() 97 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, in testItemTotal() local 100 column.init(Collections.singletonList(item), item.getNode()); in testItemTotal() 101 column.item(td, item, resources, root); in testItemTotal() 110 IColumnRenderer column = CounterColumn.newMissed(CounterEntity.LINE, in testItemMissed() local 113 column.init(Collections.singletonList(item), item.getNode()); in testItemMissed() 114 column.item(td, item, resources, root); in testItemMissed() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | wpagui.ui | 21 <item row="0" column="0" > 28 <item row="0" column="1" > 31 <item row="1" column="0" > 38 <item row="1" column="1" > 41 <item row="2" column="0" colspan="2" > 51 <item row="0" column="0" colspan="5" > 60 <item row="0" column="0" > 67 <item row="1" column="0" > 74 <item row="2" column="0" > 81 <item row="3" column="0" > [all …]
|
D | networkconfig.ui | 16 <item row="1" column="3" > 23 <item row="0" column="0" colspan="4" > 32 <item row="0" column="0" > 39 <item row="0" column="1" > 49 <item row="1" column="0" > 56 <item row="1" column="1" > 100 <item row="2" column="0" > 107 <item row="2" column="1" > 131 <item row="3" column="0" > 138 <item row="3" column="1" > [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
D | JSilverBadSyntaxException.java | 28 private final int column; field in JSilverBadSyntaxException 49 int line, int column, Throwable cause) { in JSilverBadSyntaxException() argument 50 super(makeMessage(message, lineContent, resourceName, line, column), cause); in JSilverBadSyntaxException() 53 this.column = column; in JSilverBadSyntaxException() 57 int line, int column) { in makeMessage() argument 68 if (column != UNKNOWN_POSITION) { in makeMessage() 69 result.append(" column=").append(column); in makeMessage() 92 return column; in getColumn()
|
/external/autotest/frontend/client/src/autotest/common/spreadsheet/ |
D | Spreadsheet.java | 82 public Header row, column; field in Spreadsheet.CellInfo 90 public CellInfo(Header row, Header column, String contents) { in CellInfo() argument 92 this.column = column; in CellInfo() 97 return !isEmpty() && (row == null || column == null); in isHeader() 101 return row == null && column == null; in isEmpty() 263 public CellInfo getCellInfo(int row, int column) { in getCellInfo() argument 265 Header columnHeader = columnHeaderValues.get(column); in getCellInfo() 266 if (dataCells[row][column] == null) { in getCellInfo() 267 dataCells[row][column] = new CellInfo(rowHeader, columnHeader, ""); in getCellInfo() 269 return dataCells[row][column]; in getCellInfo() [all …]
|
/external/fmtlib/doc/bootstrap/mixins/ |
D | grid.less | 22 .make-xs-column(@columns; @gutter: @grid-gutter-width) { 30 .make-xs-column-offset(@columns) { 33 .make-xs-column-push(@columns) { 36 .make-xs-column-pull(@columns) { 41 .make-sm-column(@columns; @gutter: @grid-gutter-width) { 52 .make-sm-column-offset(@columns) { 57 .make-sm-column-push(@columns) { 62 .make-sm-column-pull(@columns) { 69 .make-md-column(@columns; @gutter: @grid-gutter-width) { 80 .make-md-column-offset(@columns) { [all …]
|
/external/llvm/test/CodeGen/Hexagon/ |
D | misched-top-rptracker-sync.ll | 111 !29 = !DILocation(line: 138, column: 34, scope: !6) 112 !30 = !DILocation(line: 138, column: 57, scope: !6) 113 !31 = !DILocation(line: 140, column: 5, scope: !6) 114 !32 = !DILocation(line: 140, column: 5, scope: !33) 116 !34 = !DILocation(line: 141, column: 5, scope: !6) 117 !35 = !DILocation(line: 141, column: 5, scope: !33) 118 !36 = !DILocation(line: 143, column: 30, scope: !37) 119 !37 = distinct !DILexicalBlock(scope: !6, file: !1, line: 143, column: 9) 120 !38 = !DILocation(line: 155, column: 18, scope: !6) 126 !44 = !DILocation(line: 143, column: 14, scope: !37) [all …]
|
/external/clang/bindings/python/tests/cindex/ |
D | test_location.py | 10 def assert_location(loc, line, column, offset): argument 12 assert loc.column == column 23 assert_location(one.location,line=1,column=5,offset=4) 24 assert_location(two.location,line=2,column=5,offset=13) 34 assert_location(one.location,line=2,column=5,offset=5) 35 assert_location(two.location,line=3,column=5,offset=14) 42 assert_location(one.location,line=1,column=6,offset=5) 43 assert_location(two.location,line=2,column=5,offset=14) 77 assert_location(one.extent.start,line=1,column=1,offset=0) 78 assert_location(one.extent.end,line=1,column=8,offset=7) [all …]
|
/external/llvm/test/DebugInfo/Mips/ |
D | dsr-fixed-objects.ll | 127 !27 = !DILocation(line: 4, column: 12, scope: !4) 128 !28 = !DILocation(line: 4, column: 19, scope: !4) 129 !29 = !DILocation(line: 4, column: 26, scope: !4) 130 !30 = !DILocation(line: 4, column: 33, scope: !4) 131 !31 = !DILocation(line: 4, column: 40, scope: !4) 132 !32 = !DILocation(line: 5, column: 3, scope: !4) 133 !33 = !DILocation(line: 5, column: 13, scope: !4) 134 !34 = !DILocation(line: 5, column: 17, scope: !4) 135 !35 = !DILocation(line: 5, column: 21, scope: !4) 136 !36 = !DILocation(line: 5, column: 25, scope: !4) [all …]
|
/external/llvm/test/Assembler/ |
D | dilocation.ll | 20 ; CHECK-NEXT: !3 = !DILocation(line: 3, column: 7, scope: !0) 21 !3 = !DILocation(line: 3, column: 7, scope: !0) 22 !4 = !DILocation(scope: !0, column: 7, line: 3) 24 ; CHECK-NEXT: !4 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !3) 25 !5 = !DILocation(scope: !0, inlinedAt: !3, column: 7, line: 3) 26 !6 = !DILocation(column: 7, line: 3, scope: !0, inlinedAt: !3) 30 !8 = !DILocation(scope: !0, column: 0, line: 0) 32 ; CHECK-NEXT: !6 = !DILocation(line: 4294967295, column: 65535, scope: !0) 33 !9 = !DILocation(line: 4294967295, column: 65535, scope: !0)
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | DataTable.java | 176 protected boolean isWidgetColumn(int column) { in isWidgetColumn() argument 177 return columns[column][COL_NAME].equals(WIDGET_COLUMN) || isClickableWidgetColumn(column); in isWidgetColumn() 180 protected boolean isClickableWidgetColumn(int column) { in isClickableWidgetColumn() argument 181 return columns[column][COL_NAME].equals(CLICKABLE_WIDGET_COLUMN); in isClickableWidgetColumn() 302 for (int column = 0; column < columns.length; column++) { in refreshWidgets() 303 if (!isWidgetColumn(column)) { in refreshWidgets() 306 table.clearCell(row, column); in refreshWidgets() 307 table.setWidget(row, column, getWidgetForCell(row, column)); in refreshWidgets() 312 private Widget getWidgetForCell(int row, int column) { in getWidgetForCell() argument 313 return widgetFactory.createWidget(row - 1, column, jsonObjects.get(row - 1)); in getWidgetForCell() [all …]
|