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

1234567891011>>

/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/bison/src/
H A Dlocation.c38 loc.start.line, loc.start.column);
43 loc.end.line, loc.end.column - 1);
45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1);
46 else if (loc.start.column < loc.end.column - 1)
47 fprintf (out, "-%d", loc.end.column - 1);
H A Dlocation.h36 /* The (origin-1) column just after the boundary. This is neither a
37 byte count, nor a character count; it is a column count.
38 If this is INT_MAX, the column number has overflowed. */
39 int column; member in struct:__anon331
47 return (a.column == b.column
/external/elfutils/libdw/
H A Ddwarf_linecol.c1 /* Return column in line.
64 *colp = line->column;
H A Ddwarf_getsrc_file.c1 /* Find line information for given file/line/column triple.
63 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, argument
94 file and line/column number. If any of the numbers is zero,
121 /* See whether line and possibly column match. */
124 || (column != 0 && column > line->column)))
137 || (column != 0
138 && (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.cpp122 unsigned column) {
130 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
134 << "\", " << line << ", " << column << ") = invalid\n"; local
140 << "\", " << line << ", " << column << ") = "
171 unsigned *column, unsigned *offset) {
176 if (column)
177 *column = 0;
184 unsigned *column, unsigned *offset = 0) {
189 if (column)
190 *column
119 clang_getLocation(CXTranslationUnit tu, CXFile file, unsigned line, unsigned column) argument
170 createNullLocation(CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
183 createNullLocation(CXString *filename, unsigned *line, unsigned *column, unsigned *offset = 0) argument
198 clang_getExpansionLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
240 clang_getPresumedLocation(CXSourceLocation location, CXString *filename, unsigned *line, unsigned *column) argument
270 clang_getInstantiationLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
279 clang_getSpellingLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMSyntaxHighlighter.js55 var column = 0;
57 var newColumn = this._tokenizer.nextToken(column);
60 if (column > plainTextStart) {
61 var plainText = line.substring(plainTextStart, column);
64 var token = line.substring(column, newColumn);
68 column = newColumn;
69 } while (column < line.length)
/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/webkit/Source/WebCore/html/
H A DHTMLDataGridColElement.cpp74 m_dataGrid->columns()->add(column()); // FIXME: Deal with ordering issues (complicated, since columns can be made outside the DOM).
83 if (!grid && column()) {
84 dataGrid()->columns()->remove(column());
157 if (!column())
161 column()->setLabel(label());
163 column()->setType(type());
165 column()->setPrimary(primary());
167 column()->setSortable(sortable());
169 column()->setSortDirection(sortDirection());
171 column()
[all...]
H A DDataGridColumnList.cpp70 DataGridColumn* DataGridColumnList::add(DataGridColumn* column) argument
72 if (column->primary())
73 m_primaryColumn = column;
74 m_columns.append(column);
75 column->setColumnList(this);
77 return column;
/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/dexlib/src/main/java/org/jf/dexlib/Util/
H A DIndentingWriter.java47 /** &gt;= 0; current output column (zero-based) */
48 private int column; field in class:IndentingWriter
113 if ((column == width) && (c != '\n')) {
115 column = 0;
122 if (column == 0) {
131 column = indent;
140 column++;
173 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/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGrid.cpp128 AccessibilityTableColumn* column = static_cast<AccessibilityTableColumn*>(axCache->getOrCreate(ColumnRole)); local
129 column->setColumnIndex((int)i);
130 column->setParentTable(this);
131 m_columns.append(column);
132 if (!column->accessibilityIsIgnored())
133 m_children.append(column);
141 AccessibilityTableCell* AccessibilityARIAGrid::cellForColumnAndRow(unsigned column, unsigned row) argument
148 if (column >= columnCount() || row >= rowCount())
152 int intColumn = (int)column;
/external/webkit/Source/WebCore/rendering/
H A DRenderDataGrid.cpp75 void RenderDataGrid::recalcStyleForColumn(DataGridColumn* column) argument
77 if (!column->columnStyle())
78 column->setColumnStyle(document()->styleSelector()->pseudoStyleForDataGridColumn(column, style()));
79 if (!column->headerStyle())
80 column->setHeaderStyle(document()->styleSelector()->pseudoStyleForDataGridColumnHeader(column, style()));
83 RenderStyle* RenderDataGrid::columnStyle(DataGridColumn* column) argument
85 if (!column->columnStyle())
86 recalcStyleForColumn(column);
90 headerStyle(DataGridColumn* column) argument
158 DataGridColumn* column = columns->item(i); local
[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/chromium/chrome/browser/resources/options/
H A Dcontent_settings.css29 #exception-column-headers {
35 #exception-column-headers > div {
39 #exception-pattern-column {
43 #exception-behavior-column {

Completed in 449 milliseconds

1234567891011>>