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

12345

/freebsd-current/usr.bin/column/
H A DMakefile2 PROG= column
/freebsd-current/tools/tools/fixwhite/
H A Dfixwhite.c35 static off_t column = 0; variable
53 column = 0;
56 column++;
59 column = (column / 8 + 1) * 8;
81 column = 0;
97 ncolumn = (column / 8 + 1) * 8;
100 column--;
102 while (column < ncolumn)
114 if ((column
[all...]
/freebsd-current/usr.bin/expand/
H A Dexpand.c55 int c, column; local
96 column = 0;
103 column++;
104 } while (column & 07);
110 column++;
111 } while (((column - 1) % tabstops[0]) != (tabstops[0] - 1));
115 if (tabstops[n] > column)
119 column++;
122 while (column < tabstops[n]) {
124 column
[all...]
/freebsd-current/usr.bin/colrm/
H A Dcolrm.c51 u_long column, start, stop; local
71 errx(1, "illegal column -- %s", argv[1]);
76 errx(1, "illegal column -- %s", argv[0]);
87 for (column = 0;;) {
93 if (column)
94 --column;
97 column = 0;
100 column = (column + TAB) & ~(TAB - 1);
104 column
[all...]
/freebsd-current/usr.bin/fortune/tools/
H A DDo_spell6 sort $F $1.sp.ok | uniq -u | column
/freebsd-current/contrib/kyua/store/
H A Ddbtypes.cpp138 /// \param stmt The statement from which to get the column.
139 /// \param column The name of the column holding the value.
143 /// \throw integrity_error If the value in the specified column is invalid.
145 store::column_bool(sqlite::statement& stmt, const char* column) argument
147 const int id = stmt.column_id(column);
149 throw store::integrity_error(F("Boolean value in column %s is not a "
150 "string") % column);
163 /// \param stmt The statement from which to get the column.
164 /// \param column Th
170 column_delta(sqlite::statement& stmt, const char* column) argument
189 column_optional_string(sqlite::statement& stmt, const char* column) argument
212 column_test_result_type(sqlite::statement& stmt, const char* column) argument
244 column_timestamp(sqlite::statement& stmt, const char* column) argument
[all...]
H A Dmetadata.cpp44 /// Fetches an integer column from a statement of the 'metadata' table.
46 /// \param stmt The statement from which to get the column value.
47 /// \param column The name of the column to retrieve.
49 /// \return The value of the column.
54 int64_column(sqlite::statement& stmt, const char* column) argument
58 index = stmt.column_id(column);
60 UNREACHABLE_MSG("Invalid column specification; the SELECT statement "
64 throw store::integrity_error(F("The '%s' column in 'metadata' table "
65 "has an invalid type") % column);
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang-c/
H A DCXSourceLocation.h28 * great detail, with file, line, and column information for the majority of
42 * to map a source location to a particular file, line, and column.
114 * Retrieve the file, line, column, and offset represented by
129 * \param column [out] if non-NULL, will be set to the column to which the given
137 unsigned *column,
141 * Retrieve the file, line and column represented by the given source
177 * \param column [out] if non-NULL, will be set to the column number of the
182 unsigned *line, unsigned *column);
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBSourceManager.cpp38 uint32_t line, uint32_t column,
49 file, line, column, context_before, context_after, current_line_cstr,
55 .DisplaySourceLinesWithLineNumbers(file, line, column,
109 const uint32_t column = 0; local
111 file.ref(), line, column, context_before, context_after,
116 const SBFileSpec &file, uint32_t line, uint32_t column,
119 LLDB_INSTRUMENT_VA(this, file, line, column, context_before, context_after,
126 file.ref(), line, column, context_before, context_after,
37 DisplaySourceLinesWithLineNumbers(const lldb_private::FileSpec &file, uint32_t line, uint32_t column, uint32_t context_before, uint32_t context_after, const char *current_line_cstr, lldb_private::Stream *s) argument
115 DisplaySourceLinesWithLineNumbersAndColumn( const SBFileSpec &file, uint32_t line, uint32_t column, uint32_t context_before, uint32_t context_after, const char *current_line_cstr, SBStream &s) argument
/freebsd-current/contrib/kyua/utils/text/
H A Dtable.cpp45 /// Applies user overrides to the column widths of a table.
47 /// \param table The table from which to calculate the column widths.
48 /// \param user_widths The column widths provided by the user. This vector must
68 "User-provided column widths must be larger than the "
69 "column contents (except for the width_refill column)");
78 /// Locates the refill column, if any.
82 /// be width_refill, which is the column we are looking for.
84 /// \return The index of the refill column with a width_refill width if any, or
85 /// otherwise the index of the last column (whic
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DDeclaration.h22 /// column info and can help track where functions, blocks, inlined functions,
29 /// Construct with file specification, and optional line and column.
39 /// \param[in] column
40 /// The column number that describes where this was declared.
41 /// Set to zero if there is no column number information.
43 uint16_t column = LLDB_INVALID_COLUMN_NUMBER)
44 : m_file(file_spec), m_line(line), m_column(column) {}
55 /// Sets the file specification to be empty, and the line and column to
67 /// column numbers respectively.
122 /// Get accessor for the declaration column numbe
175 SetColumn(uint16_t column) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DSourceLocationSpec.cpp18 std::optional<uint16_t> column,
21 column.value_or(LLDB_INVALID_COLUMN_NUMBER)),
79 uint16_t column = m_declaration.GetColumn(); local
80 if (column == LLDB_INVALID_COLUMN_NUMBER)
82 return column;
17 SourceLocationSpec(FileSpec file_spec, uint32_t line, std::optional<uint16_t> column, bool check_inlines, bool exact_match) argument
H A DHighlighter.cpp44 size_t column = *cursor_pos; local
46 s << line.substr(0, column);
48 options.selected.Apply(s, line.substr(column, 1));
50 s << line.substr(column + 1U);
/freebsd-current/contrib/kyua/utils/sqlite/
H A Dstatement.cpp111 /// Cache for the column names in a statement; lazily initialized.
216 /// Returns the name of a particular column in the result.
218 /// \param index The column to request the name of.
220 /// \return The name of the requested column.
231 /// Returns the type of a particular column in the result.
233 /// \param index The column to request the type of.
235 /// \return The type of the requested column.
243 /// Finds a column by name.
245 /// \param name The name of the column to search for.
247 /// \return The column identifie
373 const int column = column_id(name); local
392 const int column = column_id(name); local
411 const int column = column_id(name); local
430 const int column = column_id(name); local
449 const int column = column_id(name); local
468 const int column = column_id(name); local
[all...]
/freebsd-current/contrib/llvm-project/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),
232 column = 0;
250 SCALAR_COMPARE(lhs.column, rhs.column);
297 /// The column number of the source line, or zero if there is no
298 /// column information.
299 uint16_t column = 0; member in struct:lldb_private::LineTable::Entry
354 const uint16_t column local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DStreamString.cpp53 void StreamString::FillLastLineToColumn(uint32_t column, char fill_char) { argument
63 if (column > line_columns) {
64 m_packet.append(column - line_columns, fill_char);
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DLineEntry.cpp25 column = 0;
49 if (column) {
51 s->Printf("%u", column);
73 if (column)
74 s->Printf(", column = %u", column);
110 if (column)
111 s->Printf(":%u", column);
160 // care about the line, file, or column info.
171 if (a.column <
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } function in namespace:__anon3056
84 Column column(StringRef Str, unsigned Width, const T &Value) { function in namespace:__anon3056
88 // Specify the default column widths.
93 /// Adjust column widths to fit long file paths and function names.
103 /// Prints a horizontal divider long enough to cover the given column
219 OS << column(FileName, FileReportColumns[0], Column::NoTrim);
234 OS << column("-", FileReportColumns[3], Column::RightAlignment);
248 OS << column("-", FileReportColumns[6], Column::RightAlignment);
262 OS << column("-", FileReportColumns[9], Column::RightAlignment);
276 OS << column("
[all...]
/freebsd-current/crypto/heimdal/lib/roken/
H A Drtbl.c91 rtbl_get_column (rtbl_t table, const char *column) argument
95 if(strcmp(table->columns[i]->header, column) == 0)
184 column_compute_width (rtbl_t table, struct column_data *column) argument
189 column->width = 0;
191 column->width = strlen (column->header);
192 for (i = 0; i < column->num_rows; i++)
193 column->width = max (column->width, (int) strlen (column
220 rtbl_set_column_prefix(rtbl_t table, const char *column, const char *prefix) argument
334 rtbl_add_column_entry(rtbl_t table, const char *column, const char *data) argument
345 rtbl_add_column_entryv(rtbl_t table, const char *column, const char *fmt, ...) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp63 int line, int column) {
79 info->column = column;
102 frame->info.column = col;
62 AddFrame(void *ctx, const char *function_name, const char *file, int line, int column) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamString.h45 void FillLastLineToColumn(uint32_t column, char fill_char);
/freebsd-current/contrib/diff/src/
H A Dutil.c330 size_t column = 0;
408 size_t column2 = column;
412 column++;
414 column += tabsize - column % tabsize;
427 if (column != column2)
450 column += c1 == '\t' ? tabsize - column % tabsize : 1;
559 register size_t column = 0;
567 size_t spaces = tab_size - column
326 size_t column = 0; local
552 register size_t column = 0; local
[all...]
H A Dio.c281 size_t column = 0;
289 column -= 0 < column;
294 repetitions = tabsize - column % tabsize;
295 column = (column + repetitions < column
297 : column + repetitions);
301 column = 0;
306 column
277 size_t column = 0; local
347 size_t column = 0; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cpp222 buffer->AppendF("%d", info->column);
236 RenderSourceLocation(buffer, info->file, info->line, info->column,
242 RenderSourceLocation(buffer, info->file, info->line, info->column,
336 int column, bool vs_style,
340 if (column > 0)
341 buffer->AppendF(",%d", column);
349 if (column > 0)
350 buffer->AppendF(":%d", column);
334 RenderSourceLocation(InternalScopedString *buffer, const char *file, int line, int column, bool vs_style, const char *strip_path_prefix) argument
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBDeclarationExtensions.i13 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')

Completed in 183 milliseconds

12345