Searched refs:recordDecl (Results 1 – 10 of 10) sorted by relevance
25 DeclarationMatcher HasEmptyName = recordDecl(hasName("")); in TEST()32 DeclarationMatcher HasEmptyName = recordDecl(matchesName("")); in TEST()108 DeclarationMatcher ClassMatcher(recordDecl()); in TEST()117 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X"))); in TEST()261 cxxRecordDecl(isDerivedFrom(recordDecl(hasName("Some")))))); in TEST()268 cxxRecordDecl(hasName("B"), isDerivedFrom(recordDecl(hasName("A")))))); in TEST()329 cxxRecordDecl(isDerivedFrom(recordDecl(hasName("X")).bind("test"))))); in TEST()352 cxxRecordDecl(hasName("B"), isDerivedFrom(recordDecl())))); in TEST()362 recordDecl(hasDeclContext(namespaceDecl(hasName("M")))))); in TEST()369 recordDecl(hasDeclContext(namespaceDecl(hasName("N")))))); in TEST()[all …]
60 Value = VariantMatcher::SingleMatcher(recordDecl()); in TEST()85 Value = VariantMatcher::SingleMatcher(recordDecl()); in TEST()129 recordDecl(hasName("X")))) in TEST()
218 specifiesType(hasDeclaration(recordDecl(hasName("A"))))))) in TEST_F()373 D = recordDecl( in TEST_F()
30 in the AST of a translation unit, you can call `recordDecl()34 call ``recordDecl(hasName("Foo"))`` returns a matcher that matches classes or39 "``Bar``": ``recordDecl(hasName("Foo"), isDerivedFrom("Bar"))``.81 are bindable; for example, ``recordDecl(hasName("MyClass")).bind("id")`` will82 bind the matched ``recordDecl`` node to the string "``id``", to be later
126 recordDecl recordDecl and cxxRecordDecl156 recordDecl() previously matched AST nodes of type CXXRecordDecl, but now
32 cxxMethodDecl(hasParent(recordDecl(hasName("C")))))); in TEST()
40 EXPECT_FALSE(Verifier.match("int i;", recordDecl())); in TEST()
333 REGISTER_MATCHER(recordDecl); in RegistryMaps()
3137 RecordDecl *recordDecl = recordType->getDecl(); in classifyPointerDeclarator() local3142 isCFError = (S.CFError == recordDecl); in classifyPointerDeclarator()3146 if (recordDecl->getTagKind() == TTK_Struct && numNormalPointers > 0) { in classifyPointerDeclarator()3147 if (auto bridgeAttr = recordDecl->getAttr<ObjCBridgeAttr>()) { in classifyPointerDeclarator()3149 S.CFError = recordDecl; in classifyPointerDeclarator()
319 RecordDecl> recordDecl; variable