Home
last modified time | relevance | path

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

12345678910>>...23

/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXSourceLocation.cpp118 unsigned column) { in clang_getLocation() argument
125 if (line == 0 || column == 0) in clang_getLocation()
132 SourceLocation SLoc = CXXUnit->getLocation(File, line, column); in clang_getLocation()
136 File->getName().str().c_str(), line, column); in clang_getLocation()
144 line, column) in clang_getLocation()
177 unsigned *column, unsigned *offset) { in createNullLocation() argument
182 if (column) in createNullLocation()
183 *column = 0; in createNullLocation()
189 unsigned *column, unsigned *offset = nullptr) { in createNullLocation() argument
194 if (column) in createNullLocation()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/
H A Dllvm-original-di-preservation.py70 for column in header_di_loc:
71 table_di_loc += " <th>{0}</th>\n".format(column.strip())
96 for column in row:
98 if (column == " <tr>\n" or column == " </tr>\n"):
99 table_di_loc += column
101 table_di_loc += " <td>{0}</td>\n".format(column.strip())
120 for column in header_di_loc_sum:
121 table_di_loc_sum += " <th>{0}</th>\n".format(column.strip())
131 for column in row:
132 if (column == " <tr>\n" or column == " </tr>\n"):
[all …]
/openbsd-src/usr.bin/expand/
H A Dexpand.c51 int c, column; in main() local
83 column = 0; in main()
90 column++; in main()
91 } while (column & 07); in main()
97 column++; in main()
98 } while (((column - 1) % in main()
103 if (tabstops[n] > column) in main()
107 column++; in main()
110 while (column < tabstops[n]) { in main()
112 column++; in main()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dlex.c242 static ffewhereColumnNumber column; in ffelex_backslash_() local
258 column = col + 1; in ffelex_backslash_()
328 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
347 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
356 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
367 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
395 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
409 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
443 ffelex_bad_here_ (0, line, column); in ffelex_backslash_()
1382 ffelex_image_char_ (int c, ffewhereColumnNumber column) in ffelex_image_char_() argument
[all …]
/openbsd-src/usr.bin/colrm/
H A Dcolrm.c55 u_long column, newcol, start, stop; in main() local
94 column = 0; in main()
110 if (start == 0 || column < start || in main()
112 column > stop + (width > 1))) { in main()
119 column -= width; in main()
122 newcol = (column + TAB) & ~(TAB - 1); in main()
125 column = newcol; in main()
131 while (column < newcol) in main()
132 if (++column < start || in main()
134 column > stop)) in main()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-cov/
H A DCoverageReport.cpp81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } in column() function
84 Column column(StringRef Str, unsigned Width, const T &Value) { in column() function
184 OS << column(FileName, FileReportColumns[0], Column::NoTrim); in render()
199 OS << column("-", FileReportColumns[3], Column::RightAlignment); in render()
213 OS << column("-", FileReportColumns[6], Column::RightAlignment); in render()
227 OS << column("-", FileReportColumns[9], Column::RightAlignment); in render()
241 OS << column("-", FileReportColumns[12], Column::RightAlignment); in render()
256 OS << column("-", FileReportColumns[15], Column::RightAlignment); in render()
269 OS << column(DC.demangle(Function.Name), FunctionReportColumns[0], in render()
327 OS << column("Name", FunctionReportColumns[0]) in renderFunctionReports()
[all …]
/openbsd-src/regress/usr.bin/mandoc/mdoc/Bl/
H A Dcolumn.out_lint1 mandoc: column.in:72:2: WARNING: skipping empty macro: It
2 mandoc: column.in:73:2: WARNING: wrong number of cells: 2 columns, 1 cells
3 mandoc: column.in:75:2: WARNING: skipping empty macro: It
4 mandoc: column.in:77:2: WARNING: wrong number of cells: 2 columns, 4 cells
5 mandoc: column.in:78:2: WARNING: wrong number of cells: 2 columns, 5 cells
6 mandoc: column.in:79:2: WARNING: skipping empty macro: It
7 mandoc: column.in:108:18: WARNING: skipping -width argument: Bl -column
H A DbareTa.out_lint1 mandoc: bareTa.in:10:2: ERROR: skipping column outside column list: Ta
2 mandoc: bareTa.in:14:2: ERROR: skipping column outside column list: Ta
3 mandoc: bareTa.in:19:5: ERROR: skipping column outside column list: Ta
/openbsd-src/games/battlestar/
H A Dfly.c47 static int row, column; variable
87 column = rnd(COLS - 2) + 1; in visual()
151 if (row == MIDR && column - MIDC < 2 && MIDC - column < 2) { in visual()
253 oldc = column; in moveenemy()
257 if (column + dc < COLS - 1 && column + dc > 0) in moveenemy()
258 column += dc; in moveenemy()
264 d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) * (column - MIDC)); in moveenemy()
267 column += (rnd(9) - 4) % (4 - abs(column - MIDC)); in moveenemy()
273 mvaddstr(row, column - 1, "/-\\"); in moveenemy()
/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_location.py20 def assert_location(self, loc, line, column, offset): argument
22 self.assertEqual(loc.column, column)
33 self.assert_location(one.location,line=1,column=5,offset=4)
34 self.assert_location(two.location,line=2,column=5,offset=13)
44 self.assert_location(one.location,line=2,column=5,offset=5)
45 self.assert_location(two.location,line=3,column=5,offset=14)
52 self.assert_location(one.location,line=1,column=6,offset=5)
53 self.assert_location(two.location,line=2,column=5,offset=14)
87 self.assert_location(one.extent.start,line=1,column=1,offset=0)
88 self.assert_location(one.extent.end,line=1,column=8,offset=7)
[all …]
H A Dtest_diagnostics.py21 self.assertEqual(tu.diagnostics[0].location.column, 11)
31 self.assertEqual(tu.diagnostics[0].location.column, 7)
43 self.assertEqual(tu.diagnostics[0].location.column, 26)
48 self.assertEqual(tu.diagnostics[0].fixits[0].range.start.column, 26)
50 self.assertEqual(tu.diagnostics[0].fixits[0].range.end.column, 30)
58 self.assertEqual(tu.diagnostics[0].location.column, 16)
64 self.assertEqual(tu.diagnostics[0].ranges[0].start.column, 20)
66 self.assertEqual(tu.diagnostics[0].ranges[0].end.column, 23)
78 self.assertEqual(d.location.column, 11)
103 self.assertEqual(children[0].location.column, 6)
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dcpperror.c73 _cpp_begin_message (pfile, code, line, column) in _cpp_begin_message() argument
76 unsigned int line, column;
111 print_location (pfile, line, column);
131 unsigned int line, column; in cpp_error() local
146 column = 0; in cpp_error()
151 column = pfile->cur_token[-1].col; in cpp_error()
155 line = column = 0; in cpp_error()
157 if (_cpp_begin_message (pfile, level, line, column)) in cpp_error()
166 unsigned int line, unsigned int column, in cpp_error_with_line() argument
173 VA_FIXEDARG (ap, unsigned int, column); in cpp_error_with_line()
[all …]
H A Dmkdeps.c231 unsigned int size, i, column; local
233 column = 0;
240 column += size;
241 if (colmax && column > colmax)
244 column = 1 + size;
249 column++;
256 column += 2;
261 column += size;
262 if (colmax && column > colmax)
265 column = 1 + size;
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/
H A Ddepend.c36 static int column = 0; variable
151 if (column in wrap_output()
155 < column + len)) in wrap_output()
158 column = 0; in wrap_output()
166 ++column; in wrap_output()
170 column += len; in wrap_output()
175 ++column; in wrap_output()
197 column = 0; in print_dependencies()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A Ddepend.c36 static int column = 0; variable
151 if (column in wrap_output()
155 < column + len)) in wrap_output()
158 column = 0; in wrap_output()
166 ++column; in wrap_output()
170 column += len; in wrap_output()
175 ++column; in wrap_output()
197 column = 0; in print_dependencies()
/openbsd-src/regress/usr.bin/mandoc/mdoc/Tg/
H A Dcolumn.out_tag1 NAME column.mandoc_ascii 3
2 DESCRIPTION column.mandoc_ascii 6
3 list column.mandoc_ascii 8
4 row1 column.mandoc_ascii 9
5 row2 column.mandoc_ascii 10
H A DMakefile3 REGRESS_TARGETS = column implicit list warn
4 TAG_TARGETS = column implicit list warn
6 HTML_TARGETS = column implicit list warn
8 SKIP_TMAN = column
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DLineEntry.cpp27 original_file(_file), line(_line), column(_column), in LineEntry()
38 column = 0; in Clear()
62 if (column) { in DumpStopContext()
64 s->Printf("%u", column); in DumpStopContext()
86 if (column) in Dump()
87 s->Printf(", column = %u", column); in Dump()
123 if (column) in GetDescription()
124 s->Printf(":%u", column); in GetDescription()
184 if (a.column < b.column) in Compare()
186 if (a.column > b.column) in Compare()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DLineTable.h71 void InsertLineEntry(lldb::addr_t file_addr, uint32_t line, uint16_t column,
82 uint32_t line, uint16_t column,
224 is_terminal_entry(_is_terminal_entry), column(_column), in Entry()
232 column = 0; in Clear()
250 SCALAR_COMPARE(lhs.column, rhs.column); in Compare()
299 uint16_t column = 0; member
354 const uint16_t column = in FindLineEntryIndexByFileIndexImpl() local
372 if (column == LLDB_INVALID_COLUMN_NUMBER) { in FindLineEntryIndexByFileIndexImpl()
387 m_entries[idx].column == column) { in FindLineEntryIndexByFileIndexImpl()
396 if (m_entries[idx].column && in FindLineEntryIndexByFileIndexImpl()
[all …]
/openbsd-src/libexec/tradcpp/
H A Dplace.c166 p->column = 0; in place_setnowhere()
175 p->column = 1; in place_setbuiltin()
179 place_setcommandline(struct place *p, unsigned line, unsigned column) in place_setcommandline() argument
184 p->column = column; in place_setcommandline()
193 p->column = 1; in place_setfilestart()
201 newcol = p->column + cols; in place_addcolumns()
202 if (newcol < p->column) { in place_addcolumns()
207 p->column = newcol; in place_addcolumns()
255 if (a->line != b->line || a->column != b->column) { in place_eq()
274 place_getname(from), from->line, from->column); in place_printfrom()
[all …]
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBSourceManager.cpp39 uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbers() argument
50 file, line, column, context_before, context_after, current_line_cstr, in DisplaySourceLinesWithLineNumbers()
56 .DisplaySourceLinesWithLineNumbers(file, line, column, in DisplaySourceLinesWithLineNumbers()
110 const uint32_t column = 0; in DisplaySourceLinesWithLineNumbers() local
112 file.ref(), line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbers()
117 const SBFileSpec &file, uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbersAndColumn() argument
120 LLDB_INSTRUMENT_VA(this, file, line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbersAndColumn()
127 file.ref(), line, column, context_before, context_after, in DisplaySourceLinesWithLineNumbersAndColumn()
/openbsd-src/usr.bin/less/
H A Dline.c36 static int column; /* Display columns needed to show linebuf */ variable
127 column = 0; in prewind()
169 column++; in plinenum()
188 column += n; in plinenum()
195 while (column < lmargin) { in plinenum()
198 column++; in plinenum()
220 if (shift > column - lmargin) in pshift()
221 shift = column - lmargin; in pshift()
308 column -= shifted; in pshift()
318 pshift(column); in pshift_all()
[all …]
/openbsd-src/regress/usr.bin/mandoc/tbl/layout/
H A Demptycol.out_ascii7 missing final column:
14 empty final column:
21 final column with zero-width content:
28 empty middle column:
35 span crossing empty middle column:
/openbsd-src/share/snmp/
H A DSNMPv2-TC.txt75 same column on the next line.
185 value of the SYNTAX clause for the status column of a
188 The status column has six defined values:
226 the managed device (the status column has value `active');
229 so (the status column has value `notInService'); or, it is
232 information (the state column has value `notReady').
242 status column to specify whether the status column must
244 column of the same conceptual row to be modified. If
250 value, the column in question may be changed if the
256 RowStatus column must also exist.
[all …]
/openbsd-src/gnu/gcc/libcpp/
H A Dmkdeps.c291 unsigned int size, i, column; in deps_write() local
293 column = 0; in deps_write()
300 column += size; in deps_write()
301 if (colmax && column > colmax) in deps_write()
304 column = 1 + size; in deps_write()
309 column++; in deps_write()
316 column += 2; in deps_write()
321 column += size; in deps_write()
322 if (colmax && column > colmax) in deps_write()
325 column = 1 + size; in deps_write()
[all …]

12345678910>>...23