| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaExprObjC.cpp | 147 Selector Sel, const ObjCMethodDecl *Method) { in validateBoxingMethod() 224 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); in getNSNumberFactoryMethod() local 285 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType, in BuildObjCNumericLiteral() local 661 ObjCMethodDecl *Method = NSArrayDecl->lookupClassMethod(Sel); in BuildObjCArrayLiteral() local 778 ObjCMethodDecl *Method = NSDictionaryDecl->lookupClassMethod(Sel); in BuildObjCDictionaryLiteral() local 983 ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel, in ParseObjCSelectorExpression() local 1081 ObjCMethodDecl *Method, in getMessageSendResultType() 1192 const ObjCMethodDecl *Method = MsgSend->getMethodDecl(); in EmitRelatedResultTypeNote() local 1217 ObjCMethodDecl *Method, in CheckMessageArgumentTypes() 1469 ObjCMethodDecl *Method = ME->getMethodDecl(); in DiagnoseARCUseOfWeakReceiver() local [all …]
|
| D | SemaDeclObjC.cpp | 816 ObjCMethodDecl *Method = *i; in DiagnoseClassExtensionDupMethods() local 1546 void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method, in CheckConflictingOverridingMethod() 2139 void Sema::addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method) { in addMethodToGlobalList() 2200 void Sema::AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl, in AddMethodToGlobalPool() 2341 StringRef Typo, const ObjCMethodDecl * Method) { in HelperSelectorsForTypoCorrection() 2536 ObjCMethodDecl *Method = in ActOnAtEnd() local 2794 CheckRelatedResultTypeCompatibility(Sema &S, ObjCMethodDecl *Method, in CheckRelatedResultTypeCompatibility() 2835 ObjCMethodDecl *Method; member in __anona45cae1d0211::OverrideSearch 3504 Sema::GetIvarBackingPropertyAccessor(const ObjCMethodDecl *Method, in GetIvarBackingPropertyAccessor()
|
| D | SemaCodeComplete.cpp | 190 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) in ResultBuilder() local 665 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) in getDeclUsageType() local 756 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration)) in AdjustResultPriorityForDecl() local 996 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration)) in AddResult() local 1788 else if (ObjCMethodDecl *Method in AddOrdinaryNameResults() local 2001 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { in AddOrdinaryNameResults() local 2072 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) in AddResultTypeChunk() local 2731 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) { in CreateCodeCompletionString() local 3106 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext); in MaybeAddOverrideCalls() local 3986 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext)) in CodeCompleteReturn() local [all …]
|
| D | SemaOverload.cpp | 1472 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn); in IsStandardConversion() local 4678 CXXMethodDecl *Method, in TryObjectArgumentInitialization() 4792 CXXMethodDecl *Method) { in PerformObjectArgumentInitialization() 5463 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) { in AddOverloadCandidate() local 5655 Sema::AddMethodCandidate(CXXMethodDecl *Method, DeclAccessPair FoundDecl, in AddMethodCandidate() 9423 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) in AddressOfFunctionResolver() local 9473 if (CXXMethodDecl *Method in AddMatchingTemplateFunction() local 9516 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) { in AddMatchingNonTemplateFunction() local 10504 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { in CreateOverloadedUnaryOp() local 10721 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { in CreateOverloadedBinOp() local [all …]
|
| D | SemaLambda.cpp | 300 CXXMethodDecl *Method in startLambdaDefinition() local 832 CXXMethodDecl *Method = startLambdaDefinition(Class, Intro.Range, in ActOnStartOfLambdaDefinition() local
|
| D | AnalysisBasedWarnings.cpp | 247 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func)) in MakeForFunction() local 1100 Method, in diagnoseRepeatedUseOfWeak() enumerator
|
| D | SemaExpr.cpp | 148 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); in NoteDeletedFunction() local 2375 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { in PerformObjectMemberConversion() local 3950 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) in getVariadicCallType() local 4713 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) in BuildResolvedCallExpr() local 7472 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, in hasIsEqualMethod() local 9730 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) in isQualifiedMemberAccess() local 9743 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { in isQualifiedMemberAccess() local 12218 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) in MarkDeclRefReferenced() local 12234 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) in MarkMemberReferenced() local 12884 if (ObjCMethodDecl *Method = E->getMethodDecl()) { in VisitObjCMessageExpr() local
|
| D | SemaDeclCXX.cpp | 152 const CXXMethodDecl *Method) { in CalledDecl() 776 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD); in CheckConstexprFunctionDecl() local 5720 CXXMethodDecl *Method; member 6039 FunctionDecl *Method = cast<FunctionDecl>(MethodD); in ActOnFinishDelayedCXXMethodDeclaration() local 8944 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) in buildSingleCopyAssignRecursively() local 12089 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { in CheckPureMethod() 12516 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { in checkThisInStaticMemberFunctionType() 12548 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { in checkThisInStaticMemberFunctionExceptionSpec() 12587 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { in checkThisInStaticMemberFunctionAttributes()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/ |
| D | ObjCMethodList.h | 25 ObjCMethodDecl *Method; member
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ExprClassification.cpp | 349 if (const ObjCMethodDecl *Method = in ClassifyInternal() local 497 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) in ClassifyMemberExpr() local
|
| D | Mangle.cpp | 219 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC)) { in mangleBlock() local
|
| D | Expr.cpp | 3014 if (CXXMethodDecl *Method in VisitCallExpr() local 3335 ObjCMethodDecl *Method, in ObjCMessageExpr() 3360 ObjCMethodDecl *Method, in ObjCMessageExpr() 3384 ObjCMethodDecl *Method, in ObjCMessageExpr() 3435 ObjCMethodDecl *Method, in Create() 3458 ObjCMethodDecl *Method, in Create() 3481 ObjCMethodDecl *Method, in Create() 4009 QualType T, ObjCMethodDecl *Method, in ObjCArrayLiteral() 4030 QualType T, ObjCMethodDecl * Method, in Create()
|
| D | DeclObjC.cpp | 523 ObjCMethodDecl *Method = 0; in lookupPrivateMethod() local 864 const ObjCMethodDecl *Method, in CollectOverriddenMethodsRecurse() 937 const ObjCMethodDecl *Method, in CollectOverriddenMethods() 943 static void collectOverriddenMethodsSlow(const ObjCMethodDecl *Method, in collectOverriddenMethodsSlow() 986 const ObjCMethodDecl *Method = this; in getOverriddenMethods() local
|
| D | DeclCXX.cpp | 436 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { in addedMember() local 545 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { in addedMember() local
|
| /freebsd-10-stable/sys/contrib/dev/acpica/components/debugger/ |
| D | dbmethod.c | 339 ACPI_NAMESPACE_NODE *Method; in AcpiDbDisassembleMethod() local
|
| D | dbutils.c | 414 ACPI_PARSE_OBJECT *Method; in AcpiDbSecondPassParse() local
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | ModuleBuilder.cpp | 101 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*M)) in HandleTagDeclDefinition() local
|
| D | CGObjCMac.cpp | 1491 const ObjCMethodDecl *Method) in GetSelector() 1730 *Method) { in GetSelector() 1794 const ObjCMethodDecl *Method) { in GenerateMessageSendSuper() 1852 const ObjCMethodDecl *Method) { in GenerateMessageSend() 1868 const ObjCMethodDecl *Method, in EmitMessageSend() 3378 llvm::Constant *Method[] = { in GetMethodConstant() local 3414 llvm::Function *Method = in GenerateMethod() local 6073 llvm::Constant *Method[] = { in GetMethodConstant() local 6643 const ObjCMethodDecl *Method) { in GenerateMessageSend() 6775 const ObjCMethodDecl *Method) { in GenerateMessageSendSuper()
|
| D | CGObjCGNU.cpp | 1101 const ObjCMethodDecl *Method) { in GetSelector() 1242 const ObjCMethodDecl *Method) { in GenerateMessageSendSuper() 1343 const ObjCMethodDecl *Method) { in GenerateMessageSend() 1502 llvm::Constant *Method = in GenerateMethodList() local 2638 llvm::Function *Method in GenerateMethod() local
|
| D | CGDebugInfo.cpp | 958 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method, in getOrCreateMethodType() 1026 CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method, in CreateCXXMemberFunction() 1118 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*I)) { in CollectCXXMemberFunctions() local 2396 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) in getOrCreateFunctionType() local
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | CXXInheritance.h | 243 CXXMethodDecl *Method; member
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | ABI.h | 187 const CXXMethodDecl *Method; member
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| D | ObjCMT.cpp | 436 ObjCMethodDecl *Method = (*M); in migrateObjCInterfaceDecl() local 473 ObjCMethodDecl *Method = (*M); in migrateDeprecatedAnnotation() local 1032 ObjCMethodDecl *Method) { in migrateProperty() 1163 ObjCMethodDecl *Method = (*M); in migrateAllMethodInstaceType() local 1450 ObjCMethodDecl *Method = (*M); in migrateARCSafeAnnotation() local
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTWriter.cpp | 2734 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength() local 2738 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength() local 2764 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData() local 2770 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData() local 2784 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData() local 2788 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData() local
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Edit/ |
| D | RewriteObjCFoundationAPI.cpp | 295 const ObjCMethodDecl *Method = Msg->getMethodDecl(); in rewriteToObjCSubscriptSyntax() local
|