Home
last modified time | relevance | path

Searched refs:NextLine (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp256 const auto &NextLine = *I[1]; in tryFitMultipleLinesInOne() local
257 if (NextLine.Type == LT_Invalid || NextLine.First->MustBreakBefore) in tryFitMultipleLinesInOne()
260 (!NextLine.InPPDirective || NextLine.First->HasUnescapedNewline)) { in tryFitMultipleLinesInOne()
278 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne()
318 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne()
433 if (NextLine.First->is(tok::l_brace)) { in tryFitMultipleLinesInOne()
547 if (NextLine.Last->is(TT_LineComment)) in tryFitMultipleLinesInOne()
558 NextLine.First == NextLine.Last && I + 2 != E && in tryFitMultipleLinesInOne()
1342 const AnnotatedLine *NextLine = nullptr; in format() local
1590 (!NextLine || in getColumnLimit()
[all …]
H A DDefinitionBlockSeparator.cpp160 AnnotatedLine *NextLine = Lines[OperateIndex + 1]; in separateBlocks() local
161 if (NextLine->MightBeFunctionDecl && in separateBlocks()
162 NextLine->mightBeFunctionDefinition() && in separateBlocks()
163 NextLine->First->NewlinesBefore == 1 && in separateBlocks()
H A DUnwrappedLineFormatter.h57 const AnnotatedLine *NextLine) const;
H A DFormat.cpp2221 const auto NextLine = I + 1 == End ? nullptr : I[1]; in removeBraces() local
2230 if (!Next && NextLine) in removeBraces()
2231 Next = NextLine->First; in removeBraces()
2272 const auto NextLine = I + 1 == End ? nullptr : I[1]; in removeSemi() local
2281 if (!Next && NextLine) in removeSemi()
2282 Next = NextLine->First; in removeSemi()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineDebugify.cpp47 unsigned NextLine = SP->getLine(); in applyDebugifyMetadataToMachineFunction() local
54 MI.setDebugLoc(DILocation::get(Ctx, NextLine++, 1, SP)); in applyDebugifyMetadataToMachineFunction()
146 addDebugifyOperand(NextLine - 1); in applyDebugifyMetadataToMachineFunction()
161 setDebugifyOperand(0, NextLine - 1); in applyDebugifyMetadataToMachineFunction()
H A DInlineSpiller.cpp855 char NextLine = '\n'; in dumpMachineInstrRangeWithSlotIndex() local
859 NextLine = ' '; in dumpMachineInstrRangeWithSlotIndex()
863 dbgs() << '\t' << header << ": " << NextLine; in dumpMachineInstrRangeWithSlotIndex()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp498 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-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp106 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-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp1579 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-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2178 auto NextLine = Seq.back(); in generateLineTableForUnit() local
2179 NextLine.Address.Address = StopAddress; in generateLineTableForUnit()
2180 NextLine.EndSequence = 1; in generateLineTableForUnit()
2181 NextLine.PrologueEnd = 0; in generateLineTableForUnit()
2182 NextLine.BasicBlock = 0; in generateLineTableForUnit()
2183 NextLine.EpilogueBegin = 0; in generateLineTableForUnit()
2184 Seq.push_back(NextLine); in generateLineTableForUnit()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2558 const char *NextLine = CurPtr; in SkipLineComment() local
2596 CurPtr = NextLine; in SkipLineComment()