HomeSort by relevance Sort by last modified time
    Searched refs:namedDecl (Results 1 - 6 of 6) sorted by null

  /external/clang/unittests/AST/
NamedDeclPrinterTest.cpp 1 //===- unittests/AST/NamedDeclPrinterTest.cpp --- NamedDecl printer tests -===//
10 // This file contains tests for NamedDecl::printQualifiedName().
41 const NamedDecl *ND = Result.Nodes.getNodeAs<NamedDecl>("id");
102 namedDecl(hasName(DeclName)).bind("id"),
114 namedDecl(hasName(DeclName)).bind("id"),
DeclPrinterTest.cpp 107 namedDecl(hasName(DeclName)).bind("id"),
130 namedDecl(hasName(DeclName)).bind("id"),
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 65 DeclarationMatcher NamedX = namedDecl(hasName("X"));
78 DeclarationMatcher NamedX = namedDecl(matchesName("::X"));
89 DeclarationMatcher StartsWithNo = namedDecl(matchesName("::no"));
93 DeclarationMatcher Abc = namedDecl(matchesName("a.*b.*c"));
99 DeclarationMatcher StartsWithK = namedDecl(matchesName(":k[^:]*$"));
335 recordDecl(isDerivedFrom(namedDecl(hasName("X"))))));
613 namedDecl(hasName("Foo"), unless(recordDecl()));
735 // Note that \c T must be a NamedDecl for this to work.
759 if (const NamedDecl *Named = Nodes->getNodeAs<NamedDecl>(Id))
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 277 REGISTER_MATCHER(namedDecl);
  /external/clang/tools/libclang/
CXCursor.cpp 674 CXCursor cxcursor::MakeCursorNamespaceRef(const NamedDecl *NS,
685 std::pair<const NamedDecl *, SourceLocation>
688 return std::make_pair(static_cast<const NamedDecl *>(C.data[0]),
910 const NamedDecl *D = dyn_cast_or_null<NamedDecl>(getCursorDecl(cursor));
915 SmallVector<const NamedDecl *, 8> OverDecls;
918 for (SmallVectorImpl<const NamedDecl *>::iterator
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 282 const internal::VariadicDynCastAllOfMatcher<Decl, NamedDecl> namedDecl;
    [all...]

Completed in 150 milliseconds