Searched refs:parameterIndex (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h1623 void setObjCMethodScopeInfo(unsigned parameterIndex) {
1625 setParameterIndex(parameterIndex);
1628 void setScopeInfo(unsigned scopeDepth, unsigned parameterIndex) {
1635 setParameterIndex(parameterIndex);
1748 void setParameterIndex(unsigned parameterIndex) {
1749 if (parameterIndex >= ParameterIndexSentinel) {
1750 setParameterIndexLarge(parameterIndex);
1754 ParmVarDeclBits.ParameterIndex = parameterIndex;
1755 assert(ParmVarDeclBits.ParameterIndex == parameterIndex && "truncation!");
1762 void setParameterIndexLarge(unsigned parameterIndex);
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp2753 void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) { argument
2754 getASTContext().setParameterIndex(this, parameterIndex);

Completed in 75 milliseconds