Lines Matching refs:cxxMethodDecl

1286   const auto IsLambda = cxxMethodDecl(ofClass(cxxRecordDecl(isLambda())));  in TEST_P()
1310 callExpr(callee(cxxMethodDecl(hasName("x")))).bind("x"); in TEST_P()
1354 cxxMethodDecl(hasParameter(0, hasType(asString("int")))))); in TEST_P()
1918 cxxMethodDecl(isFinal()))); in TEST_P()
1921 notMatches("class X { virtual void f(); };", cxxMethodDecl(isFinal()))); in TEST_P()
1930 cxxMethodDecl(isVirtual(), hasName("::X::f")))); in TEST_P()
1931 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isVirtual()))); in TEST_P()
1941 cxxMethodDecl(isVirtualAsWritten(), hasName("::A::f")))); in TEST_P()
1945 cxxMethodDecl(isVirtualAsWritten(), hasName("::B::f")))); in TEST_P()
1954 cxxMethodDecl(isPure(), hasName("::X::f")))); in TEST_P()
1955 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isPure()))); in TEST_P()
1964 cxxMethodDecl(isCopyAssignmentOperator(), unless(isImplicit())); in TEST_P()
1981 cxxMethodDecl(isMoveAssignmentOperator(), unless(isImplicit())); in TEST_P()
1999 matches("struct A { void foo() const; };", cxxMethodDecl(isConst()))); in TEST_P()
2001 notMatches("struct A { void foo(); };", cxxMethodDecl(isConst()))); in TEST_P()
2011 cxxMethodDecl(isOverride(), hasName("::Y::f")))); in TEST_P()
2014 cxxMethodDecl(isOverride(), hasName("::X::f")))); in TEST_P()
2017 cxxMethodDecl(isOverride()))); in TEST_P()
2019 cxxMethodDecl(isOverride()))); in TEST_P()
2022 cxxMethodDecl(isOverride(), hasName("::Y::f")))); in TEST_P()
2083 has(cxxMethodDecl(hasName("mem")).bind("templMem")))))))))), in TEST()
2209 cxxMethodDecl(isImplicit(), hasName("operator=")))); in TEST_P()
2536 cxxMethodDecl(hasName("a"), isDefinition()); in TEST_P()
3380 cxxMethodDecl(returns(booleanType())))); in TEST_P()
3382 cxxMethodDecl(returns(booleanType())))); in TEST_P()
3392 cxxMethodDecl(returns(voidType())))); in TEST_P()
3403 cxxMethodDecl(returns(realFloatingPointType())))); in TEST_P()
3405 cxxMethodDecl(returns(realFloatingPointType())))); in TEST_P()
3407 cxxMethodDecl(returns(realFloatingPointType())))); in TEST_P()
3635 callee(cxxMethodDecl(hasName("data"))), in TEST_P()
3639 callee(cxxMethodDecl(anyOf(hasName("size"), hasName("length")))), in TEST_P()
3651 callee(cxxMethodDecl(hasName("data"))), in TEST_P()
3655 callee(cxxMethodDecl(anyOf(hasName("size"), hasName("length")))), in TEST_P()