HomeSort by: relevance | last modified time | path
    Searched defs:classDecl (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 94 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl();
95 return ClassDecl && ClassDecl->mayBeDynamicClass();
99 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl();
100 return !ClassDecl || ClassDecl->mayBeNonDynamicClass();
1604 ObjCInterfaceDecl *classDecl = getInterface();
1605 if (!classDecl) {
1611 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType();
1641 ObjCTypeParamList *typeParams = classDecl->getTypeParamList()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 5040 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl();
5041 assert(classDecl);
5042 return classDecl->getDestructor();
5048 const CXXRecordDecl *classDecl =
5050 return classDecl->getDestructor();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 605 void GenerateClass(const ObjCImplementationDecl *ClassDecl) override;
1706 ObjCInterfaceDecl *classDecl =
1708 std::string className = classDecl->getNameAsString();
1760 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true));
1813 if (classDecl->all_declared_ivar_begin() == nullptr)
1817 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD;
1836 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD;
1851 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD);
1862 classDecl->getVisibility() == HiddenVisibility) ?
1922 auto RuntimeProtocols = GetRuntimeProtocolList(classDecl->protocol_begin()
    [all...]

Completed in 74 milliseconds