Lines Matching refs:p

350 	const FuncData*	p = pFD->Get( aProgrammaticName );  in getDisplayFunctionName()  local
351 if( p ) in getDisplayFunctionName()
353 aRet = GetDisplFuncStr( p->GetUINameID() ); in getDisplayFunctionName()
354 if( p->IsDouble() ) in getDisplayFunctionName()
371 const FuncData* p = pFD->Get( aProgrammaticName ); in getFunctionDescription() local
372 if( p ) in getFunctionDescription()
373 aRet = GetFuncDescrStr( p->GetDescrID(), 1 ); in getFunctionDescription()
383 const FuncData* p = pFD->Get( aName ); in getDisplayArgumentName() local
384 if( p && nArg <= 0xFFFF ) in getDisplayArgumentName()
386 sal_uInt16 nStr = p->GetStrIndex( sal_uInt16( nArg ) ); in getDisplayArgumentName()
388 aRet = GetFuncDescrStr( p->GetDescrID(), nStr ); in getDisplayArgumentName()
401 const FuncData* p = pFD->Get( aName ); in getArgumentDescription() local
402 if( p && nArg <= 0xFFFF ) in getArgumentDescription()
404 sal_uInt16 nStr = p->GetStrIndex( sal_uInt16( nArg ) ); in getArgumentDescription()
406 aRet = GetFuncDescrStr( p->GetDescrID(), nStr + 1 ); in getArgumentDescription()
422 const FuncData* p = pFD->Get( aName ); in getProgrammaticCategoryName() local
424 if( p ) in getProgrammaticCategoryName()
428 switch( p->GetCategory() ) in getProgrammaticCategoryName()
452 const FuncData* p = pFD->Get( aProgrammaticFunctionName ); in getDisplayCategoryName() local
454 if( p ) in getDisplayCategoryName()
458 switch( p->GetCategory() ) in getDisplayCategoryName()
509 const FuncData* p = pFD->Get( aProgrammaticName ); in getCompatibilityNames() local
511 if( !p ) in getCompatibilityNames()
514 const StringList& r = p->GetCompNameList(); in getCompatibilityNames()
726 for( const double *p = aValList.First(); p; p = aValList.Next() ) in getMultinomial() local
728 double fInt = (*p >= 0.0) ? rtl::math::approxFloor( *p ) : rtl::math::approxCeil( *p ); in getMultinomial()
858 const double* p = aValList.First(); in getGcd() local
859 double f = *p; in getGcd()
861 p = aValList.Next(); in getGcd()
863 while( p ) in getGcd()
865 f = GetGcd( *p, f ); in getGcd()
866 p = aValList.Next(); in getGcd()
883 const double* p = aValList.First(); in getLcm() local
884 double f = *p; in getLcm()
889 p = aValList.Next(); in getLcm()
891 while( p ) in getLcm()
893 double fTmp = *p; in getLcm()
898 p = aValList.Next(); in getLcm()
1192 const Complex* p = z_list.First(); in getImproduct() local
1194 if( !p ) in getImproduct()
1197 Complex z( *p ); in getImproduct()
1199 for( p = z_list.Next() ; p ; p = z_list.Next() ) in getImproduct()
1200 z.Mult( *p ); in getImproduct()
1240 const Complex* p = z_list.First(); in getImsum() local
1242 if( !p ) in getImsum()
1245 Complex z( *p ); in getImsum()
1247 for( p = z_list.Next() ; p ; p = z_list.Next() ) in getImsum()
1248 z.Add( *p ); in getImsum()