Home
last modified time | relevance | path

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

12345678910>>...62

/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dllvm-original-di-preservation.py64 for column in header_di_loc:
65 table_di_loc += " <th>{0}</th>\n".format(column.strip())
90 for column in row:
92 if (column == " <tr>\n" or column == " </tr>\n"):
93 table_di_loc += column
95 table_di_loc += " <td>{0}</td>\n".format(column.strip())
114 for column in header_di_loc_sum:
115 table_di_loc_sum += " <th>{0}</th>\n".format(column.strip())
125 for column in row:
126 if (column == " <tr>\n" or column == " </tr>\n"):
[all …]
/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/distrib/utils/more/
H A Dline.c57 static int column; /* Printable length, accounting for variable
105 column = 0; in prewind()
114 if (column + addon + (ln_state ? ue_width : 0) > sc_width) \
117 column += addon
172 column -= 2;
185 column--;
186 if (column + bo_width + be_width + 1 >= sc_width)
201 column += bo_width-1;
205 column += bo_width;
215 column--;
[all …]
H A Doutput.c62 int column; in put_line() local
76 column = 0; in put_line()
83 column += ul_width +1; in put_line()
87 column += ue_width; in put_line()
91 column += bo_width +1; in put_line()
95 column += be_width; in put_line()
101 column++; in put_line()
102 } while ((column % tabstop) != 0); in put_line()
106 column--; in put_line()
118 column += 2; in put_line()
[all …]
/netbsd-src/usr.bin/expand/
H A Dexpand.c64 size_t n, column; in main() local
95 column = 0; in main()
102 column++; in main()
103 } while (column & 07); in main()
109 column++; in main()
110 } while (((column - 1) % tabstops[0]) in main()
115 if (tabstops[n] > column) in main()
119 column++; in main()
122 while (column < tabstops[n]) { in main()
124 column++; in main()
[all …]
/netbsd-src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
H A 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 …]
H A 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 …]
H A Dscanresults.ui30 <column>
34 </column>
35 <column>
39 </column>
40 <column>
44 </column>
45 <column>
49 </column>
50 <column>
54 </column>
/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/bsd/kyua-cli/dist/store/
H A Ddbtypes.cpp108 store::column_bool(sqlite::statement& stmt, const char* column) in column_bool() argument
110 const int id = stmt.column_id(column); in column_bool()
113 "string") % column); in column_bool()
133 store::column_delta(sqlite::statement& stmt, const char* column) in column_delta() argument
135 const int id = stmt.column_id(column); in column_delta()
138 "integer") % column); in column_delta()
152 store::column_optional_string(sqlite::statement& stmt, const char* column) in column_optional_string() argument
154 const int id = stmt.column_id(column); in column_optional_string()
161 throw integrity_error(F("Invalid string type in column %s") % column); in column_optional_string()
175 store::column_timestamp(sqlite::statement& stmt, const char* column) in column_timestamp() argument
[all …]
/netbsd-src/external/bsd/kyua-cli/dist/utils/text/
H A Dtable.cpp172 const text::table_row::size_type column, in refill_cell() argument
175 const std::vector< std::string > rows = text::refill(row[column], in refill_cell()
176 widths[column]); in refill_cell()
184 if (j == column) in refill_cell()
212 for (text::table_row::size_type column = 0; column < row.size(); ++column) { in format_row() local
213 if (widths[column] > row[column].length()) in format_row()
214 textual_rows[0][column] = pad_cell(row[column], widths[column], in format_row()
215 column == row.size() - 1); in format_row()
217 refill_cell(row, widths, column, textual_rows); in format_row()
262 text::table::column_width(const widths_vector::size_type column) const in column_width()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dmkdeps.cc394 unsigned column = 0; in make_write() local
400 column = make_write_vec (d->targets, fp, 0, colmax, d->quote_lwm); in make_write()
402 column = make_write_name (d->cmi_name, fp, column, colmax); in make_write()
404 column++; in make_write()
405 make_write_vec (d->deps, fp, column, colmax); in make_write()
417 column = make_write_vec (d->targets, fp, 0, colmax, d->quote_lwm); in make_write()
419 column = make_write_name (d->cmi_name, fp, column, colmax); in make_write()
421 column++; in make_write()
422 column = make_write_vec (d->modules, fp, column, colmax, 0, ".c++m"); in make_write()
431 column = make_write_name (d->module_name, fp, 0, colmax, in make_write()
[all …]
H A Dlocation-example.txt25 per-line&column location_t values (written vertically under the
36 column and range bits: 12
37 column bits: 7
49 column and range bits: 0
50 column bits: 0
59 column and range bits: 0
60 column bits: 0
69 column and range bits: 12
70 column bits: 7
80 column and range bits: 12
[all …]
/netbsd-src/usr.bin/colrm/
H A Dcolrm.c63 u_long column, start, stop; in main() local
97 for (column = 0;;) { in main()
103 if (column) in main()
104 --column; in main()
107 column = 0; in main()
110 column = (column + TAB) & ~(TAB - 1); in main()
113 ++column; in main()
117 if ((!start || column < start || (stop && column > stop)) && in main()
/netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dstatement.cpp371 const int column = column_id(name); in safe_column_blob() local
372 if (column_type(column) != sqlite::type_blob) in safe_column_blob()
374 return column_blob(column); in safe_column_blob()
389 const int column = column_id(name); in safe_column_double() local
390 if (column_type(column) != sqlite::type_float) in safe_column_double()
392 return column_double(column); in safe_column_double()
407 const int column = column_id(name); in safe_column_int() local
408 if (column_type(column) != sqlite::type_integer) in safe_column_int()
410 return column_int(column); in safe_column_int()
425 const int column = column_id(name); in safe_column_int64() local
[all …]
/netbsd-src/games/battlestar/
H A Dfly.c49 static int row, column; variable
90 column = rnd(COLS - 2) + 1; in visual()
154 if (row == MIDR && column < MIDC + 2 && in visual()
155 column > MIDC - 2) { in visual()
257 oldc = column; in moveenemy()
261 if (column + dc < COLS - 1 && column + dc > 0) in moveenemy()
262 column += dc; in moveenemy()
268 d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) * in moveenemy()
269 (column - MIDC)); in moveenemy()
272 column += (rnd(9) - 4) % (4 - abs(column - MIDC)); in moveenemy()
[all …]
/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/gpl2/groff/dist/src/roff/troff/
H A Dcolumn.cpp45 class column : public output_file { class
61 column();
62 ~column();
73 column *the_column = 0;
90 friend class column;
282 column::column() in column() function in column
287 column::~column() in ~column()
295 void column::start() in start()
305 void column::begin_page(int pageno, vunits page_length) in begin_page()
318 void column::flush() in flush()
[all …]
/netbsd-src/sys/arch/epoc32/dev/
H A Depockbd.c188 int column, row; in epockbd_cngetc() local
200 for (column = 0; column < sc->sc_kbd_ncolumn; column++) { in epockbd_cngetc()
204 cmd |= (EPOCKBD_COLUMN0 + column); in epockbd_cngetc()
208 if (sc->sc_state[column] != key) { in epockbd_cngetc()
209 row = sc->sc_state[column] ^ key; in epockbd_cngetc()
210 sc->sc_state[column] = key; in epockbd_cngetc()
214 column == sc->sc_kbd_ncolumn - 1)) in epockbd_cngetc()
223 *data = EPOC2WS_KBD_DATA(row, column); in epockbd_cngetc()
225 pc = column; in epockbd_cngetc()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dlocation-example.txt25 per-line&column location_t values (written vertically under the
36 column and range bits: 12
37 column bits: 7
49 column and range bits: 0
50 column bits: 0
59 column and range bits: 0
60 column bits: 0
69 column and range bits: 12
70 column bits: 7
80 column and range bits: 12
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Ddepend.c37 static int column = 0; variable
152 if (column in wrap_output()
156 < column + len)) in wrap_output()
159 column = 0; in wrap_output()
167 ++column; in wrap_output()
171 column += len; in wrap_output()
176 ++column; in wrap_output()
198 column = 0; in print_dependencies()
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Ddepend.c37 static int column = 0; variable
152 if (column in wrap_output()
156 < column + len)) in wrap_output()
159 column = 0; in wrap_output()
167 ++column; in wrap_output()
171 column += len; in wrap_output()
176 ++column; in wrap_output()
198 column = 0; in print_dependencies()
/netbsd-src/external/bsd/tradcpp/dist/
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 …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgcc-rich-location.cc84 if (line.length () < (size_t)exploc.column) in blank_line_before_p()
87 for (int column = 1; column < exploc.column; ++column) in blank_line_before_p() local
88 if (!ISSPACE (line[column - 1])) in blank_line_before_p()
175 for (int column = 1; column < indent_column; ++column) in add_fixit_insert_formatted() local
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgcc-rich-location.c84 if (line.length () < (size_t)exploc.column) in blank_line_before_p()
87 for (int column = 1; column < exploc.column; ++column) in blank_line_before_p() local
88 if (!ISSPACE (line[column - 1])) in blank_line_before_p()
175 for (int column = 1; column < indent_column; ++column) in add_fixit_insert_formatted() local

12345678910>>...62