Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp3476 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
3480 if (!Methods.empty()) in CollectMultipleMethodsInGlobalPool()
3481 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3495 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3505 for (auto *M : Methods) in AreMultipleMethodsInGlobalPool()
3556 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) { in DiagnoseMultipleMethodInGlobalPool()
3570 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) && in DiagnoseMultipleMethodInGlobalPool()
3571 !isAcceptableMethodMismatch(Methods[0], Methods[I])) { in DiagnoseMultipleMethodInGlobalPool()
3587 Diag(Methods[0]->getBeginLoc(), in DiagnoseMultipleMethodInGlobalPool()
3589 << Methods[0]->getSourceRange(); in DiagnoseMultipleMethodInGlobalPool()
[all …]
H A DSemaExprObjC.cpp2767 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
2771 if (!Methods.empty()) { in BuildInstanceMessage()
2774 Method = Methods[0]; in BuildInstanceMessage()
2828 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
2832 if (!Methods.empty()) { in BuildInstanceMessage()
2835 Method = Methods[0]; in BuildInstanceMessage()
2849 Methods)) in BuildInstanceMessage()
2916 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
2920 if (!Methods.empty()) { in BuildInstanceMessage()
2923 Method = Methods[0]; in BuildInstanceMessage()
[all …]
H A DSemaOverload.cpp6189 SmallVectorImpl<ObjCMethodDecl *> &Methods) { in SelectBestMethod() argument
6190 if (Methods.size() <= 1) in SelectBestMethod()
6193 for (unsigned b = 0, e = Methods.size(); b < e; b++) { in SelectBestMethod()
6195 ObjCMethodDecl *Method = Methods[b]; in SelectBestMethod()
6262 else if (Match && NumNamedArgs == 0 && Methods.size() > 1) { in SelectBestMethod()
6265 for (unsigned b = 0, e = Methods.size(); b < e; b++) { in SelectBestMethod()
6266 QualType ReturnT = Methods[b]->getReturnType(); in SelectBestMethod()
6268 return Methods[b]; in SelectBestMethod()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp540 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { in getDesignatedInitializers()
553 Methods.push_back(MD); in getDesignatedInitializers()
557 Methods.push_back(MD); in getDesignatedInitializers()
1198 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1203 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1215 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1221 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1226 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1229 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1232 return CollectOverriddenMethodsRecurse(Super, Method, Methods, in CollectOverriddenMethodsRecurse()
[all …]
H A DVTableBuilder.cpp182 const OverridingMethods &Methods = Overrider.second; in FinalOverriders() local
184 for (const auto &M : Methods) { in FinalOverriders()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h703 ArrayRef<StringRef> Methods) in VFTableRecord() argument
707 MethodNames.insert(MethodNames.end(), Methods.begin(), Methods.end()); in VFTableRecord()
762 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) in MethodOverloadListRecord() argument
763 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} in MethodOverloadListRecord()
765 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods()
767 std::vector<OneMethodRecord> Methods; variable
/freebsd-12.1/contrib/libucl/doc/
H A Dlua_api.md51 **Methods**:
135 ## Methods section
/freebsd-12.1/contrib/sqlite3/
H A DReplace.cs85 #region Private Support Methods
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCGNU.cpp457 ArrayRef<const ObjCMethodDecl*> Methods,
491 llvm::Constant *Methods,
509 for (const auto *I : Methods) in EmitProtocolMethodList()
1159 for (auto *M : Methods) { in GenerateProtocolMethodList()
2669 if (Methods.empty()) in GenerateMethodList()
2707 for (const auto *OMD : Methods) { in GenerateMethodList()
2778 llvm::Constant *Methods, in GenerateClassStructure() argument
2800 Methods->getType(), // methods in GenerateClassStructure()
2841 Elements.add(Methods); in GenerateClassStructure()
2890 MethodList.addInt(IntTy, Methods.size()); in GenerateProtocolMethodList()
[all …]
H A DCGObjCMac.cpp1148 result.Methods[index].push_back(MD); in get()
1165 for (auto &list : Methods) { in emitExtendedTypesArray()
3312 SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; in GenerateCategory() local
3314 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateCategory()
3322 Methods[InstanceMethods])); in GenerateCategory()
3324 Methods[ClassMethods])); in GenerateCategory()
3496 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateClass()
3505 Methods[InstanceMethods].push_back(MD); in GenerateClass()
3508 Methods[InstanceMethods].push_back(MD); in GenerateClass()
3531 Methods[InstanceMethods])); in GenerateClass()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2049 MethodsMap Methods; member
2117 Info.Methods[SP->getRawName()].push_back(SP); in collectClassInfo()
2330 for (auto &MethodItr : Info.Methods) { in lowerRecordFieldList()
2333 std::vector<OneMethodRecord> Methods; in lowerRecordFieldList() local
2342 Methods.push_back(OneMethodRecord( in lowerRecordFieldList()
2348 assert(!Methods.empty() && "Empty methods map entry"); in lowerRecordFieldList()
2349 if (Methods.size() == 1) in lowerRecordFieldList()
2350 ContinuationBuilder.writeMemberType(Methods[0]); in lowerRecordFieldList()
2354 MethodOverloadListRecord MOLR(Methods); in lowerRecordFieldList()
2357 OverloadedMethodRecord OMR(Methods.size(), MethodList, Name); in lowerRecordFieldList()
/freebsd-12.1/sys/kern/
H A Dserdev_if.m36 # and intelligent multi-port serial drivers. Methods specifically deal
/freebsd-12.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-12.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-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp3300 data_type_ref Methods) { in EmitKeyDataLength() argument
3307 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength()
3311 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength()
3336 data_type_ref Methods, unsigned DataLen) { in EmitData() argument
3341 LE.write<uint32_t>(Methods.ID); in EmitData()
3349 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData()
3354 unsigned InstanceBits = Methods.Instance.getBits(); in EmitData()
3357 Methods.Instance.hasMoreThanOneDecl(); in EmitData()
3361 unsigned FactoryBits = Methods.Factory.getBits(); in EmitData()
3364 Methods.Factory.hasMoreThanOneDecl(); in EmitData()
[all …]
/freebsd-12.1/sys/dev/ofw/
H A Dofw_if.m203 # Methods for OF method calls (optional)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6321 ArrayRef<ObjCMethodDecl *> Methods, in Write_method_list_t_initializer() argument
6325 if (Methods.size() > 0) { in Write_method_list_t_initializer()
6327 Write_method_list_t_TypeDecl(Result, Methods.size()); in Write_method_list_t_initializer()
6332 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n"; in Write_method_list_t_initializer()
6333 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write_method_list_t_initializer()
6334 ObjCMethodDecl *MD = Methods[i]; in Write_method_list_t_initializer()
6699 ArrayRef<ObjCMethodDecl *> Methods, in Write__extendedMethodTypes_initializer() argument
6702 if (Methods.size() == 0) in Write__extendedMethodTypes_initializer()
6709 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write__extendedMethodTypes_initializer()
6710 ObjCMethodDecl *MD = Methods[i]; in Write__extendedMethodTypes_initializer()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp363 error(IO.mapVectorTail(Record.Methods, MapOneMethodRecord(true))); in visitKnownRecord()
/freebsd-12.1/share/doc/papers/
H A Dbsdreferences.bib90 title = {Evaluation of Source Code Copy Detection Methods on Freebsd},
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp473 for (auto &M : Overloads.Methods) in visitKnownRecord()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DEVP_PKEY_ASN1_METHOD.pod154 =head2 Methods section in DESCRIPTION
H A DEVP_PKEY_meth_new.pod228 =head2 Methods section in DESCRIPTION
/freebsd-12.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-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp595 IO.mapRequired("Methods", Record.Methods); in map()
/freebsd-12.1/crypto/openssl/doc/man7/
H A Dssl.pod115 =head2 Dealing with Protocol Methods

12