HomeSort by relevance Sort by last modified time
    Searched defs:RecordDecl (Results 1 - 4 of 4) sorted by null

  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 218 specifiesType(hasDeclaration(recordDecl(hasName("A")))))))
235 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>();
246 Matcher<Decl> RecordDecl = constructMatcher(
247 "recordDecl", constructMatcher("hasName", StringRef("Foo")),
253 EXPECT_FALSE(matches("int Foo;", RecordDecl));
254 EXPECT_TRUE(matches("class Foo {};", RecordDecl));
255 EXPECT_FALSE(matches("void Foo(){};", RecordDecl));
316 "recordDecl",
319 constructMatcher("recordDecl",
348 constructMatcher("recordDecl",
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 373 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl();
374 assert(RecordDecl && "Only CXXRecordDecls should have destructors");
375 const CXXDestructorDecl *DtorDecl = RecordDecl->getDestructor();
  /external/clang/tools/libclang/
CXType.cpp 759 static long long visitRecordForValidation(const RecordDecl *RD) {
768 if (const RecordDecl *Child = ChildType->getDecl()) {
782 const RecordDecl *RD =
783 dyn_cast_or_null<RecordDecl>(cxcursor::getCursorDecl(PC));
817 const RecordDecl *RD =
818 dyn_cast_or_null<RecordDecl>(cxcursor::getCursorDecl(PC));
821 RecordDecl::lookup_result Res = RD->lookup(FieldName);
914 const CXXRecordDecl *RecordDecl = T->getAsCXXRecordDecl();
915 if (!RecordDecl)
918 dyn_cast<ClassTemplateSpecializationDecl>(RecordDecl);
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 132 milliseconds