Lines Matching +full:plugin +full:- +full:node +full:- +full:resolve
15 When writing a clang based tool like a Clang Plugin or a standalone tool
66 nodes, which are passed by-value. We only need to implement the methods
67 for the relevant node types.
80 Declaration->dump();
96 if (Declaration->getQualifiedNameAsString() == "n::m::C")
97 Declaration->dump();
128 if (Declaration->getQualifiedNameAsString() == "n::m::C") {
129 // getFullLoc uses the ASTContext's SourceManager to resolve the source
131 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getLocStart());
162 if (Declaration->getQualifiedNameAsString() == "n::m::C") {
163 FullSourceLoc FullLocation = Context->getFullLoc(Declaration->getLocStart());
208 add_clang_executable(find-class-decls FindClassDecls.cpp)
210 target_link_libraries(find-class-decls clangTooling)
217 $ ./bin/find-class-decls "namespace n { namespace m { class C {}; } }"