Home | History | Annotate | Download | only in docs

Lines Matching full:hasname

95 recordDecl(decl().bind("id"), hasName("::MyClass"))
1583 Example matches Y (matcher = cxxRecordDecl(unless(hasName("X"))))
1871 <tr><td colspan="4" class="doc" id="isDerivedFrom1"><pre>Overloaded method as shortcut for isDerivedFrom(hasName(...)).
1908 isSameOrDerivedFrom(hasName(...)).
1920 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
1926 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
2010 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
2011 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))
2261 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
2267 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
2325 <tr><td>Matcher&lt<a href="http://clang.llvm.org/doxygen/classclang_1_1NamedDecl.html">NamedDecl</a>&gt;</td><td class="name" onclick="toggle('hasName0')"><a name="hasName0Anchor">hasName</a></td><td>std::string Name</td></tr>
2475 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
2476 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))
2589 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
2590 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))
2753 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
2754 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))
2928 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
2934 cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
2996 cxxRecordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
2997 has(fieldDecl(hasName("b")).bind("v"))))
3011 (matcher = cxxRecordDecl(forEachDescendant(cxxRecordDecl(hasName("X")))))
3037 (matcher = cxxRecordDecl(forEach(cxxRecordDecl(hasName("X")))
3069 (matcher = cxxRecordDecl(hasDescendant(cxxRecordDecl(hasName("X")))))
3085 (matcher = cxxRecordDecl(has(cxxRecordDecl(hasName("X")))
3359 forField(hasName("foo_"))))))
3421 (matcher = cxxMemberCallExpr(on(hasType(cxxRecordDecl(hasName("Y"))))))
3450 ofClass(hasName("A"))))))
3466 cxxRecordDecl(hasMethod(hasName("func"))) matches the declaration of
3477 Example matches Y, Z, C (Base == hasName("X"))
3485 In the following example, Bar matches isDerivedFrom(hasName("X")):
3503 cxxMethodDecl(hasName("x")))))
3742 (matcher = declRefExpr(to(varDecl(hasName("x")))))
3800 cxxRcordDecl(hasDeclContext(namedDecl(hasName("M")))) matches the
3839 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N"))))
3856 hasDeclaration(namedDecl(hasName("D")))))) matches the type of the variable
3897 declaration "X x;", cxxRecordDecl(hasName("X")) matches the declaration of
3898 X, while varDecl(hasType(cxxRecordDecl(hasName("X")))) matches the
3901 Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
3902 and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
3914 Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
3915 and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
4035 cxxMethodDecl(hasAnyParameter(hasName("y")))
4182 memberExpr(hasObjectExpression(hasType(cxxRecordDecl(hasName("X")))))))
4197 memberExpr(member(hasName("first")))
4254 hasDeclaration(cxxRecordDecl(hasName("A")))))))
4277 nestedNameSpecifier(specifiesNamespace(hasName("ns")))
4290 hasDeclaration(cxxRecordDecl(hasName("A")))
4410 cxxRecordDecl(hasName("Y")))))))
4426 (matcher = varDecl(hasType(references(cxxRecordDecl(hasName("X"))))))
4545 isExpr(hasDescendant(declRefExpr(to(fieldDecl(hasName("next"))))))))
4560 refersToDeclaration(fieldDecl(hasName("next"))))
4586 refersToType(class(hasName("X")))))
4671 cxxRecordDecl(hasName("::A"),
4748 usingDecl(hasAnyUsingShadowDecl(hasName("b"))))
4770 declaration "X x;", cxxRecordDecl(hasName("X")) matches the declaration of
4771 X, while varDecl(hasType(cxxRecordDecl(hasName("X")))) matches the
4774 Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
4775 and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
4787 Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
4788 and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
4813 varDecl(hasName("b")))))))