Home
last modified time | relevance | path

Searched refs:ClassInterface (Results 1 – 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DDeclObjC.cpp1596 ObjCInterfaceDecl *ClassInterface, in Create() argument
1600 if (ClassInterface && ClassInterface->hasDefinition()) in Create()
1601 ClassInterface = ClassInterface->getDefinition(); in Create()
1602 return new (C) ObjCCategoryImplDecl(DC, Id, ClassInterface, in Create()
1643 ClassInterface = IFace; in setClassInterface()
1689 ObjCInterfaceDecl *ClassInterface, in Create() argument
1696 if (ClassInterface && ClassInterface->hasDefinition()) in Create()
1697 ClassInterface = ClassInterface->getDefinition(); in Create()
1698 return new (C) ObjCImplementationDecl(DC, ClassInterface, SuperDecl, in Create()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DDeclObjC.h1559 ObjCInterfaceDecl *ClassInterface; variable
1581 ClassInterface(IDecl), NextClassCategory(0), in ObjCContainerDecl()
1598 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; } in getClassInterface()
1599 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; } in getClassInterface()
1670 ObjCInterfaceDecl *ClassInterface; variable
1679 ClassInterface(classInterface) {} in ObjCImplDecl()
1682 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; } in getClassInterface()
1683 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; } in getClassInterface()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp852 CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx); in VisitObjCCategoryDecl()