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 772 static long long visitRecordForValidation(const RecordDecl *RD) {
781 if (const RecordDecl *Child = ChildType->getDecl()) {
795 const RecordDecl *RD =
796 dyn_cast_or_null<RecordDecl>(cxcursor::getCursorDecl(PC));
830 const RecordDecl *RD =
831 dyn_cast_or_null<RecordDecl>(cxcursor::getCursorDecl(PC));
834 RecordDecl::lookup_result Res = RD->lookup(FieldName);
927 const CXXRecordDecl *RecordDecl = T->getAsCXXRecordDecl();
928 if (!RecordDecl)
931 dyn_cast<ClassTemplateSpecializationDecl>(RecordDecl);
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 125 milliseconds