/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | UnwrappedLineFormatter.cpp | 255 const auto &NextLine = *I[1]; in tryFitMultipleLinesInOne() local 256 if (NextLine.Type == LT_Invalid || NextLine.First->MustBreakBefore) in tryFitMultipleLinesInOne() 259 (!NextLine.InPPDirective || NextLine.First->HasUnescapedNewline)) { in tryFitMultipleLinesInOne() 277 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne() 285 bool EmptyBlock = NextLine.First->is(tok::r_brace); in tryFitMultipleLinesInOne() 312 auto ShouldMergeShortFunctions = [this, &I, &NextLine, PreviousLine, in tryFitMultipleLinesInOne() 317 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne() 432 if (NextLine.First->is(tok::l_brace)) { in tryFitMultipleLinesInOne() 535 (NextLine.First->is(tok::r_brace) && in tryFitMultipleLinesInOne() 543 (NextLine.First->is(tok::r_brace) && in tryFitMultipleLinesInOne() [all …]
|
H A D | UnwrappedLineFormatter.h | 55 const AnnotatedLine *NextLine) const;
|
H A D | Format.cpp | 2245 const auto NextLine = I + 1 == End ? nullptr : I[1]; in removeBraces() local 2254 if (!Next && NextLine) in removeBraces() 2255 Next = NextLine->First; in removeBraces() 2305 const auto NextLine = I + 1 == End ? nullptr : I[1]; in removeSemi() local 2314 if (!Next && NextLine) in removeSemi() 2315 Next = NextLine->First; in removeSemi()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineDebugify.cpp | 47 unsigned NextLine = SP->getLine(); in applyDebugifyMetadataToMachineFunction() local 54 MI.setDebugLoc(DILocation::get(Ctx, NextLine++, 1, SP)); in applyDebugifyMetadataToMachineFunction() 162 addDebugifyOperand(NextLine - 1); in applyDebugifyMetadataToMachineFunction() 177 setDebugifyOperand(0, NextLine - 1); in applyDebugifyMetadataToMachineFunction()
|
H A D | InlineSpiller.cpp | 855 char NextLine = '\n'; in dumpMachineInstrRangeWithSlotIndex() local 859 NextLine = ' '; in dumpMachineInstrRangeWithSlotIndex() 863 dbgs() << '\t' << header << ": " << NextLine; in dumpMachineInstrRangeWithSlotIndex()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | CommentLexer.cpp | 498 const char *NextLine; in lexVerbatimBlockFirstLine() local 502 NextLine = skipNewline(Newline, CommentEnd); in lexVerbatimBlockFirstLine() 514 NextLine = TextEnd; in lexVerbatimBlockFirstLine() 523 formTokenWithChars(T, NextLine, tok::verbatim_block_line); in lexVerbatimBlockFirstLine()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | Debugify.cpp | 106 unsigned NextLine = 1; in applyDebugifyMetadata() local 124 auto SP = DIB.createFunction(CU, F.getName(), F.getName(), File, NextLine, in applyDebugifyMetadata() 125 SPType, NextLine, DINode::FlagZero, SPFlags); in applyDebugifyMetadata() 147 I.setDebugLoc(DILocation::get(Ctx, NextLine++, 1, SP)); in applyDebugifyMetadata() 203 addDebugifyOperand(NextLine - 1); // Original number of lines. in applyDebugifyMetadata()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | DWARFLinkerCompileUnit.cpp | 1579 auto NextLine = Seq.back(); in cloneAndEmitLineTable() local 1580 NextLine.Address.Address = StopAddress; in cloneAndEmitLineTable() 1581 NextLine.EndSequence = 1; in cloneAndEmitLineTable() 1582 NextLine.PrologueEnd = 0; in cloneAndEmitLineTable() 1583 NextLine.BasicBlock = 0; in cloneAndEmitLineTable() 1584 NextLine.EpilogueBegin = 0; in cloneAndEmitLineTable() 1585 Seq.push_back(NextLine); in cloneAndEmitLineTable()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFLinker.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
H A D | DWARFLinker.cpp | 2195 auto NextLine = Seq.back(); in generateLineTableForUnit() local 2196 NextLine.Address.Address = StopAddress; in generateLineTableForUnit() 2197 NextLine.EndSequence = 1; in generateLineTableForUnit() 2198 NextLine.PrologueEnd = 0; in generateLineTableForUnit() 2199 NextLine.BasicBlock = 0; in generateLineTableForUnit() 2200 NextLine.EpilogueBegin = 0; in generateLineTableForUnit() 2201 Seq.push_back(NextLine); in generateLineTableForUnit()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Lexer.cpp | 2614 const char *NextLine = CurPtr; in SkipLineComment() local 2652 CurPtr = NextLine; in SkipLineComment()
|