Home
last modified time | relevance | path

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

/external/clang/docs/
DRAVFrontendAction.rst131 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getLocStart());
132 if (FullLocation.isValid())
134 << FullLocation.getSpellingLineNumber() << ":"
135 << FullLocation.getSpellingColumnNumber() << "\n";
163 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getLocStart());
164 if (FullLocation.isValid())
166 << FullLocation.getSpellingLineNumber() << ":"
167 << FullLocation.getSpellingColumnNumber() << "\n";
/external/clang/unittests/Tooling/
DTestVisitor.h150 const FullSourceLoc FullLocation = this->Context->getFullLoc(Location); in Match() local
155 EXPECT_FALSE(It->Matches(Name, FullLocation)) in Match()
162 It->UpdateFor(Name, FullLocation, this->Context->getSourceManager()); in Match()