/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjCGNU.cpp | 464 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols); 482 llvm::Constant *Protocols, 1213 SmallVector<llvm::Constant *, 16> Protocols; in GenerateCategoryProtocolList() local 1215 Protocols.push_back(GenerateProtocolRef(PI)); in GenerateCategoryProtocolList() 1216 return GenerateProtocolList(Protocols); in GenerateCategoryProtocolList() 1355 llvm::Constant *GenerateProtocolList(ArrayRef<llvm::Constant*> Protocols) { in GenerateProtocolList() argument 1357 Protocols.size()); in GenerateProtocolList() 1359 Protocols); in GenerateProtocolList() 1363 ProtocolBuilder.addInt(SizeTy, Protocols.size()); in GenerateProtocolList() 1397 SmallVector<llvm::Constant*, 16> Protocols; in GenerateProtocolRef() local [all …]
|
H A D | CGObjCMac.cpp | 900 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols; member in __anonb5e682970111::CGObjCCommonMac 1271 llvm::Constant *Protocols, 2982 if (Protocols.count(PD->getIdentifier())) in GenerateProtocol() 3026 llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; in GetOrEmitProtocol() 3065 Protocols[PD->getIdentifier()] = Entry; in GetOrEmitProtocol() 3073 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; in GetOrEmitProtocolRef() 3514 llvm::Constant *Protocols = in GenerateClass() local 3562 values.add(EmitMetaClass(ID, Protocols, Methods[ClassMethods])); in GenerateClass() 3581 values.add(Protocols); in GenerateClass() 3607 llvm::Constant *Protocols, in EmitMetaClass() argument [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaObjC.cpp | 381 ArrayRef<Decl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, in actOnObjCTypeArgsAndProtocolQualifiers() argument 412 llvm::ArrayRef((ObjCProtocolDecl *const *)Protocols.data(), in actOnObjCTypeArgsAndProtocolQualifiers() 413 Protocols.size()), in actOnObjCTypeArgsAndProtocolQualifiers() 436 assert(OTPTL.getNumProtocols() == Protocols.size()); in actOnObjCTypeArgsAndProtocolQualifiers() 439 for (unsigned i = 0, n = Protocols.size(); i != n; ++i) in actOnObjCTypeArgsAndProtocolQualifiers() 463 assert(ObjCObjectTL.getNumProtocols() == Protocols.size()); in actOnObjCTypeArgsAndProtocolQualifiers() 466 for (unsigned i = 0, n = Protocols.size(); i != n; ++i) in actOnObjCTypeArgsAndProtocolQualifiers() 486 ArrayRef<ObjCProtocolDecl *> Protocols, in BuildObjCTypeParamType() argument 491 if (!Protocols.empty()) { in BuildObjCTypeParamType() 493 Result = Context.applyObjCProtocolQualifiers(Result, Protocols, HasError); in BuildObjCTypeParamType() [all …]
|
H A D | SemaCodeComplete.cpp | 7677 const ObjCList<ObjCProtocolDecl> &Protocols = in AddObjCMethods() local 7679 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in AddObjCMethods() 7680 E = Protocols.end(); in AddObjCMethods() 7702 const ObjCList<ObjCProtocolDecl> &Protocols = in AddObjCMethods() local 7704 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in AddObjCMethods() 7705 E = Protocols.end(); in AddObjCMethods() 8558 ArrayRef<IdentifierLocPair> Protocols) { in CodeCompleteObjCProtocolReferences() argument 8569 for (const IdentifierLocPair &Pair : Protocols) in CodeCompleteObjCProtocolReferences() 8939 const ObjCList<ObjCProtocolDecl> &Protocols = in FindImplementableMethods() local 8941 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in FindImplementableMethods() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | JSONNodeDumper.cpp | 1133 llvm::json::Array Protocols; in VisitObjCCategoryDecl() local 1135 Protocols.push_back(createBareDeclRef(P)); in VisitObjCCategoryDecl() 1136 if (!Protocols.empty()) in VisitObjCCategoryDecl() 1137 JOS.attribute("protocols", std::move(Protocols)); in VisitObjCCategoryDecl() 1149 llvm::json::Array Protocols; in VisitObjCProtocolDecl() local 1151 Protocols.push_back(createBareDeclRef(P)); in VisitObjCProtocolDecl() 1152 if (!Protocols.empty()) in VisitObjCProtocolDecl() 1153 JOS.attribute("protocols", std::move(Protocols)); in VisitObjCProtocolDecl() 1161 llvm::json::Array Protocols; in VisitObjCInterfaceDecl() local 1163 Protocols.push_back(createBareDeclRef(P)); in VisitObjCInterfaceDecl() [all …]
|
H A D | DeclPrinter.cpp | 1488 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols(); in VisitObjCInterfaceDecl() local 1489 if (!Protocols.empty()) { in VisitObjCInterfaceDecl() 1490 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in VisitObjCInterfaceDecl() 1491 E = Protocols.end(); I != E; ++I) in VisitObjCInterfaceDecl() 1492 Out << (I == Protocols.begin() ? '<' : ',') << **I; in VisitObjCInterfaceDecl() 1526 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); in VisitObjCProtocolDecl() local 1527 if (!Protocols.empty()) { in VisitObjCProtocolDecl() 1529 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), in VisitObjCProtocolDecl() 1530 E = Protocols.end(); I != E; ++I) in VisitObjCProtocolDecl() 1531 Out << (I == Protocols.begin() ? '<' : ',') << **I; in VisitObjCProtocolDecl()
|
H A D | ODRHash.cpp | 1090 auto Protocols = T->getProtocols(); in VisitObjCObjectType() local 1091 ID.AddInteger(Protocols.size()); in VisitObjCObjectType() 1092 for (auto *Protocol : Protocols) { in VisitObjCObjectType() 1108 auto Protocols = T->getProtocols(); in VisitObjCTypeParamType() local 1109 ID.AddInteger(Protocols.size()); in VisitObjCTypeParamType() 1110 for (auto *Protocol : Protocols) { in VisitObjCTypeParamType()
|
H A D | ASTContext.cpp | 2633 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) { in CollectInheritedProtocols() argument 2638 CollectInheritedProtocols(Proto, Protocols); in CollectInheritedProtocols() 2643 CollectInheritedProtocols(Cat, Protocols); in CollectInheritedProtocols() 2647 CollectInheritedProtocols(SD, Protocols); in CollectInheritedProtocols() 2652 CollectInheritedProtocols(Proto, Protocols); in CollectInheritedProtocols() 2656 if (!Protocols.insert( in CollectInheritedProtocols() 2661 CollectInheritedProtocols(Proto, Protocols); in CollectInheritedProtocols() 5663 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) { in areSortedAndUniqued() argument 5664 if (Protocols.empty()) return true; in areSortedAndUniqued() 5666 if (Protocols[0]->getCanonicalDecl() != Protocols[0]) in areSortedAndUniqued() [all …]
|
H A D | ASTImporter.cpp | 1721 SmallVector<ObjCProtocolDecl *, 4> Protocols; in VisitObjCObjectType() local 1724 Protocols.push_back(*ProtocolOrErr); in VisitObjCObjectType() 1731 Protocols, in VisitObjCObjectType() 4938 SmallVector<ObjCProtocolDecl *, 4> Protocols; in VisitObjCCategoryDecl() local 4947 Protocols.push_back(*ToProtoOrErr); in VisitObjCCategoryDecl() 4958 ToCategory->setProtocolList(Protocols.data(), Protocols.size(), in VisitObjCCategoryDecl() 4994 SmallVector<ObjCProtocolDecl *, 4> Protocols; in ImportDefinition() local 5003 Protocols.push_back(*ToProtoOrErr); in ImportDefinition() 5015 To->setProtocolList(Protocols.data(), Protocols.size(), in ImportDefinition() 5473 SmallVector<ObjCProtocolDecl *, 4> Protocols; in ImportDefinition() local [all …]
|
H A D | DeclObjC.cpp | 735 const ObjCList<ObjCProtocolDecl> &Protocols = in lookupMethod() local 737 for (auto *Protocol : Protocols) in lookupMethod()
|
/freebsd/lib/libfetch/ |
H A D | http.errors | 5 101 OK Switching Protocols
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 92 ArrayRef<Decl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, 98 ArrayRef<ObjCProtocolDecl *> Protocols, 107 SourceLocation ProtocolLAngleLoc, ArrayRef<ObjCProtocolDecl *> Protocols, 327 SmallVectorImpl<Decl *> &Protocols);
|
H A D | SemaCodeCompletion.h | 194 CodeCompleteObjCProtocolReferences(ArrayRef<IdentifierLocPair> Protocols);
|
/freebsd/contrib/ntp/html/scripts/ |
H A D | external.txt | 10 …w.eecis.udel.edu/~mills/onwire.html'>Analysis and Simulation of the NTP On-Wire Protocols</a></li>\
|
/freebsd/sys/contrib/edk2/ |
H A D | MdePkg.dec | 976 [Protocols] 984 # Protocols defined in PI1.0. 1042 # Protocols defined in PI 1.2. 1169 # Protocols defined in PI 1.2.1 1189 # Protocols defined in PI 1.3. 1208 # Protocols defined in PI 1.5. 1278 # Protocols defined in PI 1.6. 1312 # Protocols defined in PI 1.7. 1319 # Protocols defined in UEFI2.1/UEFI2.0/EFI1.1 1588 # Protocols defined in UEFI2.2 [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
H A D | ExtractAPIVisitor.h | 149 ObjCInterfaceDecl::protocol_range Protocols); 1455 ObjCInterfaceDecl::protocol_range Protocols) { in recordObjCProtocols() argument 1456 for (const auto *Protocol : Protocols) in recordObjCProtocols() 1457 Container->Protocols.emplace_back(createSymbolReferenceForDecl(*Protocol)); in recordObjCProtocols()
|
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/ |
H A D | SymbolGraphSerializer.cpp | 907 for (const auto &Protocol : Record->Protocols) in visitObjCContainerRecord() 953 for (const auto &Protocol : Record->Protocols) in visitObjCCategoryRecord()
|
/freebsd/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesYAMLCompiler.cpp | 512 ClassesSeq Protocols; member 526 IO.mapOptional("Protocols", TLI.Protocols); in mapTopLevelItems() 990 for (const auto &Protocol : TLItems.Protocols) { in convertTopLevelItems()
|
/freebsd/lib/libc/net/ |
H A D | protocols | 145 manet 138 MANET # MANET Protocols (RFC5498)
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | arm,scpi.txt | 5 ("ARM Compute Subsystem SCP: Message Interface Protocols")[0] can be used
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 1249 SmallVector<ObjCProtocolDecl *, 16> Protocols; in ReadObjCDefinitionData() local 1250 Protocols.reserve(NumProtocols); in ReadObjCDefinitionData() 1252 Protocols.push_back(readDeclAs<ObjCProtocolDecl>()); in ReadObjCDefinitionData() 1257 Data.ReferencedProtocols.set(Protocols.data(), NumProtocols, ProtoLocs.data(), in ReadObjCDefinitionData() 1262 Protocols.clear(); in ReadObjCDefinitionData() 1263 Protocols.reserve(NumProtocols); in ReadObjCDefinitionData() 1265 Protocols.push_back(readDeclAs<ObjCProtocolDecl>()); in ReadObjCDefinitionData() 1266 Data.AllReferencedProtocols.set(Protocols.data(), NumProtocols, in ReadObjCDefinitionData()
|
/freebsd/contrib/mandoc/ |
H A D | lib.in | 116 LINE("librumpclient", "Clientside Stubs for rump Kernel Remote Protocols (librumpclient, \\-lrumpcl…
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc4013.txt | 187 handling (such as case folding). Protocols (or applications of those
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTContext.h | 1745 ObjCProtocolDecl * const *Protocols, 2598 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols);
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 662 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols(); in rewriteToObjCInterfaceDecl() local 667 if (Protocols.empty()) { in rewriteToObjCInterfaceDecl()
|