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

  /external/clang/lib/AST/
DeclObjC.cpp 125 // Look through protocols.
139 // Look through protocols.
155 /// with name 'PropertyId' in the primary class; including those in protocols
172 // Look through protocols.
196 // This is O(n*m). But it is extremely rare and number of protocols in
336 // Didn't find one yet - look through protocols.
350 // Didn't find one yet - look through protocols.
351 const ObjCList<ObjCProtocolDecl> &Protocols =
353 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
354 E = Protocols.end(); I != E; ++I
    [all...]
DeclPrinter.cpp 910 // Protocols?
911 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
912 if (!Protocols.empty()) {
913 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
914 E = Protocols.end(); I != E; ++I)
915 Out << (I == Protocols.begin() ? '<' : ',') << **I;
918 if (!Protocols.empty())
    [all...]
Type.cpp 425 ObjCProtocolDecl * const *Protocols,
434 memcpy(getProtocolStorage(), Protocols,
    [all...]
ASTImporter.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 697 // Read the directly referenced protocols and their SourceLocations.
699 SmallVector<ObjCProtocolDecl *, 16> Protocols;
700 Protocols.reserve(NumProtocols);
702 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
707 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
710 // Read the transitive closure of protocols referenced by this class.
712 Protocols.clear();
713 Protocols.reserve(NumProtocols);
715 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
716 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 262 /// All of the protocols that have been declared.
329 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
362 /// Generates a list of referenced protocols. Classes, categories, and
363 /// protocols all use this structure.
364 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
365 /// To ensure that all protocols are seen by the runtime, we add a category on
367 /// protocols. This is a horribly ugly hack, but it allows us to collect all
368 /// of the protocols without changing the ABI.
380 llvm::Constant *Protocols,
    [all...]
CGObjCMac.cpp 801 /// Protocols - Protocols for which an objc_protocol structure has
804 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
806 /// DefinedProtocols - Protocols which have actually been
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 833 // Protocols are in distinct namespaces from everything else.
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]

Completed in 554 milliseconds