Searched refs:column (Results 1 - 25 of 360) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMatrixCursor.java31 public String getString(int column) { argument
32 Object columnValue = get(column);
37 public long getLong(int column) { argument
38 Number numberValue = (Number) get(column);
43 public short getShort(int column) { argument
44 Number numberValue = (Number) get(column);
49 public int getInt(int column) { argument
50 Number numberValue = (Number) get(column);
55 public float getFloat(int column) { argument
56 Number numberValue = (Number) get(column);
61 getDouble(int column) argument
67 getBlob(int column) argument
72 isNull(int column) argument
76 get(int column) argument
[all...]
/external/llvm/test/MC/ARM/
H A Dfull_line_comment.s2 # this is a full line comment starting at column 1
3 # this starting at column 2
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSetMetaData.java13 public String getCatalogName(int column) throws java.sql.SQLException { argument
17 public String getColumnClassName(int column) throws java.sql.SQLException { argument
18 column--;
20 if (column < 0 || column >= r.tr.ncolumns) {
24 switch (((TableResultX) r.tr).sql_type[column]) {
51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { argument
55 public String getColumnLabel(int column) throws java.sql.SQLException { argument
56 column--;
59 if (column <
67 getColumnName(int column) argument
85 getColumnType(int column) argument
98 getColumnTypeName(int column) argument
124 getPrecision(int column) argument
128 getScale(int column) argument
132 getSchemaName(int column) argument
136 getTableName(int column) argument
155 isAutoIncrement(int column) argument
159 isCaseSensitive(int column) argument
163 isCurrency(int column) argument
167 isDefinitelyWritable(int column) argument
172 isNullable(int column) argument
176 isReadOnly(int column) argument
180 isSearchable(int column) argument
184 isSigned(int column) argument
188 isWritable(int column) argument
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_linecol.c1 /* Return column in line.
43 *colp = line->column;
H A Ddwarf_getsrc_file.c1 /* Find line information for given file/line/column triple.
43 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, argument
81 file and line/column number. If any of the numbers is zero,
108 /* See whether line and possibly column match. */
111 || (column != 0 && column > line->column)))
124 || (column != 0
125 && (match[inner]->column != line->column
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverBadSyntaxException.java28 private final int column; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
53 this.column = column;
57 int line, int column) {
68 if (column !
48 JSilverBadSyntaxException(String message, String lineContent, String resourceName, int line, int column, Throwable cause) argument
56 makeMessage(String message, String lineContent, String resourceName, int line, int column) argument
[all...]
H A DJSilverAutoEscapingException.java26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { argument
27 super(createMessage(message, templateName, line, column));
37 private static String createMessage(String message, String resourceName, int line, int column) { argument
45 if (column != UNKNOWN_POSITION) {
46 result.append(" column=").append(column);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg36 location(file, line, column) ::= "<file>:<line>:<column>:"
H A Dgnu.stg36 location(file, line, column) ::= "<file>:<line>:"
H A Dvs2005.stg36 location(file, line, column) ::= "<file>(<line>,<column>)"
/external/clang/tools/libclang/
H A DCXSourceLocation.cpp124 unsigned column) {
131 if (line == 0 || column == 0)
138 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
142 File->getName(), line, column);
149 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column)
184 unsigned *column, unsigned *offset) {
189 if (column)
190 *column = 0;
197 unsigned *column, unsigned *offset = nullptr) {
202 if (column)
121 clang_getLocation(CXTranslationUnit TU, CXFile file, unsigned line, unsigned column) argument
183 createNullLocation(CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
196 createNullLocation(CXString *filename, unsigned *line, unsigned *column, unsigned *offset = nullptr) argument
233 clang_getExpansionLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
275 clang_getPresumedLocation(CXSourceLocation location, CXString *filename, unsigned *line, unsigned *column) argument
307 clang_getInstantiationLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
316 clang_getSpellingLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
354 clang_getFileLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
[all...]
/external/bison/examples/calc++/
H A Dposition.hh68 , column (c)
80 column = c;
88 column = 1u;
92 /// (column related) Advance to the COUNT next columns.
95 column = std::max (1u, column + count);
103 /// Current column number.
104 unsigned int column; member in class:yy::position
142 && pos1.column == pos2.column
[all...]
/external/bison/src/
H A Dlocation.c37 add_column_width (int column, char const *buf, size_t bufsize) argument
40 unsigned int remaining_columns = INT_MAX - column;
51 return width <= remaining_columns ? column + width : INT_MAX;
61 int column = cur->column; local
73 column = 1;
78 column = add_column_width (column, p0, p - p0);
79 column = add_column_width (column, NUL
[all...]
H A Dlocation.h38 /* If nonnegative, the (origin-1) column just after the boundary.
40 column count. If this is INT_MAX, the column number has
45 int column; member in struct:__anon377
55 b->column = c;
67 res = a.column - b.column;
75 return (a.column == b.column
123 /* LOC_STR must be formatted as `file:line.column', i
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DMessage.java56 public int column = -1; field in class:Message
75 public void setColumn(int column) { argument
76 this.column = column;
104 if (column != -1) {
105 locationST.add("column", column+1);
/external/javasqlite/src/main/java/SQLite/
H A DTableResult.java48 public String column[]; field in class:TableResult
96 column = new String[0];
108 column = coldata;
109 ncolumns = column.length;
144 sb.append(column[i] == null ? "NULL" : column[i]);
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DSparseFieldMatrix.java42 * column dimension
59 * Create a new SparseFieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
104 public void addToEntry(int row, int column, T increment) argument
107 checkColumnIndex(column);
108 final int key = computeKey(row, column);
139 public T getEntry(int row, int column) throws MatrixIndexException { argument
141 checkColumnIndex(column);
142 return entries.get(computeKey(row, column));
153 public void multiplyEntry(int row, int column, argument
169 setEntry(int row, int column, T value) argument
186 computeKey(int row, int column) argument
[all...]
H A DAbstractFieldMatrix.java59 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
319 public T visit(final int row, final int column, final T value) {
320 return getEntry(selectedRows[row], selectedColumns[column]);
352 /** Initial column index. */
366 public void visit(final int row, final int column, final T value) {
367 destination[row - startRow][column - startColumn] = value;
399 public void setSubMatrix(final T[][] subMatrix, final int row, final int column) argument
421 checkColumnIndex(column);
423 checkColumnIndex(nCols + column
467 getColumnMatrix(final int column) argument
482 setColumnMatrix(final int column, final FieldMatrix<T> matrix) argument
523 getColumnVector(final int column) argument
529 setColumnVector(final int column, final FieldVector<T> vector) argument
578 getColumn(final int column) argument
593 setColumn(final int column, final T[] array) argument
610 getEntry(int row, int column) argument
614 setEntry(int row, int column, T value) argument
618 addToEntry(int row, int column, T increment) argument
622 multiplyEntry(int row, int column, T factor) argument
1034 checkColumnIndex(final int column) argument
[all...]
H A DAbstractRealMatrix.java51 * Create a new RealMatrix with the supplied row and column dimensions.
55 * @throws IllegalArgumentException if row or column dimension is not positive
201 /** Sum of absolute values on one column. */
217 public void visit(final int row, final int column, final double value) {
248 public void visit(final int row, final int column, final double value) {
293 public double visit(final int row, final int column, final double value) {
294 return getEntry(selectedRows[row], selectedColumns[column]);
326 /** Initial column index. */
340 public void visit(final int row, final int column, final double value) {
341 destination[row - startRow][column
373 setSubMatrix(final double[][] subMatrix, final int row, final int column) argument
443 getColumnMatrix(final int column) argument
458 setColumnMatrix(final int column, final RealMatrix matrix) argument
499 getColumnVector(final int column) argument
505 setColumnVector(final int column, final RealVector vector) argument
554 getColumn(final int column) argument
569 setColumn(final int column, final double[] array) argument
586 getEntry(int row, int column) argument
590 setEntry(int row, int column, double value) argument
594 addToEntry(int row, int column, double increment) argument
598 multiplyEntry(int row, int column, double factor) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIndentingWriter.java39 /** {@code >= 0;} current output column (zero-based) */
40 private int column; field in class:IndentingWriter
105 if ((column == width) && (c != '\n')) {
107 column = 0;
114 if (column == 0) {
123 column = indent;
132 column++;
165 column = 0;
/external/smali/util/src/main/java/org/jf/util/
H A DWrappedIndentingWriter.java54 /** &gt;= 0; current output column (zero-based) */
55 private int column; field in class:WrappedIndentingWriter
120 if ((column == width) && (c != '\n')) {
122 column = 0;
129 if (column == 0) {
138 column = indent;
147 column++;
180 column = 0;
/external/clang/bindings/python/tests/cindex/
H A Dtest_location.py10 def assert_location(loc, line, column, offset):
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)
37 # adding a space should affect column on first line only
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column
[all...]
H A Dtest_diagnostics.py11 assert tu.diagnostics[0].location.column == 11
21 assert tu.diagnostics[0].location.column == 7
25 # assert tu.diagnostics[1].location.column == 11
33 assert tu.diagnostics[0].location.column == 26
37 assert tu.diagnostics[0].fixits[0].range.start.column == 26
39 assert tu.diagnostics[0].fixits[0].range.end.column == 30
47 assert tu.diagnostics[0].location.column == 16
52 assert tu.diagnostics[0].ranges[0].start.column == 20
54 assert tu.diagnostics[0].ranges[0].end.column == 27
70 assert d.location.column
[all...]
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java22 public SourcePositionInfo(String file, int line, int column) { argument
25 this.column = column;
31 this.column = that.column;
102 public int column; field in class:SourcePositionInfo
/external/v8/test/mjsunit/
H A Ddebug-script-breakpoints.js37 assertEquals(3, Debug.scriptBreakPoints()[0].column());
52 assertEquals(3, x.column());
55 assertEquals(4, x.column());
58 assertEquals(5, x.column());
78 assertEquals(3, Debug.scriptBreakPoints()[0].column());
93 assertEquals(3, x.column());
96 assertEquals(4, x.column());
99 assertEquals(5, x.column());

Completed in 571 milliseconds

1234567891011>>