Lines Matching refs:nAct
213 inline sal_Bool MustHaveParamCount( short nAct, short nMust );
214 inline sal_Bool MustHaveParamCount( short nAct, short nMust, short nMax );
215 inline sal_Bool MustHaveParamCountMin( short nAct, short nMin );
895 inline sal_Bool ScInterpreter::MustHaveParamCount( short nAct, short nMust ) in MustHaveParamCount() argument
897 if ( nAct == nMust ) in MustHaveParamCount()
899 if ( nAct < nMust ) in MustHaveParamCount()
907 inline sal_Bool ScInterpreter::MustHaveParamCount( short nAct, short nMust, short nMax ) in MustHaveParamCount() argument
909 if ( nMust <= nAct && nAct <= nMax ) in MustHaveParamCount()
911 if ( nAct < nMust ) in MustHaveParamCount()
919 inline sal_Bool ScInterpreter::MustHaveParamCountMin( short nAct, short nMin ) in MustHaveParamCountMin() argument
921 if ( nAct >= nMin ) in MustHaveParamCountMin()