Home
last modified time | relevance | path

Searched refs:bindingDecl (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp2470 Code, decompositionDecl(hasBinding(0, bindingDecl(hasName("f")))), true, in TEST()
2473 Code, decompositionDecl(hasBinding(42, bindingDecl(hasName("f")))), true, in TEST()
2476 Code, decompositionDecl(hasBinding(0, bindingDecl(hasName("s")))), true, in TEST()
2479 Code, decompositionDecl(hasBinding(1, bindingDecl(hasName("s")))), true, in TEST()
2484 bindingDecl(decl().bind("self"), hasName("f"), in TEST()
2486 hasAnyBinding(bindingDecl(equalsBoundNode("self")))))), in TEST()
H A DASTMatchersTraversalTest.cpp2889 auto M = bindingDecl(hasName("f")); in TEST()
2897 auto M = bindingDecl(hasName("f"), has(expr())); in TEST()
2905 auto M = integerLiteral(hasAncestor(bindingDecl(hasName("f")))); in TEST()
2913 auto M = declRefExpr(hasAncestor(bindingDecl(hasName("f")))); in TEST()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp150 REGISTER_MATCHER(bindingDecl); in RegistryMaps()
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp736 const internal::VariadicDynCastAllOfMatcher<Decl, BindingDecl> bindingDecl; variable
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h361 bindingDecl;
/llvm-project-15.0.7/clang/unittests/AST/
H A DASTImporterTest.cpp3803 FromF, bindingDecl(hasName(BindName))); in TEST_P()