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

/external/clang/lib/AST/
H A DASTContext.cpp5981 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, argument
5983 const ObjCObjectType* LHS = LHSOPT->getObjectType();
5992 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
5997 return ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
6013 const ObjCObjectPointerType *LHSOPT,
6016 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
6019 if (LHSOPT->isObjCBuiltinType()) {
6023 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
6024 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6028 const ObjCInterfaceType* LHS = LHSOPT
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
6202 const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>(); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp5063 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); local
5080 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
5082 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
5083 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
5095 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())

Completed in 51 milliseconds