Home
last modified time | relevance | path

Searched refs:LowerLine (Results 1 – 3 of 3) sorted by relevance

/llvm-project/llvm/unittests/DebugInfo/LogicalView/
H A DLocationRangesTest.cpp27 void add(LVSymbol *Symbol, LVLine *LowerLine, LVLine *UpperLine);
31 void set(LVLocation *Location, LVLine *LowerLine, LVLine *UpperLine,
61 void ReaderTest::set(LVLocation *Location, LVLine *LowerLine, LVLine *UpperLine, in set() argument
63 Location->setLowerLine(LowerLine); in set()
67 EXPECT_EQ(Location->getLowerLine(), LowerLine); in set()
74 void ReaderTest::add(LVSymbol *Symbol, LVLine *LowerLine, LVLine *UpperLine) { in add() argument
77 Symbol->addLocation(Attr, LowerLine->getAddress(), UpperLine->getAddress(), in add()
H A DWarningInternalTest.cpp108 void add(LVSymbol *Symbol, LVLine *LowerLine, LVLine *UpperLine);
112 void set(MyLocation *Location, LVLine *LowerLine, LVLine *UpperLine,
192 void ReaderTestWarningInternal::set(MyLocation *Location, LVLine *LowerLine, in set() argument
195 Location->setLowerLine(LowerLine); in set()
199 EXPECT_EQ(Location->getLowerLine(), LowerLine); in set()
206 void ReaderTestWarningInternal::add(LVSymbol *Symbol, LVLine *LowerLine, in add() argument
210 Symbol->addLocation(Attr, LowerLine->getAddress(), UpperLine->getAddress(), in add()
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h87 LVLine *LowerLine = nullptr;
126 const LVLine *getLowerLine() const { return LowerLine; } in getLowerLine()
127 void setLowerLine(LVLine *Line) { LowerLine = Line; } in setLowerLine()