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

1234567891011>>

/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DTextFormatParseLocation.java38 * <p>A location is the starting line number and starting column number.
51 * @param column the starting column number
54 static TextFormatParseLocation create(int line, int column) { argument
55 if (line == -1 && column == -1) {
58 if (line < 0 || column < 0) {
60 String.format("line and column values must be >= 0: line %d, column: %d", line, column));
62 return new TextFormatParseLocation(line, column);
66 private final int column; field in class:TextFormatParseLocation
68 TextFormatParseLocation(int line, int column) argument
[all...]
/external/robolectric/v1/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/swiftshader/third_party/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/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DSimpleKey.java33 private int column; field in class:SimpleKey
36 public SimpleKey(int tokenNumber, boolean required, int index, int line, int column, Mark mark) { argument
41 this.column = column;
50 return this.column;
72 + index + " line=" + line + " column=" + column;
/external/elfutils/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/skia/src/sksl/
H A DSkSLPosition.h16 * Represents a position in the source code. Both line and column are one-based. Column is currently
24 Position(int line, int column) argument
26 , fColumn(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;
196 unsigned *column, unsigned *offset = nullptr) {
201 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
195 createNullLocation(CXString *filename, unsigned *line, unsigned *column, unsigned *offset = nullptr) argument
231 clang_getExpansionLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
272 clang_getPresumedLocation(CXSourceLocation location, CXString *filename, unsigned *line, unsigned *column) argument
303 clang_getInstantiationLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
312 clang_getSpellingLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
349 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:__anon597
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...]
/external/autotest/frontend/client/src/autotest/common/ui/
H A DRightClickTable.java19 int column; field in class:RightClickTable.RowColumn
21 public RowColumn(int row, int column) { argument
23 this.column = column;
52 return new HTMLTable.Cell(position.row, position.column) {
64 int column = DOM.getChildIndex(tr, td);
65 return new RowColumn(row, column);
/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...]

Completed in 3937 milliseconds

1234567891011>>