Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp255 const auto &NextLine = *I[1]; in tryFitMultipleLinesInOne()
256 if (NextLine.Type == LT_Invalid || NextLine.First->MustBreakBefore) in tryFitMultipleLinesInOne() local
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 in tryFitMultipleLinesInOne()
1342 const AnnotatedLine *NextLine = nullptr; format() local
[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.h55 const AnnotatedLine *NextLine) const;
H A DFormat.cpp462 IO.enumCase(Value, "NextLine", FormatStyle::PCIS_NextLine);
2245 const auto NextLine = I + 1 == End ? nullptr : I[1];
2254 if (!Next && NextLine) in analyze()
2255 Next = NextLine->First; in analyze()
2305 const auto NextLine = I + 1 == End ? nullptr : I[1]; in analyze()
2314 if (!Next && NextLine)
2315 Next = NextLine->First;
2221 const auto NextLine = I + 1 == End ? nullptr : I[1]; removeBraces() local
2272 const auto NextLine = I + 1 == End ? nullptr : I[1]; removeSemi() local
/freebsd-src/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()
162 addDebugifyOperand(NextLine - 1); in applyDebugifyMetadataToMachineFunction()
177 setDebugifyOperand(0, NextLine - 1); in runOnModule()
H A DInlineSpiller.cpp855 char NextLine = '\n'; in dumpMachineInstrRangeWithSlotIndex() local
859 NextLine = ' '; in dumpMachineInstrRangeWithSlotIndex()
863 dbgs() << '\t' << header << ": " << NextLine; in dumpMachineInstrRangeWithSlotIndex()
/freebsd-src/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-src/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-src/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-src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2195 auto NextLine = Seq.back(); in generateLineTableForUnit()
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()
2178 auto NextLine = Seq.back(); generateLineTableForUnit() local
/freebsd-src/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2614 const char *NextLine = CurPtr; in SkipLineComment()
2652 CurPtr = NextLine; in SkipLineComment()
2558 const char *NextLine = CurPtr; SkipLineComment() local