Home
last modified time | relevance | path

Searched refs:param_begin (Results 1 – 25 of 55) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h180 param_iterator param_begin() const { return ParameterList; } in param_begin() function
190 for (param_iterator I = param_begin(), E = param_end(); I != E; ++I) in getParameterNum()
192 return I - param_begin(); in getParameterNum()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp88 for (param_iterator I = param_begin(), OI = Other.param_begin(), in isIdenticalTo()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DUncountedCallArgsChecker.cpp74 for (auto P = F->param_begin(); in visitCallExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp30 MacroInfo::param_iterator AI = MI.param_begin(), E = MI.param_end(); in writeMacroDefinition()
H A DCGObjC.cpp84 const ParmVarDecl *ArgDecl = *BoxingMethod->param_begin(); in EmitObjCBoxedExpr()
201 ObjCMethodDecl::param_const_iterator PI = MethodWithObjects->param_begin(); in EmitObjCCollectionLiteral()
772 args.append(OMD->param_begin(), OMD->param_end()); in StartObjCMethod()
1304 ParmVarDecl *argVar = *OMD->param_begin(); in emitStructSetterCall()
1350 ParmVarDecl *argVar = *OMD->param_begin(); in emitCPPObjectAtomicSetterCall()
1427 Address argAddr = GetAddrOfLocalVar(*setterMethod->param_begin()); in generateObjCSetterBody()
1483 Address argAddr = GetAddrOfLocalVar(*setterMethod->param_begin()); in generateObjCSetterBody()
1532 ParmVarDecl *argDecl = *setterMethod->param_begin(); in generateObjCSetterBody()
H A DCGStmtOpenMP.cpp439 Args.append(CD->param_begin(), in emitOutlinedFunctionPrologue()
440 std::next(CD->param_begin(), CD->getContextParamPosition())); in emitOutlinedFunctionPrologue()
442 CD->param_begin(), in emitOutlinedFunctionPrologue()
443 std::next(CD->param_begin(), CD->getContextParamPosition())); in emitOutlinedFunctionPrologue()
501 std::next(CD->param_begin(), CD->getContextParamPosition() + 1), in emitOutlinedFunctionPrologue()
504 std::next(CD->param_begin(), CD->getContextParamPosition() + 1), in emitOutlinedFunctionPrologue()
1562 S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); in emitCommonOMPParallelDirective()
4266 auto I = CS->getCapturedDecl()->param_begin(); in EmitOMPTaskBasedDirective()
4616 auto I = CS->getCapturedDecl()->param_begin(); in EmitOMPTargetTaskBasedDirective()
6051 S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); in emitCommonOMPTeamsDirective()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h159 param_const_iterator param_begin() const { return parameters().begin(); } in param_begin() function
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp203 ObjCMethodDecl::param_const_iterator oi = Overridden->param_begin(), in CheckObjCMethodOverride()
205 for (ObjCMethodDecl::param_iterator ni = NewMethod->param_begin(), in CheckObjCMethodOverride()
2569 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnConflictingTypedMethods()
2591 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(), in CheckConflictingOverridingMethod()
2592 IF = Overridden->param_begin(), EM = Method->param_end(), in CheckConflictingOverridingMethod()
3266 li = left->param_begin(), le = left->param_end(), ri = right->param_begin(), in MatchTwoMethodDeclarations()
4498 ObjCMethodDecl::param_iterator PrevI = overridden->param_begin(), in CheckObjCMethodOverrides()
4588 ParmVarDecl *param = method->param_begin()[i]; in mergeInterfaceMethodToImpl()
4589 ParmVarDecl *prevParam = prevMethod->param_begin()[i]; in mergeInterfaceMethodToImpl()
4947 auto OI = IMD->param_begin(), OE = IMD->param_end(); in ActOnMethodDeclaration()
[all …]
H A DSemaCodeComplete.cpp3300 MacroInfo::param_iterator A = MI->param_begin(), AEnd = MI->param_end(); in CreateCodeCompletionStringForMacro()
3311 for (MacroInfo::param_iterator A = MI->param_begin(); A != AEnd; ++A) { in CreateCodeCompletionStringForMacro()
3312 if (A != MI->param_begin()) in CreateCodeCompletionStringForMacro()
3563 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(), in createCodeCompletionStringForDecl()
7288 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(), in AddSuperSendCompletion()
7290 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
7325 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(); in AddSuperSendCompletion()
8988 for (ObjCMethodDecl::param_iterator P = Method->param_begin(), in CodeCompleteObjCMethodDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp501 const ParmVarDecl *argDecl = *Setter->param_begin(); in rewriteToObjCProperty()
1218 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1483 for (FunctionDecl::param_const_iterator pi = FuncDecl->param_begin(), in AddCFAnnotations()
1535 for (FunctionDecl::param_const_iterator pi = FuncDecl->param_begin(), in migrateAddFunctionAnnotation()
1608 for (ObjCMethodDecl::param_const_iterator pi = MethodDecl->param_begin(), in AddCFAnnotations()
1651 (MethodDecl->param_begin() == MethodDecl->param_end())) in migrateAddMethodAnnotation()
1667 for (ObjCMethodDecl::param_const_iterator pi = MethodDecl->param_begin(), in migrateAddMethodAnnotation()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h127 param_iterator param_begin() const { return ContainedTys + 1; } in param_begin() function
130 return makeArrayRef(param_begin(), param_end()); in params()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp100 std::vector<llvm::Type *> params{orig_type->param_begin(), in cloneToStructRetFnTy()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp639 for (auto pi = C.param_begin(), pe = C.param_end(); pi != pe; in updateSummaryForArgumentTypes()
989 for (auto pi = FD->param_begin(), in updateSummaryFromAnnotations()
1016 for (auto pi = MD->param_begin(), pe = MD->param_end(); pi != pe; in updateSummaryFromAnnotations()
H A DAnalysisDeclContext.cpp353 if (P != *FD->param_begin()) in getFunctionName()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp129 FunctionType::param_iterator PI = F->getFunctionType()->param_begin(); in createWrapper()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h357 param_const_iterator param_begin() const { in param_begin() function
365 param_iterator param_begin() { return param_iterator(getParams()); } in param_begin() function
371 return param_begin() + getSelector().getNumArgs(); in sel_param_end()
405 return llvm::map_iterator(param_begin(), GetTypeFn()); in param_type_begin()
H A DDecl.h2490 param_iterator param_begin() { return parameters().begin(); } in param_begin() function
2492 param_const_iterator param_begin() const { return parameters().begin(); } in param_begin() function
4238 param_iterator param_begin() { return parameters().begin(); } in param_begin() function
4240 param_const_iterator param_begin() const { return parameters().begin(); } in param_begin() function
4409 param_iterator param_begin() const { return getParams(); } in param_begin() function
H A DASTNodeTraverser.h425 if (D->param_begin()) in VisitFunctionDecl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp293 for (auto ParI = FTy->param_begin(), ParE = FTy->param_end(); ParI != ParE; in getFormalParams()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp494 for (auto pi = macro_info->param_begin(), in ForEachMacro()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp41 MacroInfo::param_iterator AI = MI.param_begin(), E = MI.param_end(); in PrintMacroDefinition()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp162 std::vector<Type *> Params(FTy->param_begin(), FTy->param_end()); in DeleteDeadVarargs()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp976 PI = FuncTy->param_begin(), in getOrInsertFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp2514 for (BlockDecl::param_iterator AI = BD->param_begin(), in VisitBlockExpr()
2516 if (AI != BD->param_begin()) OS << ", "; in VisitBlockExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp67 ParamTys.insert(ParamTys.begin(), FTy->param_begin(), FTy->param_end()); in IntrinsicCostAttributes()

123