Home
last modified time | relevance | path

Searched refs:EndLine (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h81 unsigned EndLine, EndColumn; in fromString() local
85 if (Split.first.getAsInteger(10, EndLine) || in fromString()
98 EndLine = Begin.Line; in fromString()
103 {EndLine, EndColumn}}; in fromString()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_powerpc64.cpp35 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask; in clearCache() local
37 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
41 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DLine.cpp14 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() argument
16 uint32_t LineDelta = EndLine - StartLine; in LineInfo()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h35 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement);
97 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
99 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
/llvm-project-15.0.7/clang/unittests/Frontend/
H A DParsedSourceLocationTest.cpp19 unsigned BeginColumn, unsigned EndLine, unsigned EndColumn) { in TEST() argument
25 EXPECT_EQ(PSR->End.first, EndLine); in TEST()
/llvm-project-15.0.7/clang/unittests/AST/
H A DMatchVerifier.h228 unsigned EndLine, unsigned EndColumn) { in expectRange() argument
231 ExpectEndLine = EndLine; in expectRange()
243 unsigned EndLine = Result.SourceManager->getSpellingLineNumber(End); in verify() local
246 EndLine != ExpectEndLine || EndColumn != ExpectEndColumn) { in verify()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DNamespaceCommentCheck.cpp95 unsigned EndLine = Sources.getSpellingLineNumber(ND->getRBraceLoc()); in check() local
96 if (EndLine - StartLine + 1 <= ShortNamespaceLines) in check()
135 bool NextTokenIsOnSameLine = Sources.getSpellingLineNumber(Loc) == EndLine; in check()
H A DBracesAroundStatementsCheck.cpp239 unsigned EndLine = SM.getSpellingLineNumber(EndLoc); in checkStmt() local
240 if (EndLine - StartLine < ShortStatementLines) in checkStmt()
/llvm-project-15.0.7/clang/lib/Format/
H A DNamespaceEndCommentsFixer.cpp308 const AnnotatedLine *EndLine = AnnotatedLines[I]; in analyze() local
310 getNamespaceToken(EndLine, AnnotatedLines); in analyze()
313 FormatToken *RBraceTok = EndLine->First; in analyze()
323 StartLineIndex = EndLine->MatchingOpeningBlockLineIndex; in analyze()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp328 unsigned EndLine, uint32_t Ident, int Version) in GCOVFunction() argument
329 : GCOVRecord(P), SP(SP), EndLine(EndLine), Ident(Ident), in GCOVFunction()
385 write(EndLine); in writeOut()
433 unsigned EndLine; member in __anon434f465a0311::GCOVFunction
594 static bool functionHasLines(const Function &F, unsigned &EndLine) { in functionHasLines() argument
597 EndLine = 0; in functionHasLines()
610 EndLine = std::max(EndLine, Loc.getLine()); in functionHasLines()
792 unsigned EndLine; in emitProfileNotes() local
794 if (!functionHasLines(F, EndLine) || !isFunctionInstrumented(F)) in emitProfileNotes()
827 Funcs.push_back(std::make_unique<GCOVFunction>(this, &F, SP, EndLine, in emitProfileNotes()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndexDiagnostic.cpp271 unsigned StartLine, StartColumn, EndLine, EndColumn; in clang_formatDiagnostic() local
276 &EndFile, &EndLine, &EndColumn, nullptr); in clang_formatDiagnostic()
282 << EndLine << ":" << EndColumn << "}"; in clang_formatDiagnostic()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DMemory.inc235 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
237 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
241 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp140 unsigned EndLine, unsigned StartColumn, unsigned EndColumn) { in matchesRange() argument
142 EXPECT_EQ(EndLine, Range.End.Line); in matchesRange()
145 return Range.Start.Line == StartLine && Range.End.Line == EndLine && in matchesRange()
/llvm-project-15.0.7/clang/lib/AST/
H A DCommentParser.cpp514 const unsigned EndLine = SourceMgr.getPresumedLineNumber( in parseHTMLStartTag() local
517 if (StartLineInvalid || EndLineInvalid || StartLine == EndLine) in parseHTMLStartTag()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h731 EndLine(); in NODE()
862 void EndLine() { in EndLine() function
869 EndLine(); in EndLineIfNonempty()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3144 unsigned EndLine = SM.getExpansionLineNumber(End); in populateExecutedLinesWithFunctionSignature() local
3147 for (unsigned Line = StartLine; Line <= EndLine; Line++) in populateExecutedLinesWithFunctionSignature()