• Home
  • Raw
  • Download

Lines Matching refs:Protocols

1857                           llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {  in CollectInheritedProtocols()  argument
1862 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1864 Protocols.insert(P->getCanonicalDecl()); in CollectInheritedProtocols()
1865 CollectInheritedProtocols(P, Protocols); in CollectInheritedProtocols()
1871 CollectInheritedProtocols(Cat, Protocols); in CollectInheritedProtocols()
1875 CollectInheritedProtocols(SD, Protocols); in CollectInheritedProtocols()
1880 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1882 CollectInheritedProtocols(P, Protocols); in CollectInheritedProtocols()
1886 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1888 CollectInheritedProtocols(P, Protocols); in CollectInheritedProtocols()
3530 static bool areSortedAndUniqued(ObjCProtocolDecl * const *Protocols, in areSortedAndUniqued() argument
3534 if (Protocols[0]->getCanonicalDecl() != Protocols[0]) in areSortedAndUniqued()
3538 if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 || in areSortedAndUniqued()
3539 Protocols[i]->getCanonicalDecl() != Protocols[i]) in areSortedAndUniqued()
3544 static void SortAndUniqueProtocols(ObjCProtocolDecl **Protocols, in SortAndUniqueProtocols() argument
3546 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols; in SortAndUniqueProtocols()
3549 llvm::array_pod_sort(Protocols, ProtocolsEnd, CmpProtocolNames); in SortAndUniqueProtocols()
3553 Protocols[I] = Protocols[I]->getCanonicalDecl(); in SortAndUniqueProtocols()
3556 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd); in SortAndUniqueProtocols()
3557 NumProtocols = ProtocolsEnd-Protocols; in SortAndUniqueProtocols()
3561 ObjCProtocolDecl * const *Protocols, in getObjCObjectType() argument
3570 ObjCObjectTypeImpl::Profile(ID, BaseType, Protocols, NumProtocols); in getObjCObjectType()
3578 bool ProtocolsSorted = areSortedAndUniqued(Protocols, NumProtocols); in getObjCObjectType()
3581 SmallVector<ObjCProtocolDecl*, 8> Sorted(Protocols, in getObjCObjectType()
3582 Protocols + NumProtocols); in getObjCObjectType()
3590 Protocols, NumProtocols); in getObjCObjectType()
3601 new (Mem) ObjCObjectTypeImpl(Canonical, BaseType, Protocols, NumProtocols); in getObjCObjectType()
6802 SmallVector<ObjCProtocolDecl *, 8> Protocols; in areCommonBaseCompatible() local
6803 getIntersectionOfProtocols(*this, Lptr, Rptr, Protocols); in areCommonBaseCompatible()
6806 if (!Protocols.empty()) in areCommonBaseCompatible()
6807 Result = getObjCObjectType(Result, Protocols.data(), Protocols.size()); in areCommonBaseCompatible()