Home
last modified time | relevance | path

Searched defs:Method (Results 1 – 25 of 86) sorted by relevance

1234

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerInstrumentation.h93 #define LLDB_REGISTER_METHOD(Result, Class, Method, Signature) \ argument
98 #define LLDB_REGISTER_METHOD_CONST(Result, Class, Method, Signature) \ argument
103 #define LLDB_REGISTER_STATIC_METHOD(Result, Class, Method, Signature) \ argument
107 #define LLDB_REGISTER_CHAR_PTR_METHOD_STATIC(Result, Class, Method) \ argument
114 #define LLDB_REGISTER_CHAR_PTR_METHOD(Result, Class, Method) \ argument
121 #define LLDB_REGISTER_CHAR_PTR_METHOD_CONST(Result, Class, Method) \ argument
158 #define LLDB_RECORD_METHOD(Result, Class, Method, Signature, ...) \ argument
161 #define LLDB_RECORD_METHOD_CONST(Result, Class, Method, Signature, ...) \ argument
165 #define LLDB_RECORD_METHOD_NO_ARGS(Result, Class, Method) \ argument
168 #define LLDB_RECORD_METHOD_CONST_NO_ARGS(Result, Class, Method) \ argument
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp149 struct Method { struct
150 StringRef Selector;
151 MethodKind Kind;
152 ParamsSeq Params;
153 NullabilitySeq Nullability;
156 AvailabilityItem Availability;
157 Optional<bool> SwiftPrivate;
158 StringRef SwiftName;
160 bool DesignatedInit = false;
161 bool Required = false;
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprObjC.cpp29 ObjCMethodDecl *Method, SourceRange SR) in ObjCArrayLiteral()
41 QualType T, ObjCMethodDecl *Method, in Create()
112 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
131 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
147 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
179 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
198 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
217 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
H A DExprClassification.cpp392 if (const ObjCMethodDecl *Method = in ClassifyInternal() local
549 if (const auto *Method = dyn_cast<CXXMethodDecl>(Member)) in ClassifyMemberExpr() local
H A DDeclObjC.cpp751 ObjCMethodDecl *Method = nullptr; in lookupPrivateMethod() local
1202 const ObjCMethodDecl *Method, in CollectOverriddenMethodsRecurse()
1262 const ObjCMethodDecl *Method, in CollectOverriddenMethods()
1268 static void collectOverriddenMethodsSlow(const ObjCMethodDecl *Method, in collectOverriddenMethodsSlow()
1311 const ObjCMethodDecl *Method = this; in getOverriddenMethods() local
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp1207 ObjCMethodDecl *Method, in DiagnoseMismatchedSelectors()
1239 ObjCMethodDecl *Method = M->getMethod(); in LookupDirectMethodInMethodList() local
1521 ObjCMethodDecl *Method, in getMessageSendResultType()
1692 const ObjCMethodDecl *Method = MsgSend->getMethodDecl(); in EmitRelatedResultTypeNote() local
1920 ObjCMethodDecl *Method = in isSelfExpr() local
2266 ObjCInterfaceOrSuperCCC(ObjCMethodDecl *Method) { in ObjCInterfaceOrSuperCCC()
2307 if (ObjCMethodDecl *Method = getCurMethodDecl()) { in getObjCMessageKind() local
2390 ObjCMethodDecl *Method = tryCaptureObjCSelf(SuperLoc); in ActOnSuperMessage() local
2494 const ObjCMethodDecl *Method, in checkFoundationAPI()
2610 ObjCMethodDecl *Method, in BuildClassMessage()
[all …]
H A DSemaDeclObjC.cpp1760 for (const auto *Method : CAT->methods()) { in DiagnoseClassExtensionDupMethods() local
2583 void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method, in CheckConflictingOverridingMethod()
3304 ObjCMethodDecl *Method) { in addMethodToGlobalList()
3462 static bool FilterMethodsByTypeBound(ObjCMethodDecl *Method, in FilterMethodsByTypeBound()
3640 for (const ObjCMethodList *Method = &Methods.first; Method; in LookupImplementedMethodInGlobalPool() local
3647 for (const ObjCMethodList *Method = &Methods.second; Method; in LookupImplementedMethodInGlobalPool() local
4000 ObjCMethodDecl *Method = in ActOnAtEnd() local
4265 const ObjCMethodDecl *Method; member in __anonb1fad03f0711::OverrideSearch
4654 ObjCMethodDecl *Method, in checkObjCDirectMethodClashes()
5258 Sema::GetIvarBackingPropertyAccessor(const ObjCMethodDecl *Method, in GetIvarBackingPropertyAccessor()
[all …]
H A DSemaCodeComplete.cpp224 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) in ResultBuilder() local
921 else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) in getDeclUsageType() local
1987 for (auto *Method : CR->methods()) { in AddOverrideResults() local
1997 for (auto *Method : BR->methods()) { in AddOverrideResults() local
2681 else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { in AddResultTypeChunk() local
3540 if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { in createCodeCompletionStringForDecl() local
4077 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext); in MaybeAddOverrideCalls() local
6912 static bool isAcceptableObjCMethod(ObjCMethodDecl *Method, in isAcceptableObjCMethod()
7181 ObjCMethodDecl *Method = Msg->getMethodDecl(); in GetAssumedMessageSendExprType() local
7370 if (ObjCMethodDecl *Method = getCurMethodDecl()) in CodeCompleteObjCMessageReceiver() local
[all …]
H A DSemaLambda.cpp391 CXXMethodDecl *Method = CXXMethodDecl::Create( in startLambdaDefinition() local
431 CXXRecordDecl *Class, CXXMethodDecl *Method, in handleLambdaNumbering()
982 CXXMethodDecl *Method = in ActOnStartOfLambdaDefinition() local
H A DSemaOverload.cpp1736 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn); in IsStandardConversion() local
5294 CXXMethodDecl *Method, in TryObjectArgumentInitialization()
6491 ObjCMethodDecl *Method = Methods[b]; in SelectBestMethod() local
6580 CXXMethodDecl *Method = cast<CXXMethodDecl>(Function); in convertArgsForAvailabilityChecks() local
7159 auto *Method = dyn_cast<CXXMethodDecl>(FD); in CheckNonDependentConversions() local
12007 if (CXXMethodDecl *Method in AddMatchingTemplateFunction() local
12053 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) { in AddMatchingNonTemplateFunction() local
14052 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl); in CreateOverloadedArraySubscriptExpr() local
14246 CXXMethodDecl *Method = nullptr; in BuildCallToMemberFunction() local
14633 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function); in BuildCallToObjectOfClassType() local
[all …]
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h417 #define GMOCK_MOCKER_(arity, constness, Method) \ argument
421 #define GMOCK_METHOD0_(tn, constness, ct, Method, ...) \ argument
444 #define GMOCK_METHOD1_(tn, constness, ct, Method, ...) \ argument
471 #define GMOCK_METHOD2_(tn, constness, ct, Method, ...) \ argument
503 #define GMOCK_METHOD3_(tn, constness, ct, Method, ...) \ argument
541 #define GMOCK_METHOD4_(tn, constness, ct, Method, ...) \ argument
584 #define GMOCK_METHOD5_(tn, constness, ct, Method, ...) \ argument
632 #define GMOCK_METHOD6_(tn, constness, ct, Method, ...) \ argument
685 #define GMOCK_METHOD7_(tn, constness, ct, Method, ...) \ argument
744 #define GMOCK_METHOD8_(tn, constness, ct, Method, ...) \ argument
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp71 StringRef Method, StringRef Signature, in GetRecordMethodMacro()
104 StringRef Method, StringRef Signature, in GetRecordDummyMacro()
125 StringRef Method, StringRef Signature, in GetRegisterMethodMacro()
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbutils.c522 ACPI_PARSE_OBJECT *Method; in AcpiDbSecondPassParse() local
H A Ddbmethod.c459 ACPI_NAMESPACE_NODE *Method; in AcpiDbDisassembleMethod() local
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp744 const ObjCMethodDecl *Method = nullptr; in findMethodDecl() local
777 const ObjCMethodDecl *Method, ArrayRef<QualType> TypeArgs, in getReturnTypeForMethod()
814 const ObjCMethodDecl *Method = in checkPreObjCMessage() local
980 const ObjCMethodDecl *Method = in checkPostObjCMessage() local
H A DContainerModeling.cpp795 for (const auto *Method : CRD->methods()) { in hasSubscriptOperator() local
811 for (const auto *Method : CRD->methods()) { in frontModifiable() local
826 for (const auto *Method : CRD->methods()) { in backModifiable() local
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp528 OneMethodRecord &Method) { in visitKnownMember()
537 OverloadedMethodRecord &Method) { in visitKnownMember()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp473 OneMethodRecord &Method) { in visitKnownMember()
485 OverloadedMethodRecord &Method) { in visitKnownMember()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DThunk.h168 const CXXMethodDecl *Method; member
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h232 CXXMethodDecl *Method = nullptr; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp204 #define RAW_ID_METHOD_DUMP(Stream, Method, Session, FieldId, ShowFlags, \ argument
210 #define RAW_METHOD_DUMP(Stream, Method) \ argument
214 #define RAW_METHOD_DUMP_AS(Stream, Method, Type) \ argument
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h385 auto Method = dyn_cast_or_null<ObjCMethodDecl>(SFC->getDecl()); in isSynthesizedAccessor() local
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp631 } else if (const auto *Method = dyn_cast<ObjCMethodDecl>(AnalyzedDecl)) { in initDataStructures() local
1050 if (const auto *Method = dyn_cast<ObjCMethodDecl>(ParamContext)) { in shouldBeCalledOnce() local
1076 bool shouldBeCalledOnce(const ObjCMethodDecl *Method, in shouldBeCalledOnce()
1102 const ObjCMethodDecl *Method = Message->getMethodDecl(); in shouldBeCalledOnce() local
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp195 for (const auto *Method : InstantiatedMethods) { in addUSRsOfInstantiatedMethods() local
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp246 const ObjCMethodDecl *Method = Msg->getMethodDecl(); in rewriteToPropertyDotSyntax() local
579 for (auto *Method : D->methods()) { in migrateObjCContainerDecl() local
1157 ObjCMethodDecl *Method) { in migrateProperty()
1285 for (auto *Method : CDecl->methods()) { in migrateAllMethodInstaceType() local
1565 for (const auto *Method : CDecl->methods()) in migrateARCSafeAnnotation() local

1234