Home
last modified time | relevance | path

Searched full:column (Results 1 – 25 of 1484) sorted by relevance

12345678910>>...60

/freebsd/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) in column_bool() argument
147 const int id = stmt.column_id(column); in column_bool()
149 throw store::integrity_error(F("Boolean value in column %s is not a " in column_bool()
150 "string") % column); in column_bool()
163 /// \param stmt The statement from which to get the column.
164 /// \param column The name of the column holding the value.
168 /// \throw integrity_error If the value in the specified column is invalid.
[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) in int64_column() argument
58 index = stmt.column_id(column); in int64_column()
60 UNREACHABLE_MSG("Invalid column specification; the SELECT statement " in int64_column()
64 throw store::integrity_error(F("The '%s' column in 'metadata' table " in int64_column()
65 "has an invalid type") % column); in int64_column()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp27 struct Column { struct
37 Column(StringRef Str, unsigned Width) in Column() argument
40 Column &set(TrimKind Value) { in set() argument
45 Column &set(AlignmentKind Value) { in set() argument
76 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) { in operator <<()
81 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
85 return Column(Str, Width).set(Value); in column()
88 // Specify the default column widths.
93 /// Adjust column widths to fit long file paths and function names.
[all …]
/freebsd/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 " in override_column_widths()
69 "column contents (except for the width_refill column)"); in override_column_widths()
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 (which is the default refill column).
100 /// On output, a column of the widths vector is truncated to a shorter length
[all …]
/freebsd/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 identifier.
[all …]
/freebsd/usr.bin/pr/
H A Dpr.144 .Op Fl Ar column
111 When multiple column output is specified,
115 Input lines that do not fit into a text column are truncated.
116 Lines are not truncated under single column output.
118 In the following option descriptions, column, lines, offset, page, and
125 .It Fl Ar column
129 down each column in the order in which the text
147 .Fl column
149 (e.g., when column is 2, the first input line heads column
150 1, the second heads column 2, the third is the second line
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Drtbl.391 where you have a fixed number of columns, but don't know the column
113 is the header to print at the top of the column, and
115 are flags specific to this column. Currently the only defined flag is
117 aligning column entries to the right. Columns are printed in the order
120 There's also a way to add columns by column name with
125 To add data to a column you use
129 is the same as when the column was added (adding data to a
130 non-existent column is undefined), and
144 Each column can have a separate prefix and suffix, set with
147 allows setting the prefix only by column name. In addition to this,
[all …]
H A Drtbl.c91 rtbl_get_column (rtbl_t table, const char *column) in rtbl_get_column() argument
95 if(strcmp(table->columns[i]->header, column) == 0) in rtbl_get_column()
184 column_compute_width (rtbl_t table, struct column_data *column) in column_compute_width() argument
189 column->width = 0; in column_compute_width()
191 column->width = strlen (column->header); in column_compute_width()
192 for (i = 0; i < column->num_rows; i++) in column_compute_width()
193 column->width = max (column->width, (int) strlen (column->rows[i].data)); in column_compute_width()
220 rtbl_set_column_prefix (rtbl_t table, const char *column, in rtbl_set_column_prefix() argument
223 struct column_data *c = rtbl_get_column (table, column); in rtbl_set_column_prefix()
334 rtbl_add_column_entry (rtbl_t table, const char *column, const char *data) in rtbl_add_column_entry() argument
[all …]
/freebsd/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) {} in m_file()
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 number.
[all …]
H A DSourceLocationSpec.h24 /// a FileSpec with line and column information. The column line is optional.
31 /// Takes a \a file_spec with a \a line number and a \a column number. If
32 /// \a column is null or not provided, it is set to std::nullopt.
40 /// \param[in] column
41 /// The column number in the line of the source file.
50 std::optional<uint16_t> column = std::nullopt,
129 /// If \a full is true, then the file_spec, the line and column must match.
132 /// no column information to match a SourceLocationSpec objects that have
133 /// column information with matching file_spec and line component.
142 /// If true, then the file_spec, the line and column must match for a
[all …]
/freebsd/tools/tools/fixwhite/
H A Dfixwhite.c35 static off_t column = 0; variable
53 column = 0; in savebyte()
56 column++; in savebyte()
59 column = (column / 8 + 1) * 8; in savebyte()
81 column = 0; in savewhite()
97 ncolumn = (column / 8 + 1) * 8; in savewhite()
100 column--; in savewhite()
102 while (column < ncolumn) in savewhite()
114 if ((column % 8) == 0) { in printwhite()
115 for (i = 0; i < column; i++) in printwhite()
[all …]
/freebsd/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
157 * File: dummy.c Line: 124 Column: 12
161 * File: somefile.c Line: 3 Column: 12
177 * \param column [out] if non-NULL, will be set to the column number of the
182 unsigned *line, unsigned *column);
[all …]
/freebsd/usr.bin/colrm/
H A Dcolrm.141 A column is defined as a single character in a line.
47 column is specified, columns numbered less than the
49 column will be written.
56 column
59 column will be written.
60 Column numbering starts with one, not zero.
62 Tab characters increment the column count to the next multiple of eight.
63 Backspace characters decrement the column count by one.
83 Specifying a start column bigger than the number of columns in the file is
90 Using 1 as start column will show nothing:
[all …]
H A Dcolrm.c53 u_long column, start, stop; in main() local
77 errx(EXIT_FAILURE, "illegal column -- %s", argv[1]); in main()
82 errx(EXIT_FAILURE, "illegal column -- %s", argv[0]); in main()
93 for (column = 0;;) { in main()
99 if (column) in main()
100 --column; in main()
103 column = 0; in main()
106 column = (column + TAB) & ~(TAB - 1); in main()
110 column += width; in main()
114 if ((!start || column < start || (stop && column > stop)) && in main()
/freebsd/lib/libc/locale/
H A Dwcwidth.330 .Nd "number of column positions of a wide-character code"
40 function determines the number of column positions required to
52 otherwise it returns the number of column positions the
56 breaks lines that are more than 20 column positions wide,
62 int column, w;
64 column = 0;
67 if (w > 0 && column + w >= 20) {
69 column = 0;
73 column = 0;
75 column += w;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.cpp109 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth; in formatAfterToken()
115 // bin-packed. Add a severe penalty to this so that column layouts are in formatAfterToken()
122 unsigned Column = 0; in formatAfterToken() local
131 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken()
132 ++Column; in formatAfterToken()
137 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { in formatAfterToken()
138 Column = 0; in formatAfterToken()
151 // Formatting with 1 Column isn't really a column layout, so we don't need the in formatFromToken()
181 // Limit column layout for JavaScript array initializers to 20 or more items in precomputeFormattingInfos()
187 // Column format doesn't really make sense if we don't align after brackets. in precomputeFormattingInfos()
[all …]
/freebsd/contrib/openbsm/man/
H A Daudit.log.579 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
101 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
125 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
147 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
167 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
184 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
202 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
216 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
238 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
251 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL"
[all …]
/freebsd/contrib/bsnmp/snmp_target/
H A Dsnmp_target.397 This column always has either of two values. Entries created via
99 configuration file always have this column set to readOnly (5) and
101 Applications always have this column set to volatile(2) and such entries are
102 lost when the module is restarted. A SET operation on this column is not
105 This column is used to create new target address entries or delete existing ones
139 this column always has either of two values. Entries created via
141 configuration file always have this column set to readOnly (5), while entries
142 created by Command Generator Applications always have this column set to
143 volatile(2). A SET operation on this column is not allowed.
145 This column is used to create new target address parameters entries or delete
[all …]
/freebsd/usr.bin/expand/
H A Dexpand.c55 int c, column; in main() local
96 column = 0; in main()
103 column++; in main()
104 } while (column & 07); in main()
110 column++; in main()
111 } while (((column - 1) % tabstops[0]) != (tabstops[0] - 1)); 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 …]
/freebsd/lib/libpmc/pmu-events/arch/s390/cf_z13/
H A Dextended.json143 "BriefDescription": "L1D Off-Drawer Same-Column L4 Sourced Writes",
144 …e directory where the returned cache line was sourced from an Off-Drawer Same-Column Level-4 cache"
149 "BriefDescription": "L1D Off-Drawer Same-Column L3 Sourced Writes with Intervention",
150 …ectory where the returned cache line was sourced from an Off-Drawer Same-Column Level-3 cache with…
155 "BriefDescription": "L1D Off-Drawer Same-Column L3 Sourced Writes",
156 …ectory where the returned cache line was sourced from an Off-Drawer Same-Column Level-3 cache with…
161 "BriefDescription": "L1D Off-Drawer Far-Column L3 Sourced Writes",
162 …he directory where the returned cache line was sourced from an Off-Drawer Far-Column Level-4 cache"
167 "BriefDescription": "L1D Off-Drawer Far-Column L3 Sourced Writes with Intervention",
168 …rectory where the returned cache line was sourced from an Off-Drawer Far-Column Level-3 cache with…
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormattedStream.cpp23 /// column we end up in after output, and how many line breaks are contained.
27 unsigned &Column = Position.first; in UpdatePosition() local
30 auto ProcessUTF8CodePoint = [&Line, &Column](StringRef CP) { in UpdatePosition()
33 Column += Width; in UpdatePosition()
44 Column = 0; in UpdatePosition()
48 Column += (8 - (Column & 0x7)) & 0x7; in UpdatePosition()
65 // Concatenate them and process their effect on the line and column in UpdatePosition()
94 /// ComputePosition - Examine the current output and update line and column
105 // column in ComputePosition()
[all...]
/freebsd/contrib/bsnmp/snmp_usm/
H A Dsnmp_usm.367 The column is used as entry key and is not accessible for GET or SET operations.
72 The column has the exact same value as the
74 column, however is accessible for GET operations.
76 A GET on this column will return an empty OID. SET operations are currently not
79 The value of this column contains the OID corresponding to the authentication
91 The value of this column contains the OID corresponding to the privacy
106 This column always has either of two values. Entries created via
108 configuration file always have this column set to readOnly (5) and
110 Applications always have this column set to volatile(2) and such entries are
111 lost when the module is restarted. A SET operation on this column is not
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dsamsung-keypad.txt4 keypad device. The keypad controller supports multiple row and column lines.
5 A key can be placed at each intersection of a unique row and a unique column.
25 - samsung,keypad-num-columns: Number of column lines connected to the
32 - keypad,column: the column number to which the key is connected.
62 keypad,column = <3>;
68 keypad,column = <4>;
74 keypad,column = <5>;
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp46 "LineNumber", "Column", "ModuleName", "NameMask", "Offset",
183 uint16_t column; member
185 : line(l), column(c ? *c : LLDB_INVALID_COLUMN_NUMBER) {} in SourceLoc()
188 column(sc.line_entry.column ? sc.line_entry.column in SourceLoc()
197 // uint32_t a_col = lhs.column ? lhs.column : LLDB_INVALID_COLUMN_NUMBER; in operator <()
198 // uint32_t b_col = rhs.column ? rhs.column : LLDB_INVALID_COLUMN_NUMBER; in operator <()
199 return lhs.column < rhs.column; in operator <()
205 llvm::StringRef log_ident, uint32_t line, std::optional<uint16_t> column) { in SetSCMatchesByLine() argument
238 if (column) { in SetSCMatchesByLine()
239 // If a column was requested, do a more precise match and only in SetSCMatchesByLine()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos4412-smdk4412.dts80 keypad,column = <3>;
86 keypad,column = <4>;
92 keypad,column = <5>;
98 keypad,column = <6>;
104 keypad,column = <7>;
110 keypad,column = <6>;
116 keypad,column = <7>;
122 keypad,column = <5>;
128 keypad,column = <5>;
134 keypad,column = <7>;

12345678910>>...60