Searched refs:column (Results 26 - 50 of 123) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h50 unsigned line, unsigned column, bool prologueend, bool isstmt)
52 Column(column), PrologueEnd(prologueend), IsStmt(isstmt) {}
85 void setColumn(unsigned column) { argument
86 assert(column <= UINT16_MAX);
87 Column = column;
49 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, unsigned line, unsigned column, bool prologueend, bool isstmt) argument
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp182 uint16_t column; member in struct:__anon1352::SourceLoc
184 : line(l), column(c ? *c : LLDB_INVALID_COLUMN_NUMBER) {}
187 column(sc.line_entry.column ? sc.line_entry.column
196 // uint32_t a_col = lhs.column ? lhs.column : LLDB_INVALID_COLUMN_NUMBER;
197 // uint32_t b_col = rhs.column ? rhs.column : LLDB_INVALID_COLUMN_NUMBER;
198 return lhs.column < rh
202 SetSCMatchesByLine( SearchFilter &filter, SymbolContextList &sc_list, bool skip_prologue, llvm::StringRef log_ident, uint32_t line, std::optional<uint16_t> column) argument
[all...]
H A DBreakpointResolverFileLine.cpp37 uint16_t column; local
60 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column);
63 column = 0;
87 SourceLocationSpec location_spec(FileSpec(filename), line, column, local
290 const std::optional<uint16_t> column = m_location_spec.GetColumn(); local
312 column);
325 auto column = m_location_spec.GetColumn(); local
326 if (column)
327 s->Printf("column = %u, ", *column);
[all...]
/freebsd-current/sbin/bectl/
H A Dbectl_list.c251 * The space used column is some composition of:
413 char *column; local
416 column = NULL;
436 if (column != NULL)
437 free(column);
438 column = strdup(optarg);
442 if (column != NULL)
443 free(column);
444 column = strdup(optarg);
472 if (column
[all...]
/freebsd-current/contrib/kyua/store/
H A Ddbtypes_test.cpp55 /// \param column The store::column_* function to get the value.
60 Type3 (*column)(sqlite::statement&, const char*))
63 db.exec("CREATE TABLE test (column DONTCARE)");
72 ATF_REQUIRE(column(query, "column") == value);
80 /// \param column The store::column_* function to get the value.
85 Type2 (*column)(sqlite::statement&, const char*),
89 db.exec("CREATE TABLE test (column DONTCARE)");
99 column(query, "column"));
58 do_ok_test(void (*bind)(sqlite::statement&, const char*, Type1), Type2 value, Type3 (*column)(sqlite::statement&, const char*)) argument
84 do_invalid_test(Type1 value, Type2 (*column)(sqlite::statement&, const char*), const std::string& error_regexp) argument
[all...]
/freebsd-current/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh203 "the pid column"
306 atf_set "descr" "Tests simple uses of null column headings" \
334 # We choose "holdcnt" as a column whose width is likely to be
349 "null heading for every column). The heading" \
377 "same column more than once"
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBSourceManager.h33 const lldb::SBFileSpec &file, uint32_t line, uint32_t column,
H A DSBDeclaration.h42 void SetColumn(uint32_t column);
H A DSBLineEntry.h46 void SetColumn(uint32_t column);
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBLineEntry.cpp104 return m_opaque_up->column;
122 void SBLineEntry::SetColumn(uint32_t column) { argument
123 LLDB_INSTRUMENT_VA(this, column);
125 ref().line = column;
H A DSBDeclaration.cpp103 void SBDeclaration::SetColumn(uint32_t column) { argument
104 LLDB_INSTRUMENT_VA(this, column);
106 ref().SetColumn(column);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
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 informatio
[all...]
H A DSourceManager.h46 size_t DisplaySourceLines(uint32_t line, std::optional<size_t> column,
146 uint32_t column, uint32_t context_before,
153 uint32_t start_line, uint32_t count, uint32_t curr_line, uint32_t column,
H A DDisassembler.h487 uint32_t column = 0; member in struct:lldb_private::Disassembler::SourceLine
492 return file == rhs.file && line == rhs.line && rhs.column == column;
496 return file != rhs.file || line != rhs.line || column != rhs.column;
543 sl.column = line.column;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLineEntry.h142 uint16_t column = member in struct:lldb_private::LineEntry
143 0; ///< The column number of the source line, or zero if there
144 /// is no column information.
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBLineEntryExtensions.i18 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.''')
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c142 * (e.g., from Caps.filtered) computes the hash-value of a specified column and
254 int column = 0; local
267 /* The first argument is the column-number (starting with 0).
271 || (column = atoi(argv[1])) <= 0
272 || (column >= MAX_COLUMNS)
277 fprintf(stderr, "usage: make_hash column root_name bigstring\n");
302 if (column < 0 || column > count_columns(list)) {
304 column,
313 if (!strcmp(list[column], name_tabl
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp169 // We don't use ANSI stop column formatting if the debugger doesn't think it
178 // We don't use ANSI stop column formatting if we can't lookup values from
183 // We don't use ANSI stop column formatting if the debugger doesn't think it
188 // We only use ANSI stop column formatting if we're either supposed to show
197 // We don't use text-based stop column formatting if we can't lookup values
218 uint32_t start_line, uint32_t count, uint32_t curr_line, uint32_t column,
277 // So far we treated column 0 as a special 'no column value', but
278 // DisplaySourceLines starts counting columns from 0 (and no column is
281 if (line == curr_line && column)
217 DisplaySourceLinesWithLineNumbersUsingLastFile( uint32_t start_line, uint32_t count, uint32_t curr_line, uint32_t column, const char *current_line_cstr, Stream *s, const SymbolContextList *bp_locs) argument
307 DisplaySourceLinesWithLineNumbers( const FileSpec &file_spec, uint32_t line, uint32_t column, uint32_t context_before, uint32_t context_after, const char *current_line_cstr, Stream *s, const SymbolContextList *bp_locs) argument
369 const uint32_t column = 0; local
618 DisplaySourceLines(uint32_t line, std::optional<size_t> column, uint32_t context_before, uint32_t context_after, Stream *s) argument
[all...]
/freebsd-current/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c92 ar5212GetRfField(uint32_t *rfBuf, uint32_t numBits, uint32_t firstBit, uint32_t column) argument
98 HALASSERT(column <= 3);
110 (column * 8);
111 reg32 |= (((rfBuf[arrayEntry] & mask) >> (column * 8)) >>
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.h39 int line, int column, bool vs_style,
79 // %c - column in the source file;
83 // %S - prints file/line/column information;
84 // %L - prints location information: file/line/column, if it is known, or
/freebsd-current/tools/sched/
H A Dschedgraph.py244 self.label.grid(row=0, column=0, sticky=E+W)
245 self.sample.grid(row=0, column=1)
246 self.list.grid(row=0, column=2, sticky=E+W)
247 self.checkbox.grid(row=0, column=3)
285 self.items.grid(row=0, column=0, sticky=E+W)
287 self.buttons.grid(row=1, column=0, sticky=E+W)
302 item.grid(row=self.irow, column=0, sticky=E+W)
310 self.apply.grid(row=0, column=0, sticky=E+W)
311 self.default.grid(row=0, column=1, sticky=E+W)
342 self.label.grid(row=0, column
[all...]
/freebsd-current/contrib/elftoolchain/libdwarf/
H A Ddwarf_pro_lineno.c33 Dwarf_Addr off, Dwarf_Unsigned lineno, Dwarf_Signed column,
62 ln->ln_column = column;
32 dwarf_add_line_entry(Dwarf_P_Debug dbg, Dwarf_Unsigned file, Dwarf_Addr off, Dwarf_Unsigned lineno, Dwarf_Signed column, Dwarf_Bool is_stmt, Dwarf_Bool basic_block, Dwarf_Error *error) argument
H A Dlibdwarf_lineno.c104 uint64_t address, file, line, column, opsize; local
113 column = 0; \
132 ln->ln_column = column; \
207 column = _dwarf_decode_uleb128(&p);
491 Dwarf_Signed line0, column; local
501 column = 0; \
543 * Generate standard opcodes for file, column, is_stmt or
551 if (ln->ln_column != column) {
554 column = ln->ln_column;
/freebsd-current/tools/test/stress2/tools/
H A Dsetup.sh35 all.exclude Local list of tests to exclude, one test per line starting in column one
/freebsd-current/crypto/openssl/test/recipes/
H A D80-test_cmp_http.t64 my $column; # The column number of the expected result
94 $column = $1 eq "" ? '""""' : $1 if m/^\s*column\s*=\s*(.*)?\s*$/;
106 || !defined $column || !defined $sleep;
254 my $expected_result = $fields[$column];

Completed in 368 milliseconds

12345