Home
last modified time | relevance | path

Searched refs:FullLocation (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/docs/
H A DRAVFrontendAction.rst129 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getBeginLoc());
130 if (FullLocation.isValid())
132 << FullLocation.getSpellingLineNumber() << ":"
133 << FullLocation.getSpellingColumnNumber() << "\n";
161 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getBeginLoc());
162 if (FullLocation.isValid())
164 << FullLocation.getSpellingLineNumber() << ":"
165 << FullLocation.getSpellingColumnNumber() << "\n";
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DTestVisitor.h164 const FullSourceLoc FullLocation = this->Context->getFullLoc(Location); in Match() local
169 EXPECT_FALSE(It->Matches(Name, FullLocation)) in Match()
176 It->UpdateFor(Name, FullLocation, this->Context->getSourceManager()); in Match()