Home
last modified time | relevance | path

Searched refs:Line (Results 1 – 25 of 408) sorted by relevance

12345678910>>...17

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp179 std::tie(Str, Line) = getToken(Line); in parse()
203 std::tie(Str, Line) = getToken(Line); in parse()
226 std::tie(Str, Line) = getToken(Line); in parse()
255 std::tie(Str, Line) = getToken(Line); in parsePublicOrFunc()
269 std::tie(Str, Line) = getToken(Line); in parsePublicOrFunc()
305 std::tie(Str, Line) = getToken(Line); in parse()
310 std::tie(Str, Line) = getToken(Line); in parse()
315 std::tie(Str, Line) = getToken(Line); in parse()
320 std::tie(Str, Line) = getToken(Line); in parse()
371 std::tie(Str, Line) = getToken(Line); in parse()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.h40 AnnotatedLine(const UnwrappedLine &Line) in AnnotatedLine() argument
41 : First(Line.Tokens.front().Tok), Level(Line.Level), in AnnotatedLine()
44 InPPDirective(Line.InPPDirective), in AnnotatedLine()
48 FirstStartColumn(Line.FirstStartColumn) { in AnnotatedLine()
49 assert(!Line.Tokens.empty()); in AnnotatedLine()
168 void annotate(AnnotatedLine &Line);
169 void calculateFormattingInformation(AnnotatedLine &Line);
187 bool mustBreakForReturnType(const AnnotatedLine &Line) const;
189 void printDebugInfo(const AnnotatedLine &Line);
191 void calculateUnbreakableTailLengths(AnnotatedLine &Line);
[all …]
H A DAffectedRangeManager.cpp29 AnnotatedLine *Line = *I; in computeAffectedLines() local
30 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First); in computeAffectedLines()
34 if (Line->InPPDirective) { in computeAffectedLines()
35 FormatToken *Last = Line->Last; in computeAffectedLines()
42 if (affectsTokenRange(*Line->First, *Last, in computeAffectedLines()
54 PreviousLine = Line; in computeAffectedLines()
105 Line->ChildrenAffected = computeAffectedLines(Line->Children); in nonPPLineAffected()
106 if (Line->ChildrenAffected) in nonPPLineAffected()
137 Line->First->is(tok::comment) && Line->First->Next == nullptr && in nonPPLineAffected()
142 Line->First->is(tok::r_brace) && in nonPPLineAffected()
[all …]
H A DUnwrappedLineParser.cpp43 : Line(Line), Stack(Stack) { in ScopedDeclarationState()
56 UnwrappedLine &Line; member in clang::format::__anon2b5cbe510111::ScopedDeclarationState
83 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken), in ScopedMacroState()
89 Line.Level = 0; in ScopedMacroState()
272 if (Line.InPPDirective && Line.Level > 0) in parse()
593 ++Line->Level; in parseBlock()
615 --Line->Level; in parseBlock()
906 ++Line->Level; in parsePPDefine()
2345 if (Line->Level > 1 || (!Line->InPPDirective && Line->Level > 0)) in parseLabel()
2696 ++Line->Level; in parseJavaEnumBody()
[all …]
H A DUnwrappedLineFormatter.cpp89 if ((!Line.First->is(tok::comment) || IndentForLevel[Line.Level] == -1) && in adjustToUnmodifiedLine()
90 !Line.InPPDirective) in adjustToUnmodifiedLine()
486 if (!Line.First->is(tok::kw_do) && !Line.First->is(tok::kw_else) && in tryMergeSimpleControlStatement()
487 !Line.Last->is(tok::kw_else) && Line.Last->isNot(tok::r_paren)) in tryMergeSimpleControlStatement()
490 if (Line.First->is(tok::kw_do) && !Line.Last->is(tok::kw_do)) in tryMergeSimpleControlStatement()
538 Line = *J; in tryMergeShortCaseLabels()
543 if (Line->First->isNot(tok::comment) || Level != Line->Level) in tryMergeShortCaseLabels()
573 (Line.First->Next && Line.First->Next->is(tok::kw_else))) in tryMergeSimpleBlock()
678 if (Line.First == Line.Last && in tryMergeSimpleBlock()
1147 Line; Line = NextLine, FirstLine = false) { in format()
[all …]
H A DUsingDeclarationsSorter.cpp68 const AnnotatedLine *Line; member
71 UsingDeclaration(const AnnotatedLine *Line, const std::string &Label) in UsingDeclaration()
72 : Line(Line), Label(Label) {} in UsingDeclaration()
119 if (Declaration.Line->Affected) { in endUsingDeclarationBlock()
142 (*UsingDeclarations)[I].Line->First->WhitespaceRange.getBegin(); in endUsingDeclarationBlock()
143 auto End = (*UsingDeclarations)[I].Line->Last->Tok.getEndLoc(); in endUsingDeclarationBlock()
152 if ((*UsingDeclarations)[I].Line == SortedUsingDeclarations[I].Line) in endUsingDeclarationBlock()
154 auto Begin = (*UsingDeclarations)[I].Line->First->Tok.getLocation(); in endUsingDeclarationBlock()
155 auto End = (*UsingDeclarations)[I].Line->Last->Tok.getEndLoc(); in endUsingDeclarationBlock()
157 SortedUsingDeclarations[I].Line->First->Tok.getLocation(); in endUsingDeclarationBlock()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h57 unsigned Line; member
60 InstantiationView(StringRef FunctionName, unsigned Line, in InstantiationView()
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
66 return LHS.Line < RHS.Line;
74 unsigned Line; member
76 BranchView(unsigned Line, ArrayRef<CountedRegion> Regions, in BranchView()
78 : Regions(Regions), View(std::move(View)), Line(Line) {} in BranchView()
80 unsigned getLine() const { return Line; } in getLine()
83 return LHS.Line < RHS.Line;
172 StringRef Line; member
[all …]
H A DSourceCoverageViewText.cpp100 StringRef Line = L.Line; in renderLine() local
116 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1); in renderLine()
120 << Line.substr(Col - 1, End - Col); in renderLine()
136 << Line.substr(Col - 1, Line.size() - Col + 1); in renderLine()
149 raw_ostream &OS, const LineCoverageStats &Line) { in renderLineCoverageColumn() argument
150 if (!Line.isMapped()) { in renderLineCoverageColumn()
154 std::string C = formatCount(Line.getExecutionCount()); in renderLineCoverageColumn()
157 Line.hasMultipleRegions() && getOptions().Colors) in renderLineCoverageColumn()
179 CoverageSegmentArray Segments = Line.getLineSegments(); in renderRegionMarkers()
189 if (S->Count == Line.getExecutionCount()) in renderRegionMarkers()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp267 (Line[LineLen - 1] == '\n' || Line[LineLen - 1] == '\r')) in readLine()
303 std::string Line; in readLine() local
308 if (Line.empty()) in readLine()
311 return Line; in readLine()
313 Line.append(Buf); in readLine()
314 } while (Line.empty() || in readLine()
315 (Line[Line.size() - 1] != '\n' && Line[Line.size() - 1] != '\r')); in readLine()
317 while (!Line.empty() && in readLine()
318 (Line[Line.size() - 1] == '\n' || Line[Line.size() - 1] == '\r')) in readLine()
319 Line.resize(Line.size() - 1); in readLine()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/utilities/
H A Duttrack.c185 UINT32 Line);
192 UINT32 Line);
252 UINT32 Line) in AcpiUtAllocateAndTrack() argument
321 UINT32 Line) in AcpiUtAllocateZeroedAndTrack() argument
342 ACPI_ERROR ((Module, Line, in AcpiUtAllocateZeroedAndTrack()
390 UINT32 Line) in AcpiUtFreeAndTrack() argument
401 ACPI_ERROR ((Module, Line, in AcpiUtFreeAndTrack()
518 UINT32 Line) in AcpiUtTrackAllocation() argument
558 Allocation->Line = Line; in AcpiUtTrackAllocation()
619 UINT32 Line) in AcpiUtRemoveAllocation() argument
[all …]
/freebsd-13.1/sys/contrib/device-tree/src/arm/
H A Dam3517-evm-ui.dtsi15 "Line", "Line In",
16 "Line", "Line Out";
19 "Line Out", "LOUT",
20 "Line Out", "ROUT",
21 "LLINEIN", "Line In",
22 "RLINEIN", "Line In",
45 "Line", "Line In",
46 "Line", "Line Out";
49 "Line Out", "LOUT",
50 "Line Out", "ROUT",
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h257 unsigned Line;
465 unsigned Line;
555 unsigned Line;
682 unsigned Line;
704 Line(Line), Type(Type), ScopeLine(ScopeLine),
800 unsigned Line;
972 unsigned Line;
986 Line(Line), Type(Type), IsLocalToUnit(IsLocalToUnit),
1029 unsigned Line;
1068 unsigned Line;
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_powerpc64.cpp37 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache() local
38 asm volatile("dcbf 0, %0" : : "r"(Line)); in clearCache()
41 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache() local
42 asm volatile("icbi 0, %0" : : "r"(Line)); in clearCache()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DSymbolRemappingReader.cpp36 StringRef Line = *LineIt; in read() local
37 Line = Line.ltrim(' '); in read()
39 if (Line.startswith("#") || Line.empty()) in read()
43 Line.split(Parts, ' ', /*MaxSplits*/-1, /*KeepEmpty*/false); in read()
47 "found '" + Line + "'"); in read()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp132 static bool ParseError(const char *Err, const std::string &Line) { in ParseError() argument
139 static bool ParseDFTLine(const std::string &Line, size_t *FunctionNum, in ParseDFTLine() argument
141 if (!Line.empty() && Line[0] != 'F') in ParseDFTLine()
143 size_t SpacePos = Line.find(' '); in ParseDFTLine()
145 return ParseError("no space in the trace line", Line); in ParseDFTLine()
146 if (Line.empty() || Line[0] != 'F') in ParseDFTLine()
147 return ParseError("the trace line doesn't start with 'F'", Line); in ParseDFTLine()
148 *FunctionNum = std::atol(Line.c_str() + 1); in ParseDFTLine()
149 const char *Beg = Line.c_str() + SpacePos + 1; in ParseDFTLine()
150 const char *End = Line.c_str() + Line.size(); in ParseDFTLine()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Dmt2701-cs42448.txt21 "Line Out Jack", "AOUT1L",
22 "Line Out Jack", "AOUT1R",
23 "Line Out Jack", "AOUT2L",
24 "Line Out Jack", "AOUT2R",
25 "Line Out Jack", "AOUT3L",
26 "Line Out Jack", "AOUT3R",
27 "Line Out Jack", "AOUT4L",
28 "Line Out Jack", "AOUT4R",
H A Dfsl-asoc-card.txt60 * Line Out Jack
61 * Line In Jack
94 "Line Out Jack", "AOUT1L",
95 "Line Out Jack", "AOUT1R",
96 "Line Out Jack", "AOUT2L",
97 "Line Out Jack", "AOUT2R",
98 "Line Out Jack", "AOUT3L",
102 "AIN1L", "Line In Jack",
103 "AIN1R", "Line In Jack",
104 "AIN2L", "Line In Jack",
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h663 unsigned Line; variable
680 this->Line = Line; in init()
1806 unsigned Line; variable
2085 unsigned Line; variable
2490 unsigned Line; variable
3137 unsigned Line;
3205 unsigned Line;
3212 Line(Line), Attributes(Attributes) {}
3288 unsigned Line;
3437 unsigned Line;
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp87 void WriteLineInfo(StringRef Filename, int Line,
124 OS << "#line" << ' ' << Line << ' ' << '"'; in WriteLineInfo()
130 OS << '#' << ' ' << Line << ' ' << '"'; in WriteLineInfo()
311 Line += TextToWrite.count(LocalEOL); in OutputContentUpTo()
321 Line++; in OutputContentUpTo()
356 LocalEOL, Line, true); in CommentOutDirective()
422 Line); in Process()
457 NextToWrite, Line); in Process()
465 NextToWrite, Line); in Process()
500 WriteLineInfo(FileName, Line, FileType); in Process()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h71 SymbolRemappingParseError(StringRef File, int64_t Line, const Twine &Message) in SymbolRemappingParseError() argument
72 : File(File), Line(Line), Message(Message.str()) {} in SymbolRemappingParseError()
75 OS << File << ':' << Line << ": " << Message; in log()
82 int64_t getLineNum() const { return Line; } in getLineNum()
89 int64_t Line; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeLineNumber.cpp15 const codeview::LineInfo Line, in NativeLineNumber() argument
19 : Session(Session), Line(Line), ColumnNumber(ColumnNumber), in NativeLineNumber()
23 uint32_t NativeLineNumber::getLineNumber() const { return Line.getStartLine(); } in getLineNumber()
26 return Line.getEndLine(); in getLineNumberEnd()
51 bool NativeLineNumber::isStatement() const { return Line.isStatement(); } in isStatement()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp103 Row.Line += Data.getSLEB128(&Offset); in parse()
110 Row.Line += LineDelta; in parse()
143 int64_t LineDelta = (int64_t)line_entry.Line - PrevLine; in encode()
155 PrevLine = (int64_t)line_entry.Line; in encode()
193 LineEntry Prev(BaseAddr, 1, Lines.front().Line); in encode()
199 Out.writeULEB(Prev.Line); in encode()
212 if (Curr.Line > Prev.Line) in encode()
213 LineDelta = Curr.Line - Prev.Line; in encode()
214 else if (Prev.Line > Curr.Line) in encode()
215 LineDelta = -((int32_t)(Prev.Line - Curr.Line)); in encode()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.h46 u32 Line; variable
50 SourceLocation() : Filename(), Line(), Column() {} in SourceLocation()
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column) in SourceLocation() argument
52 : Filename(Filename), Line(Line), Column(Column) {} in SourceLocation()
63 return SourceLocation(Filename, Line, OldColumn); in acquire()
75 unsigned getLine() const { return Line; } in getLine()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.cpp75 while (auto Line = Lines->getNext()) { in start() local
77 uint32_t LineStart = Line->getLineNumber(); in start()
78 uint32_t LineEnd = Line->getLineNumberEnd(); in start()
81 PDB_ColorItem StatementColor = Line->isStatement() in start()
88 uint32_t ColumnStart = Line->getColumnNumber(); in start()
89 uint32_t ColumnEnd = Line->getColumnNumberEnd(); in start()
98 if (Line->getLength() > 0) { in start()
99 uint64_t AddrStart = Line->getVirtualAddress(); in start()
100 uint64_t AddrEnd = AddrStart + Line->getLength() - 1; in start()
104 Printer << " (" << Line->getLength() << " bytes)"; in start()
[all …]
/freebsd-13.1/sys/contrib/device-tree/src/arm64/freescale/
H A Dfsl-ls1028a-kontron-sl28-var3-ads2.dts24 "Line", "Line Out Jack",
26 "Line", "Line In Jack";
28 "Line Out Jack", "LINEOUTR",
29 "Line Out Jack", "LINEOUTL",
32 "IN1L", "Line In Jack",
33 "IN1R", "Line In Jack",

12345678910>>...17