Home
last modified time | relevance | path

Searched refs:Protocols (Results 1 – 25 of 38) sorted by relevance

12

/external/chromium_org/ppapi/api/
Dppb_url_response_info.idl26 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2">
37 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3">
46 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3">
54 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1.1">
63 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1">
72 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14">
Dppb_url_request_info.idl28 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html">HTTP
37 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html"Header
/external/clang/lib/AST/
DDeclPrinter.cpp988 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols(); in VisitObjCInterfaceDecl() local
989 if (!Protocols.empty()) { in VisitObjCInterfaceDecl()
990 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in VisitObjCInterfaceDecl()
991 E = Protocols.end(); I != E; ++I) in VisitObjCInterfaceDecl()
992 Out << (I == Protocols.begin() ? '<' : ',') << **I; in VisitObjCInterfaceDecl()
1026 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); in VisitObjCProtocolDecl() local
1027 if (!Protocols.empty()) { in VisitObjCProtocolDecl()
1029 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in VisitObjCProtocolDecl()
1030 E = Protocols.end(); I != E; ++I) in VisitObjCProtocolDecl()
1031 Out << (I == Protocols.begin() ? '<' : ',') << **I; in VisitObjCProtocolDecl()
DASTContext.cpp1789 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) { in CollectInheritedProtocols() argument
1796 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1799 Protocols.insert((*P)->getCanonicalDecl()); in CollectInheritedProtocols()
1800 CollectInheritedProtocols(*P, Protocols); in CollectInheritedProtocols()
1809 CollectInheritedProtocols(*Cat, Protocols); in CollectInheritedProtocols()
1814 CollectInheritedProtocols(SD, Protocols); in CollectInheritedProtocols()
1821 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1824 CollectInheritedProtocols(*P, Protocols); in CollectInheritedProtocols()
1830 Protocols.insert(Proto->getCanonicalDecl()); in CollectInheritedProtocols()
1833 CollectInheritedProtocols(*P, Protocols); in CollectInheritedProtocols()
[all …]
DASTImporter.cpp1788 SmallVector<ObjCProtocolDecl *, 4> Protocols; in VisitObjCObjectType() local
1796 Protocols.push_back(Protocol); in VisitObjCObjectType()
1800 Protocols.data(), in VisitObjCObjectType()
1801 Protocols.size()); in VisitObjCObjectType()
3347 SmallVector<ObjCProtocolDecl *, 4> Protocols; in VisitObjCCategoryDecl() local
3359 Protocols.push_back(ToProto); in VisitObjCCategoryDecl()
3364 ToCategory->setProtocolList(Protocols.data(), Protocols.size(), in VisitObjCCategoryDecl()
3401 SmallVector<ObjCProtocolDecl *, 4> Protocols; in ImportDefinition() local
3413 Protocols.push_back(ToProto); in ImportDefinition()
3418 To->setProtocolList(Protocols.data(), Protocols.size(), in ImportDefinition()
[all …]
DType.cpp464 ObjCProtocolDecl * const *Protocols, in ObjCObjectType() argument
473 memcpy(getProtocolStorage(), Protocols, in ObjCObjectType()
2049 ObjCProtocolDecl * const *Protocols, in Profile() argument
2053 ID.AddPointer(Protocols[i]); in Profile()
DDeclObjC.cpp495 const ObjCList<ObjCProtocolDecl> &Protocols = in lookupMethod() local
497 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in lookupMethod()
498 E = Protocols.end(); I != E; ++I) in lookupMethod()
/external/openssl/apps/
Ddh2048.pem10 These are the 2048 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh512.pem6 These are the 512 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh1024.pem7 These are the 1024 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh4096.pem15 These are the 4096 bit DH parameters from "Assigned Number for SKIP Protocols"
/external/chromium_org/third_party/openssl/openssl/apps/
Ddh2048.pem10 These are the 2048 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh512.pem6 These are the 512 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh1024.pem7 These are the 1024 bit DH parameters from "Assigned Number for SKIP Protocols"
Ddh4096.pem15 These are the 4096 bit DH parameters from "Assigned Number for SKIP Protocols"
/external/chromium_org/chrome_frame/
Dchrome_protocol.rgs30 NoRemove Protocols {
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp410 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
426 llvm::Constant *Protocols,
1593 llvm::Constant *Protocols, in GenerateClassStructure() argument
1649 Elements.push_back(llvm::ConstantExpr::getBitCast(Protocols, PtrTy)); in GenerateClassStructure()
1703 llvm::Constant *CGObjCGNU::GenerateProtocolList(ArrayRef<std::string>Protocols){ in GenerateProtocolList() argument
1705 Protocols.size()); in GenerateProtocolList()
1712 for (const std::string *iter = Protocols.begin(), *endIter = Protocols.end(); in GenerateProtocolList()
1730 Elements.push_back(llvm::ConstantInt::get(LongTy, Protocols.size())); in GenerateProtocolList()
1783 SmallVector<std::string, 16> Protocols; in GenerateProtocol() local
1786 Protocols.push_back((*PI)->getNameAsString()); in GenerateProtocol()
[all …]
DCGObjCMac.cpp879 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols; member in __anon8dffa1430111::CGObjCCommonMac
1116 llvm::Constant *Protocols,
2553 if (Protocols.count(PD->getIdentifier())) in GenerateProtocol()
2577 llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; in GetOrEmitProtocol()
2661 Protocols[PD->getIdentifier()] = Entry; in GetOrEmitProtocol()
2669 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; in GetOrEmitProtocolRef()
3060 llvm::Constant *Protocols = in GenerateClass() local
3103 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods); in GenerateClass()
3126 Values[ 9] = Protocols; in GenerateClass()
3153 llvm::Constant *Protocols, in EmitMetaClass() argument
[all …]
/external/chromium/net/tools/spdyshark/
DREADME48 Exand "Protocols" in the left pane of the preferences dialog and
/external/clang/lib/Sema/
DSemaCodeComplete.cpp4884 const ObjCList<ObjCProtocolDecl> &Protocols in AddObjCMethods() local
4886 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in AddObjCMethods()
4887 E = Protocols.end(); in AddObjCMethods()
4916 const ObjCList<ObjCProtocolDecl> &Protocols in AddObjCMethods() local
4918 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in AddObjCMethods()
4919 E = Protocols.end(); in AddObjCMethods()
5762 void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, in CodeCompleteObjCProtocolReferences() argument
5775 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first, in CodeCompleteObjCProtocolReferences()
5776 Protocols[I].second)) in CodeCompleteObjCProtocolReferences()
6136 const ObjCList<ObjCProtocolDecl> &Protocols in FindImplementableMethods() local
[all …]
/external/clang/lib/Serialization/
DASTReaderDecl.cpp737 SmallVector<ObjCProtocolDecl *, 16> Protocols; in VisitObjCInterfaceDecl() local
738 Protocols.reserve(NumProtocols); in VisitObjCInterfaceDecl()
740 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); in VisitObjCInterfaceDecl()
745 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(), in VisitObjCInterfaceDecl()
750 Protocols.clear(); in VisitObjCInterfaceDecl()
751 Protocols.reserve(NumProtocols); in VisitObjCInterfaceDecl()
753 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); in VisitObjCInterfaceDecl()
754 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols, in VisitObjCInterfaceDecl()
/external/clang/lib/ARCMigrate/
DObjCMT.cpp377 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols(); in rewriteToObjCInterfaceDecl() local
382 if (Protocols.empty()) { in rewriteToObjCInterfaceDecl()
/external/valgrind/main/docs/internals/
Dxml-output-protocol4.txt6 Protocols 1 through 3 supported Memcheck only. Protocol 4 provides
17 Identification of Protocols
20 In Protocols 1 through 3, a <protocolversion>INT<protocolversion>
/external/ppp/pppd/plugins/radius/etc/
Ddictionary143 # Framed Protocols
/external/valgrind/main/
Ddarwin9-drd.supp380 # http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSKeyValueObserving…

12