Searched refs:LHSOPT (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/AST/
H A DASTContext.cpp6553 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, argument
6555 const ObjCObjectType* LHS = LHSOPT->getObjectType();
6564 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6569 return ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
6585 const ObjCObjectPointerType *LHSOPT,
6588 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
6591 if (LHSOPT->isObjCBuiltinType()) {
6595 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
6596 return ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
6600 const ObjCInterfaceType* LHS = LHSOPT
6584 canAssignObjCInterfacesInBlockPointer( const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT, bool BlockReturnType) argument
6620 getIntersectionOfProtocols(ASTContext &Context, const ObjCObjectPointerType *LHSOPT, const ObjCObjectPointerType *RHSOPT, SmallVectorImpl<ObjCProtocolDecl *> &IntersectionOfProtocols) argument
6763 const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>(); local
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h2020 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
2025 const ObjCObjectPointerType *LHSOPT,
2029 QualType areCommonBaseCompatible(const ObjCObjectPointerType *LHSOPT,
/external/clang/lib/Sema/
H A DSemaExpr.cpp5855 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); local
5872 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
5874 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
5875 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
5887 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())

Completed in 206 milliseconds