Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DMemory.cpp59 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask; in InvalidateInstructionCache()
61 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in InvalidateInstructionCache()
65 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in InvalidateInstructionCache()
/external/llvm/lib/DebugInfo/CodeView/
DLine.cpp15 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() argument
17 uint32_t LineDelta = EndLine - StartLine; in LineInfo()
/external/llvm/include/llvm/DebugInfo/CodeView/
DLine.h37 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement);
99 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
101 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
/external/clang/unittests/AST/
DMatchVerifier.h220 unsigned EndLine, unsigned EndColumn) { in expectRange() argument
223 ExpectEndLine = EndLine; in expectRange()
235 unsigned EndLine = Result.SourceManager->getSpellingLineNumber(End); in verify() local
238 EndLine != ExpectEndLine || EndColumn != ExpectEndColumn) { in verify()
/external/clang/unittests/ASTMatchers/Dynamic/
DParserTest.cpp106 unsigned EndLine, unsigned StartColumn, unsigned EndColumn) { in matchesRange() argument
108 EXPECT_EQ(EndLine, Range.End.Line); in matchesRange()
111 return Range.Start.Line == StartLine && Range.End.Line == EndLine && in matchesRange()
/external/clang/tools/libclang/
DCIndexDiagnostic.cpp284 unsigned StartLine, StartColumn, EndLine, EndColumn; in clang_formatDiagnostic() local
289 &EndFile, &EndLine, &EndColumn, nullptr); in clang_formatDiagnostic()
295 << EndLine << ":" << EndColumn << "}"; in clang_formatDiagnostic()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DMemory.inc311 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
313 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
317 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/external/llvm/lib/Support/Unix/
DMemory.inc324 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
326 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
330 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/external/clang/lib/AST/
DCommentParser.cpp520 const unsigned EndLine = SourceMgr.getPresumedLineNumber( in parseHTMLStartTag() local
523 if (StartLineInvalid || EndLineInvalid || StartLine == EndLine) in parseHTMLStartTag()