reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/ASTImporter.cpp
 3867     ToParm->setObjCMethodScopeInfo(D->getFunctionScopeIndex());
 3871                          D->getFunctionScopeIndex());
tools/clang/lib/AST/ExprConstant.cpp
 2837     Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];
tools/clang/lib/AST/ItaniumMangle.cpp
 1592           unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex();
 1621         unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex();
 4420   unsigned parmIndex = parm->getFunctionScopeIndex();
tools/clang/lib/AST/MicrosoftMangle.cpp
  923                 Func->getNumParams() - Parm->getFunctionScopeIndex();
 1082                 F->getNumParams() - P->getFunctionScopeIndex();
tools/clang/lib/AST/StmtProfile.cpp
  111           ID.AddInteger(Parm->getFunctionScopeIndex());
tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
  408         AllParams[std::min<size_t>(Parm->getFunctionScopeIndex(),
tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  279     unsigned I = PV->getFunctionScopeIndex();
tools/clang/lib/CodeGen/CGCall.cpp
 2361                              PVD->getFunctionScopeIndex()) &&
 3360   unsigned ArgNo = PVD ? PVD->getFunctionScopeIndex() : ParmNum;
tools/clang/lib/CodeGen/CGClass.cpp
 2209           OuterCtor->getParamDecl(Param->getFunctionScopeIndex())->getType(),
tools/clang/lib/Sema/SemaChecking.cpp
 6936             int PVIndex = PV->getFunctionScopeIndex() + 1;
tools/clang/lib/Sema/SemaDecl.cpp
 2930       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
tools/clang/lib/Sema/SemaOpenMP.cpp
 4754         if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
 4755             FD->getParamDecl(PVD->getFunctionScopeIndex())
 4782         if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
 4783             FD->getParamDecl(PVD->getFunctionScopeIndex())
 4852         if (FD->getNumParams() > PVD->getFunctionScopeIndex() &&
 4853             FD->getParamDecl(PVD->getFunctionScopeIndex())
tools/clang/lib/Sema/SemaTemplate.cpp
 1999                            OldParam->getFunctionScopeIndex());
tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
 1905                         OldParm->getFunctionScopeIndex() + indexAdjustment);
 2983       unsigned i = PV->getFunctionScopeIndex();
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  285         if (FD->getNumParams() > PVD->getFunctionScopeIndex())
  287               PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
  366         if (FD->getNumParams() > PVD->getFunctionScopeIndex())
  368               PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
tools/clang/lib/Sema/TreeTransform.h
 5146                         OldParm->getFunctionScopeIndex() + indexAdjustment);
 5163       assert(OldParm->getFunctionScopeIndex() == i);
 5361         assert(parm->getFunctionScopeIndex() == i);
tools/clang/lib/Serialization/ASTWriterDecl.cpp
 1061   Record.push_back(D->getFunctionScopeIndex());
tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  675     unsigned ParamIdx = Param->getFunctionScopeIndex() + 1;
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1307   unsigned Idx = Param->getFunctionScopeIndex() + 1;
 1427           InitE = Call->getArgExpr(Param->getFunctionScopeIndex());
tools/clang/tools/extra/clang-tidy/google/NonConstReferences.cpp
  140         << Parameter->getFunctionScopeIndex();
tools/clang/tools/extra/clang-tidy/modernize/PassByValueCheck.cpp
  113   unsigned ParamIdx = ParamDecl->getFunctionScopeIndex();
tools/clang/tools/extra/clang-tidy/readability/NonConstParameterCheck.cpp
  145     unsigned Index = Par->getFunctionScopeIndex();