Searched defs:RHSOPT (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DASTContext.cpp5982 const ObjCObjectPointerType *RHSOPT) {
5984 const ObjCObjectType* RHS = RHSOPT->getObjectType();
5993 QualType(RHSOPT,0),
5998 QualType(RHSOPT,0));
6014 const ObjCObjectPointerType *RHSOPT,
6016 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
6020 return RHSOPT->isObjCBuiltinType() || RHSOPT->isObjCQualifiedIdType();
6023 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
6025 QualType(RHSOPT,
5981 canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT) argument
6012 canAssignObjCInterfacesInBlockPointer( const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT, bool BlockReturnType) argument
6048 getIntersectionOfProtocols(ASTContext &Context, const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT, SmallVectorImpl<ObjCProtocolDecl *> &IntersectionOfProtocols) argument
6203 const ObjCObjectPointerType *RHSOPT = RHS->getAs<ObjCObjectPointerType>(); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp5064 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); local
5080 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
5081 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
5082 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
5095 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())

Completed in 190 milliseconds