Home
last modified time | relevance | path

Searched refs:column (Results 1 – 25 of 1065) sorted by relevance

12345678910>>...43

/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSetMetaData.java13 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/
DShadowMatrixCursor.java31 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/
Dlocation.c37 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/
DCXSourceLocation.cpp124 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()
197 unsigned *column, unsigned *offset = nullptr) { in createNullLocation() argument
202 if (column) in createNullLocation()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealMatrix.java217 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 …]
DAbstractFieldMatrix.java319 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 …]
DSparseFieldMatrix.java104 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/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixBitMatrixParser.cpp75 int32_t column = 0; in ReadCodewords() local
83 if ((row == numRows) && (column == 0) && !corner1Read) { in ReadCodewords()
86 column += 2; in ReadCodewords()
88 } else if ((row == numRows - 2) && (column == 0) && in ReadCodewords()
92 column += 2; in ReadCodewords()
94 } else if ((row == numRows + 4) && (column == 2) && in ReadCodewords()
98 column += 2; in ReadCodewords()
100 } else if ((row == numRows - 2) && (column == 0) && in ReadCodewords()
104 column += 2; in ReadCodewords()
108 if ((row < numRows) && (column >= 0) && in ReadCodewords()
[all …]
/external/llvm/test/Linker/
Dmdlocation.ll9 ; CHECK-NEXT: !1 = !DILocation(line: 3, column: 7, scope: !0)
10 ; CHECK-NEXT: !2 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !1)
11 ; CHECK-NEXT: !3 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !2)
12 ; CHECK-NEXT: !4 = distinct !DILocation(line: 3, column: 7, scope: !0)
13 ; CHECK-NEXT: !5 = distinct !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !4)
15 ; CHECK-NEXT: !7 = !DILocation(line: 3, column: 7, scope: !6)
16 ; CHECK-NEXT: !8 = !DILocation(line: 3, column: 7, scope: !6, inlinedAt: !7)
17 ; CHECK-NEXT: !9 = !DILocation(line: 3, column: 7, scope: !6, inlinedAt: !8)
18 ; CHECK-NEXT: !10 = distinct !DILocation(line: 3, column: 7, scope: !6)
19 ; CHECK-NEXT: !11 = distinct !DILocation(line: 3, column: 7, scope: !6, inlinedAt: !10)
[all …]
/external/llvm/test/Transforms/SampleProfile/
Dbranch.ll178 !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 …]
Dgcc-simple.ll165 !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 …]
Dcov-zero-samples.ll109 !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 …]
Dremarks.ll138 !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/v8/test/mjsunit/
Ddebug-sourceinfo.js105 var column; variable
111 assertEquals(column + 1, location.column);
114 assertEquals(0, location.column);
119 assertEquals(0, location.column);
125 column = location.column;
132 for (column = 0; column < line_length_d; column++) {
136 assertEquals(column, location.column);
144 assertEquals(0, script.locationFromPosition(0).column);
149 assertEquals(1, script.locationFromPosition(1).column);
154 assertEquals(10, script.locationFromPosition(start_a).column);
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/
Dmock_test.py15 client_class.column.List.Expect(request=1, response=2)
17 self.assertEqual(client.column.List(1), 2)
19 client.column.List(3)
23 client_class.column.List.Expect(
28 client.column.List(1)
32 client_class.column.List.Expect(request=1, response=2)
33 client_class.column.List.Expect(request=2, response=1)
35 self.assertEqual(client.column.List(1), 2)
36 self.assertEqual(client.column.List(2), 1)
40 client_class.column.List.Expect(request=1, response=2)
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
DCounterColumnTest.java79 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/
Dwpagui.ui21 <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 …]
Dnetworkconfig.ui16 <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/llvm/test/Assembler/
Ddilocation.ll10 ; CHECK-NEXT: !1 = !DILocation(line: 3, column: 7, scope: !0)
11 !1 = !DILocation(line: 3, column: 7, scope: !0)
12 !2 = !DILocation(scope: !0, column: 7, line: 3)
14 ; CHECK-NEXT: !2 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !1)
15 !3 = !DILocation(scope: !0, inlinedAt: !1, column: 7, line: 3)
16 !4 = !DILocation(column: 7, line: 3, scope: !0, inlinedAt: !1)
20 !6 = !DILocation(scope: !0, column: 0, line: 0)
22 ; CHECK-NEXT: !4 = !DILocation(line: 4294967295, column: 65535, scope: !0)
23 !7 = !DILocation(line: 4294967295, column: 65535, scope: !0)
/external/autotest/frontend/client/src/autotest/common/spreadsheet/
DSpreadsheet.java82 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/llvm/test/DebugInfo/Mips/
Ddsr-fixed-objects.ll123 !27 = !DILocation(line: 4, column: 12, scope: !4)
124 !28 = !DILocation(line: 4, column: 19, scope: !4)
125 !29 = !DILocation(line: 4, column: 26, scope: !4)
126 !30 = !DILocation(line: 4, column: 33, scope: !4)
127 !31 = !DILocation(line: 4, column: 40, scope: !4)
128 !32 = !DILocation(line: 5, column: 3, scope: !4)
129 !33 = !DILocation(line: 5, column: 13, scope: !4)
130 !34 = !DILocation(line: 5, column: 17, scope: !4)
131 !35 = !DILocation(line: 5, column: 21, scope: !4)
132 !36 = !DILocation(line: 5, column: 25, scope: !4)
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
DJSilverBadSyntaxException.java28 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/clang/bindings/python/tests/cindex/
Dtest_location.py10 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/autotest/frontend/client/src/autotest/common/table/
DDataTable.java176 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 …]
/external/llvm/test/Transforms/LoopReroll/
Dreroll_with_dbg.ll104 !16 = distinct !DILexicalBlock(scope: !4, file: !1, line: 2, column: 3)
111 !23 = !DILocation(line: 1, column: 27, scope: !4)
112 !24 = !DILocation(line: 1, column: 47, scope: !4)
113 !25 = !DILocation(line: 1, column: 54, scope: !4)
114 !26 = !DILocation(line: 2, column: 11, scope: !16)
115 !27 = !DILocation(line: 2, column: 20, scope: !28)
116 !28 = distinct !DILexicalBlock(scope: !16, file: !1, line: 2, column: 3)
117 !29 = !DILocation(line: 2, column: 3, scope: !16)
118 !30 = !DILocation(line: 3, column: 12, scope: !31)
119 !31 = distinct !DILexicalBlock(scope: !28, file: !1, line: 2, column: 31)
[all …]

12345678910>>...43