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

  /external/clang/test/PCH/
cxx-chain-function-template.cpp 6 struct CXXRecordDecl { CXXRecordDecl(int); };
22 cast<CXXRecordDecl>(1.0f);
28 cast<CXXRecordDecl>(1.0f);
  /external/clang/lib/AST/
DeclCXX.cpp 30 CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
50 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
52 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
57 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
60 CXXRecordDecl* PrevDecl,
62 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 34 class CXXRecordDecl;
262 /// CXXRecordDecl - Represents a C++ struct/union/class.
265 class CXXRecordDecl : public RecordDecl {
270 DefinitionData(CXXRecordDecl *D);
506 CXXRecordDecl *Definition;
559 CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
561 IdentifierInfo *Id, CXXRecordDecl *PrevDecl);
582 virtual CXXRecordDecl *getCanonicalDecl() {
583 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
585 virtual const CXXRecordDecl *getCanonicalDecl() const
    [all...]

Completed in 165 milliseconds