HomeSort by: relevance | last modified time | path
    Searched defs:Line (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/usr.bin/indent/
edge_cases.c 51 * they do not force a line break before.
75 package PkgLint::Line;
107 package PkgLint:: Line;
127 // $ Line break between '{' and '}'.
129 // $ Line break between '}' and ']'.
144 // $ Line breaks between '{', '$name', '}' and ');'.
  /src/sys/external/bsd/acpica/dist/compiler/
dtutils.c 81 UINT32 Line = 0;
88 Line = FieldObject->Line;
94 Line, Level, MessageId))
102 FieldObject->Line,
103 FieldObject->Line,
158 FieldObject->Line,
159 FieldObject->Line,
dtcompiler.h 67 /* Types for individual fields (one per input line) */
92 UINT32 Line; /* Line number for this field */
111 UINT32 Line; /* Line number for this field */
350 UINT32 Line,
asltypes.h 145 UINT32 Line;
283 * An entry in the line-based expected messages list
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_x86_64.cc 58 char Line[BufSize] = {};
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
66 long long Tmp = internal_simple_strtoll(Line, &End, 10);
68 if (Line[0] != '\0' && (*End == '\n' || *End == '\0')) {
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 44 // file2 # One file name per line.
52 std::string Line;
55 if (!std::getline(IS, Line, '\n')) return false;
56 std::istringstream L1(Line);
62 if (!std::getline(IS, Line, '\n')) return false;
63 std::istringstream L2(Line);
79 while (std::getline(IS, Line, '\n')) {
80 std::istringstream ISS1(Line);
190 std::string Line, Tmp;
192 while (std::getline(IS, Line, '\n'))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.h 47 u32 Line;
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
53 : Filename(Filename), Line(Line), Column(Column) {}
64 return SourceLocation(Filename, Line, OldColumn);
75 /// \brief Get the presumed line number.
76 unsigned getLine() const { return Line; }
77 /// \brief Get the column within the presumed line.

Completed in 23 milliseconds