| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ASTSrcLocProcessor.cpp | 168 std::vector<std::string> Methods; in CaptureMethods() local 192 Methods.push_back(Node->getName().str()); in CaptureMethods() 195 return Methods; in CaptureMethods()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 3513 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool() 3517 if (!Methods.empty()) in CollectMultipleMethodsInGlobalPool() 3518 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool() 3532 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool() 3542 for (auto *M : Methods) in AreMultipleMethodsInGlobalPool() 3593 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) { in DiagnoseMultipleMethodInGlobalPool() 3607 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) && in DiagnoseMultipleMethodInGlobalPool() 3608 !isAcceptableMethodMismatch(Methods[0], Methods[I])) { in DiagnoseMultipleMethodInGlobalPool() 3624 Diag(Methods[0]->getBeginLoc(), in DiagnoseMultipleMethodInGlobalPool() 3626 << Methods[0]->getSourceRange(); in DiagnoseMultipleMethodInGlobalPool() [all …]
|
| H A D | SemaExprObjC.cpp | 2953 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local 2957 if (!Methods.empty()) { in BuildInstanceMessage() 2960 Method = Methods[0]; in BuildInstanceMessage() 3013 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local 3017 if (!Methods.empty()) { in BuildInstanceMessage() 3020 Method = Methods[0]; in BuildInstanceMessage() 3034 Methods)) in BuildInstanceMessage() 3100 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local 3104 if (!Methods.empty()) { in BuildInstanceMessage() 3107 Method = Methods[0]; in BuildInstanceMessage() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 541 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { in getDesignatedInitializers() 554 Methods.push_back(MD); in getDesignatedInitializers() 558 Methods.push_back(MD); in getDesignatedInitializers() 1222 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse() 1227 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse() 1239 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse() 1245 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse() 1250 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse() 1253 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse() 1256 return CollectOverriddenMethodsRecurse(Super, Method, Methods, in CollectOverriddenMethodsRecurse() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 696 ArrayRef<StringRef> Methods) in VFTableRecord() argument 700 llvm::append_range(MethodNames, Methods); in VFTableRecord() 755 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) in MethodOverloadListRecord() argument 756 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} in MethodOverloadListRecord() 758 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods() 760 std::vector<OneMethodRecord> Methods; variable
|
| /freebsd-13.1/contrib/libucl/doc/ |
| H A D | lua_api.md | 51 **Methods**: 135 ## Methods section
|
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | Replace.cs | 85 #region Private Support Methods
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCGNU.cpp | 448 ArrayRef<const ObjCMethodDecl*> Methods, 482 llvm::Constant *Methods, 500 for (const auto *I : Methods) in EmitProtocolMethodList() 1182 for (auto *M : Methods) { in GenerateProtocolMethodList() 2790 if (Methods.empty()) in GenerateMethodList() 2828 for (const auto *OMD : Methods) { in GenerateMethodList() 2897 llvm::Constant *Methods, in GenerateClassStructure() argument 2919 Methods->getType(), // methods in GenerateClassStructure() 2960 Elements.add(Methods); in GenerateClassStructure() 3009 MethodList.addInt(IntTy, Methods.size()); in GenerateProtocolMethodList() [all …]
|
| H A D | CGObjCMac.cpp | 1176 result.Methods[index].push_back(MD); in get() 1193 for (auto &list : Methods) { in emitExtendedTypesArray() 3420 SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; in GenerateCategory() local 3423 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateCategory() 3431 Methods[InstanceMethods])); in GenerateCategory() 3433 Methods[ClassMethods])); in GenerateCategory() 3606 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateClass() 3615 Methods[InstanceMethods].push_back(MD); in GenerateClass() 3618 Methods[InstanceMethods].push_back(MD); in GenerateClass() 3641 Methods[InstanceMethods])); in GenerateClass() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 2163 MethodsMap Methods; member 2240 Info.Methods[SP->getRawName()].push_back(SP); in collectClassInfo() 2461 for (auto &MethodItr : Info.Methods) { in lowerRecordFieldList() 2464 std::vector<OneMethodRecord> Methods; in lowerRecordFieldList() local 2473 Methods.push_back(OneMethodRecord( in lowerRecordFieldList() 2479 assert(!Methods.empty() && "Empty methods map entry"); in lowerRecordFieldList() 2480 if (Methods.size() == 1) in lowerRecordFieldList() 2481 ContinuationBuilder.writeMemberType(Methods[0]); in lowerRecordFieldList() 2485 MethodOverloadListRecord MOLR(Methods); in lowerRecordFieldList() 2488 OverloadedMethodRecord OMR(Methods.size(), MethodList, Name); in lowerRecordFieldList()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 249 MethodsSeq Methods; member 273 IO.mapOptional("Methods", C.Methods); in mapping()
|
| /freebsd-13.1/sys/kern/ |
| H A D | serdev_if.m | 36 # and intelligent multi-port serial drivers. Methods specifically deal
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | UdtRecordCompleter.cpp | 261 for (const OneMethodRecord &method : method_list.Methods) in visitKnownMember()
|
| /freebsd-13.1/contrib/wpa/wpa_supplicant/ |
| H A D | README-P2P | 308 p2p_service_add asp <auto accept> <adv id> <status 0/1> <Config Methods> 331 Config Methods - Mandatory ASCII hex-encoded u16 (bitmask of WSC config 342 p2p_service_rep asp <auto accept> <adv id> <status 0/1> <Config Methods> 361 Config Methods - Mandatory ASCII hex-encoded u16 (bitmask of WSC config 716 Set WPS Configuration Methods.
|
| /freebsd-13.1/stand/ficl/softwords/ |
| H A D | oo.fr | 21 \ 5. Methods can be overridden, and subclasses can add methods. 44 \ Methods expect an object couple ( instance class ) 65 \ Methods are now structured as follows:
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 3015 data_type_ref Methods) { in EmitKeyDataLength() argument 3018 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength() 3022 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength() 3046 data_type_ref Methods, unsigned DataLen) { in EmitData() argument 3051 LE.write<uint32_t>(Methods.ID); in EmitData() 3059 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData() 3064 unsigned InstanceBits = Methods.Instance.getBits(); in EmitData() 3067 Methods.Instance.hasMoreThanOneDecl(); in EmitData() 3071 unsigned FactoryBits = Methods.Factory.getBits(); in EmitData() 3074 Methods.Factory.hasMoreThanOneDecl(); in EmitData() [all …]
|
| /freebsd-13.1/sys/dev/ofw/ |
| H A D | ofw_if.m | 203 # Methods for OF method calls (optional)
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 6318 ArrayRef<ObjCMethodDecl *> Methods, in Write_method_list_t_initializer() argument 6322 if (Methods.size() > 0) { in Write_method_list_t_initializer() 6324 Write_method_list_t_TypeDecl(Result, Methods.size()); in Write_method_list_t_initializer() 6329 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n"; in Write_method_list_t_initializer() 6330 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write_method_list_t_initializer() 6331 ObjCMethodDecl *MD = Methods[i]; in Write_method_list_t_initializer() 6696 ArrayRef<ObjCMethodDecl *> Methods, in Write__extendedMethodTypes_initializer() argument 6699 if (Methods.size() == 0) in Write__extendedMethodTypes_initializer() 6706 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write__extendedMethodTypes_initializer() 6707 ObjCMethodDecl *MD = Methods[i]; in Write__extendedMethodTypes_initializer()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 479 for (auto &M : Overloads.Methods) in visitKnownRecord()
|
| /freebsd-13.1/share/doc/papers/ |
| H A D | bsdreferences.bib | 90 title = {Evaluation of Source Code Copy Detection Methods on Freebsd},
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | EVP_PKEY_ASN1_METHOD.pod | 154 =head2 Methods section in DESCRIPTION
|
| H A D | EVP_PKEY_meth_new.pod | 256 =head2 Methods section in DESCRIPTION
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeRecordMapping.cpp | 585 error(IO.mapVectorTail(Record.Methods, MapOneMethodRecord(true), "Method")); in visitKnownRecord()
|
| /freebsd-13.1/contrib/googletest/googlemock/docs/ |
| H A D | CookBook.md | 15 ## Mocking Private or Protected Methods ## 50 ## Mocking Overloaded Methods ## 117 ## Mocking Nonvirtual Methods ## 1499 ## Returning References from Mock Methods ## 1519 ## Returning Live Values from Mock Methods ## 1528 from Mock Methods"). However, Google Mock doesn't let you use 1821 ## Using Functions/Methods/Functors as Actions ## 2230 ## Mocking Methods That Use Move-Only Types ## 2264 `Buzzer` interface is capable of creating and sharing `Buzz`es. Methods in
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 599 IO.mapRequired("Methods", Record.Methods); in map()
|