Searched refs:Protocols (Results 1 - 18 of 18) sorted by relevance

/external/clang/lib/AST/
H A DDeclPrinter.cpp964 // Protocols?
965 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols(); local
966 if (!Protocols.empty()) {
967 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
968 E = Protocols.end(); I != E; ++I)
969 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1001 // Protocols?
1002 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); local
1003 if (!Protocols.empty()) {
1005 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols
[all...]
H A DASTContext.cpp1702 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
1709 Protocols.insert(Proto->getCanonicalDecl());
1712 Protocols.insert((*P)->getCanonicalDecl());
1713 CollectInheritedProtocols(*P, Protocols);
1722 CollectInheritedProtocols(*Cat, Protocols);
1727 CollectInheritedProtocols(SD, Protocols);
1734 Protocols.insert(Proto->getCanonicalDecl());
1737 CollectInheritedProtocols(*P, Protocols);
1743 Protocols.insert(Proto->getCanonicalDecl());
1746 CollectInheritedProtocols(*P, Protocols);
1701 CollectInheritedProtocols(const Decl *CDecl, llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) argument
3282 areSortedAndUniqued(ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) argument
3296 SortAndUniqueProtocols(ObjCProtocolDecl **Protocols, unsigned &NumProtocols) argument
3312 getObjCObjectType(QualType BaseType, ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) const argument
6503 SmallVector<ObjCProtocolDecl *, 8> Protocols; local
[all...]
H A DASTImporter.cpp1768 SmallVector<ObjCProtocolDecl *, 4> Protocols;
1776 Protocols.push_back(Protocol);
1780 Protocols.data(),
1781 Protocols.size());
3307 SmallVector<ObjCProtocolDecl *, 4> Protocols; local
3319 Protocols.push_back(ToProto);
3324 ToCategory->setProtocolList(Protocols.data(), Protocols.size(),
3361 SmallVector<ObjCProtocolDecl *, 4> Protocols; local
3373 Protocols
3490 SmallVector<ObjCProtocolDecl *, 4> Protocols; local
[all...]
H A DDeclObjC.cpp413 const ObjCList<ObjCProtocolDecl> &Protocols = local
415 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
416 E = Protocols.end(); I != E; ++I)
H A DType.cpp480 ObjCProtocolDecl * const *Protocols,
489 memcpy(getProtocolStorage(), Protocols, local
2009 ObjCProtocolDecl * const *Protocols,
2013 ID.AddPointer(Protocols[i]);
479 ObjCObjectType(QualType Canonical, QualType Base, ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) argument
2007 Profile(llvm::FoldingSetNodeID &ID, QualType BaseType, ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) argument
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp410 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
426 llvm::Constant *Protocols,
1568 llvm::Constant *Protocols,
1624 Elements.push_back(llvm::ConstantExpr::getBitCast(Protocols, PtrTy));
1678 llvm::Constant *CGObjCGNU::GenerateProtocolList(ArrayRef<std::string>Protocols){
1680 Protocols.size());
1687 for (const std::string *iter = Protocols.begin(), *endIter = Protocols.end();
1705 Elements.push_back(llvm::ConstantInt::get(LongTy, Protocols.size()));
1726 // Protocols ar
1559 GenerateClassStructure( llvm::Constant *MetaClass, llvm::Constant *SuperClass, unsigned info, const char *Name, llvm::Constant *Version, llvm::Constant *InstanceSize, llvm::Constant *IVars, llvm::Constant *Methods, llvm::Constant *Protocols, llvm::Constant *IvarOffsets, llvm::Constant *Properties, llvm::Constant *StrongIvarBitmap, llvm::Constant *WeakIvarBitmap, bool isMeta) argument
1758 SmallVector<std::string, 16> Protocols; local
2034 SmallVector<std::string, 16> Protocols; local
2270 SmallVector<std::string, 16> Protocols; local
[all...]
H A DCGObjCMac.cpp876 /// Protocols - Protocols for which an objc_protocol structure has
879 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols; member in class:__anon3736::CGObjCCommonMac
881 /// DefinedProtocols - Protocols which have actually been
1116 llvm::Constant *Protocols,
2553 if (Protocols.count(PD->getIdentifier()))
2577 llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()];
2661 Protocols[PD->getIdentifier()] = Entry;
2669 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
3060 llvm::Constant *Protocols local
3152 EmitMetaClass(const ObjCImplementationDecl *ID, llvm::Constant *Protocols, ArrayRef<llvm::Constant*> Methods) argument
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp884 // Protocols are in distinct namespaces from everything else.
4865 const ObjCList<ObjCProtocolDecl> &Protocols local
4867 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4868 E = Protocols.end();
4898 const ObjCList<ObjCProtocolDecl> &Protocols local
4900 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4901 E = Protocols.end();
5755 void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, argument
5768 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first,
5769 Protocols[
6129 const ObjCList<ObjCProtocolDecl> &Protocols local
6155 const ObjCList<ObjCProtocolDecl> &Protocols local
6178 const ObjCList<ObjCProtocolDecl> &Protocols local
[all...]
H A DSemaDeclObjC.cpp714 /// protocol declarations in its 'Protocols' argument.
719 SmallVectorImpl<Decl *> &Protocols) {
751 Protocols.push_back(PDecl);
871 // Protocols in the class extension belong to the class.
716 FindProtocolDeclaration(bool WarnOnDeclarations, const IdentifierLocPair *ProtocolId, unsigned NumProtocols, SmallVectorImpl<Decl *> &Protocols) argument
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp708 SmallVector<ObjCProtocolDecl *, 16> Protocols; local
709 Protocols.reserve(NumProtocols);
711 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
716 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
721 Protocols.clear();
722 Protocols.reserve(NumProtocols);
724 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
725 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp5338 const ObjCList<ObjCProtocolDecl> &Protocols,
5341 if (Protocols.empty()) return;
5343 for (unsigned i = 0; i != Protocols.size(); i++)
5344 RewriteObjCProtocolMetaData(Protocols[i], prefix, ClassName, Result);
5357 Result += utostr(Protocols.size());
5364 Result += utostr(Protocols.size());
5368 Result += Protocols[0]->getNameAsString();
5371 for (unsigned i = 1; i != Protocols.size(); i++) {
5373 Result += Protocols[i]->getNameAsString();
5499 // Protocols reference
5337 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
[all...]
H A DRewriteModernObjC.cpp7204 const ObjCList<ObjCProtocolDecl> &Protocols,
7207 if (Protocols.empty()) return;
7209 for (unsigned i = 0; i != Protocols.size(); i++)
7210 RewriteObjCProtocolMetaData(Protocols[i], Result);
7226 Result += utostr(Protocols.size());
7233 Result += utostr(Protocols.size());
7237 Result += Protocols[0]->getNameAsString();
7240 for (unsigned i = 1; i != Protocols.size(); i++) {
7242 Result += Protocols[i]->getNameAsString();
7321 // Protocols reference
7203 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
7324 const ObjCList<ObjCProtocolDecl> &Protocols = CDecl->getReferencedProtocols(); local
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h1085 ObjCProtocolDecl * const *Protocols,
1645 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols);
H A DType.h4202 ObjCProtocolDecl * const *Protocols, unsigned NumProtocols);
4279 ObjCProtocolDecl * const *Protocols,
4281 : ObjCObjectType(Canonical, Base, Protocols, NumProtocols) {}
4278 ObjCObjectTypeImpl(QualType Canonical, QualType Base, ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) argument
/external/webkit/Tools/Scripts/
H A Dprepare-ChangeLog275 if (`curl --version | grep ^Protocols` !~ /\bhttps\b/) {
/external/clang/lib/Parse/
H A DParseObjc.cpp1170 ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols, argument
1210 Protocols);
/external/clang/include/clang/Sema/
H A DSema.h6260 SmallVectorImpl<Decl *> &Protocols);
7227 void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
/external/iproute2/doc/
H A Dip-cref.tex2644 \bibitem{IOS} ``Cisco IOS Release 12.0 Network Protocols

Completed in 606 milliseconds