Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp233 const auto &NextLine = *I[1]; in tryFitMultipleLinesInOne() local
234 if (NextLine.Type == LT_Invalid || NextLine.First->MustBreakBefore) in tryFitMultipleLinesInOne()
237 (!NextLine.InPPDirective || NextLine.First->HasUnescapedNewline)) { in tryFitMultipleLinesInOne()
256 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne()
264 bool EmptyBlock = NextLine.First->is(tok::r_brace); in tryFitMultipleLinesInOne()
291 auto ShouldMergeShortFunctions = [this, &I, &NextLine, PreviousLine, in tryFitMultipleLinesInOne()
296 NextLine.First->is(tok::r_brace)) { in tryFitMultipleLinesInOne()
426 if (NextLine.First->is(TT_ControlStatementLBrace)) { in tryFitMultipleLinesInOne()
497 (NextLine.First->is(tok::r_brace) && in tryFitMultipleLinesInOne()
505 (NextLine.First->is(tok::r_brace) && in tryFitMultipleLinesInOne()
[all …]
H A DDefinitionBlockSeparator.cpp163 AnnotatedLine *NextLine = Lines[OperateIndex + 1]; in separateBlocks() local
164 if (NextLine->MightBeFunctionDecl && in separateBlocks()
165 NextLine->mightBeFunctionDefinition() && in separateBlocks()
166 NextLine->First->NewlinesBefore == 1 && in separateBlocks()
H A DUnwrappedLineFormatter.h55 const AnnotatedLine *NextLine) const;
H A DFormat.cpp2384 const auto *NextLine = I + 1 == End ? nullptr : I[1]; in removeBraces() local
2391 if (!Next && NextLine) in removeBraces()
2392 Next = NextLine->First; in removeBraces()
2434 const auto *NextLine = I + 1 == End ? nullptr : I[1]; in removeSemi() local
2443 if (!Next && NextLine) in removeSemi()
2444 Next = NextLine->First; in removeSemi()
/freebsd/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()
166 addDebugifyOperand(NextLine - 1); in applyDebugifyMetadataToMachineFunction()
181 setDebugifyOperand(0, NextLine - 1); in applyDebugifyMetadataToMachineFunction()
H A DInlineSpiller.cpp874 char NextLine = '\n'; in dumpMachineInstrRangeWithSlotIndex() local
878 NextLine = ' '; in dumpMachineInstrRangeWithSlotIndex()
882 dbgs() << '\t' << header << ": " << NextLine; in dumpMachineInstrRangeWithSlotIndex()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp163 unsigned NextLine = 1; in applyDebugifyMetadata() local
180 auto SP = DIB.createFunction(CU, F.getName(), F.getName(), File, NextLine, in applyDebugifyMetadata()
181 SPType, NextLine, DINode::FlagZero, SPFlags, in applyDebugifyMetadata()
205 uint64_t AtomGroup = ApplyAtomGroups ? NextLine : 0; in applyDebugifyMetadata()
207 uint64_t Line = NextLine++; in applyDebugifyMetadata()
268 addDebugifyOperand(NextLine - 1); // Original number of lines. in applyDebugifyMetadata()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp507 const char *NextLine; in lexVerbatimBlockFirstLine() local
511 NextLine = skipNewline(Newline, CommentEnd); in lexVerbatimBlockFirstLine()
523 NextLine = TextEnd; in lexVerbatimBlockFirstLine()
532 formTokenWithChars(T, NextLine, tok::verbatim_block_line); in lexVerbatimBlockFirstLine()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp1575 auto NextLine = Seq.back(); in cloneAndEmitLineTable() local
1576 NextLine.Address.Address = StopAddress; in cloneAndEmitLineTable()
1577 NextLine.EndSequence = 1; in cloneAndEmitLineTable()
1578 NextLine.PrologueEnd = 0; in cloneAndEmitLineTable()
1579 NextLine.BasicBlock = 0; in cloneAndEmitLineTable()
1580 NextLine.EpilogueBegin = 0; in cloneAndEmitLineTable()
1581 Seq.push_back(NextLine); in cloneAndEmitLineTable()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2251 auto NextLine = Seq.back(); in generateLineTableForUnit() local
2252 NextLine.Row.Address.Address = StopAddress; in generateLineTableForUnit()
2253 NextLine.Row.EndSequence = 1; in generateLineTableForUnit()
2254 NextLine.Row.PrologueEnd = 0; in generateLineTableForUnit()
2255 NextLine.Row.BasicBlock = 0; in generateLineTableForUnit()
2256 NextLine.Row.EpilogueBegin = 0; in generateLineTableForUnit()
2257 Seq.push_back(NextLine); in generateLineTableForUnit()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2635 const char *NextLine = CurPtr; in SkipLineComment() local
2673 CurPtr = NextLine; in SkipLineComment()