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

  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 317 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl();
318 assert(RecordDecl && "Only CXXRecordDecls should have destructors");
319 const CXXDestructorDecl *DtorDecl = RecordDecl->getDestructor();
  /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", std::string("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/tools/libclang/
CXType.cpp 755 static long long visitRecordForValidation(const RecordDecl *RD) {
764 if (const RecordDecl *Child = ChildType->getDecl()) {
780 const RecordDecl *RD =
781 dyn_cast_or_null<RecordDecl>(cxcursor::getCursorDecl(PC));
804 RecordDecl::lookup_const_result Res = RD->lookup(FieldName);
878 const CXXRecordDecl *RecordDecl = T->getAsCXXRecordDecl();
879 if (!RecordDecl)
882 dyn_cast<ClassTemplateSpecializationDecl>(RecordDecl);
892 const CXXRecordDecl *RecordDecl = T->getAsCXXRecordDecl();
893 if (!RecordDecl)
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 463 milliseconds