Home
last modified time | relevance | path

Searched refs:OIT (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp919 if (const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>()) { in VisitType() local
921 VisitObjCInterfaceDecl(OIT->getDecl()); in VisitType()
924 if (const ObjCObjectType *OIT = T->getAs<ObjCObjectType>()) { in VisitType() local
926 VisitType(OIT->getBaseType()); in VisitType()
927 for (auto *Prot : OIT->getProtocols()) in VisitType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h241 void VisitObjCInterfaceType(const ObjCInterfaceType *OIT);
H A DASTContext.h1767 QualType getObjCObjectPointerType(QualType OIT) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp813 void JSONNodeDumper::VisitObjCInterfaceType(const ObjCInterfaceType *OIT) { in VisitObjCInterfaceType() argument
814 JOS.attribute("decl", createBareDeclRef(OIT->getDecl())); in VisitObjCInterfaceType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp4246 } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){ in EmitArraySubscriptExpr() local
4253 CharUnits InterfaceSize = getContext().getTypeSizeInChars(OIT); in EmitArraySubscriptExpr()