HomeSort by relevance Sort by last modified time
    Searched defs:Protocols (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/AST/
DeclPrinter.cpp 990 // Protocols?
991 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
992 if (!Protocols.empty()) {
993 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
994 E = Protocols.end(); I != E; ++I)
995 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1028 // Protocols?
1029 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1030 if (!Protocols.empty()) {
1032 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin()
    [all...]
DeclObjC.cpp 97 /// method was found in the class, its protocols, its super classes or categories.
132 // Also look into protocols, for a user declared instance method.
146 for (const auto *PI : PD->protocols())
202 for (const auto *I : PID->protocols())
216 // Look through protocols.
228 // Look through protocols.
230 for (const auto *I : OCD->protocols())
242 /// with name 'PropertyId' in the primary class; including those in protocols
259 // Look through protocols.
314 // This is O(n*m). But it is extremely rare and number of protocols i
    [all...]
Type.cpp 472 ObjCProtocolDecl * const *Protocols,
481 memcpy(getProtocolStorage(), Protocols,
    [all...]
ASTImporter.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 564 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols();
569 if (Protocols.empty()) {
703 // Find all implicit conforming protocols for this class
730 // Further reduce number of conforming protocols. If protocol P1 is in the list
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 308 /// All of the protocols that have been declared.
375 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
408 /// Generates a list of referenced protocols. Classes, categories, and
409 /// protocols all use this structure.
410 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
411 /// To ensure that all protocols are seen by the runtime, we add a category on
413 /// protocols. This is a horribly ugly hack, but it allows us to collect all
414 /// of the protocols without changing the ABI.
426 llvm::Constant *Protocols,
    [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 882 // Protocols are in distinct namespaces from everything else.
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 788 // Read the directly referenced protocols and their SourceLocations.
790 SmallVector<ObjCProtocolDecl *, 16> Protocols;
791 Protocols.reserve(NumProtocols);
793 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
798 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
801 // Read the transitive closure of protocols referenced by this class.
803 Protocols.clear();
804 Protocols.reserve(NumProtocols);
806 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
807 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]

Completed in 485 milliseconds