Home
last modified time | relevance | path

Searched refs:Methods (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.cpp168 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 DSemaDeclObjC.cpp3513 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 DSemaExprObjC.cpp2953 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 DDeclObjC.cpp541 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 DTypeRecord.h696 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 Dlua_api.md51 **Methods**:
135 ## Methods section
/freebsd-13.1/contrib/sqlite3/
H A DReplace.cs85 #region Private Support Methods
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp448 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 DCGObjCMac.cpp1176 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 DCodeViewDebug.cpp2163 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 DAPINotesYAMLCompiler.cpp249 MethodsSeq Methods; member
273 IO.mapOptional("Methods", C.Methods); in mapping()
/freebsd-13.1/sys/kern/
H A Dserdev_if.m36 # and intelligent multi-port serial drivers. Methods specifically deal
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp261 for (const OneMethodRecord &method : method_list.Methods) in visitKnownMember()
/freebsd-13.1/contrib/wpa/wpa_supplicant/
H A DREADME-P2P308 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 Doo.fr21 \ 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 DASTWriter.cpp3015 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 Dofw_if.m203 # Methods for OF method calls (optional)
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6318 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 DMinimalTypeDumper.cpp479 for (auto &M : Overloads.Methods) in visitKnownRecord()
/freebsd-13.1/share/doc/papers/
H A Dbsdreferences.bib90 title = {Evaluation of Source Code Copy Detection Methods on Freebsd},
/freebsd-13.1/crypto/openssl/doc/man3/
H A DEVP_PKEY_ASN1_METHOD.pod154 =head2 Methods section in DESCRIPTION
H A DEVP_PKEY_meth_new.pod256 =head2 Methods section in DESCRIPTION
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp585 error(IO.mapVectorTail(Record.Methods, MapOneMethodRecord(true), "Method")); in visitKnownRecord()
/freebsd-13.1/contrib/googletest/googlemock/docs/
H A DCookBook.md15 ## 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 DCodeViewYAMLTypes.cpp599 IO.mapRequired("Methods", Record.Methods); in map()

12