Lines Matching refs:pArg
304 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
305 rPar.Get( 0 )->PutDouble( sin( pArg->GetDouble() ) ); in RTLFUNC()
320 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
321 rPar.Get( 0 )->PutDouble( cos( pArg->GetDouble() ) ); in RTLFUNC()
336 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
337 rPar.Get( 0 )->PutDouble( atan( pArg->GetDouble() ) ); in RTLFUNC()
352 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
353 rPar.Get( 0 )->PutDouble( fabs( pArg->GetDouble() ) ); in RTLFUNC()
367 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
368 String aStr( pArg->GetString() ); in RTLFUNC()
388 SbxVariableRef pArg = rPar.Get( 1 ); in implChr() local
393 sal_Char c = (sal_Char)pArg->GetByte(); in implChr()
399 sal_Unicode aCh = (sal_Unicode)pArg->GetUShort(); in implChr()
906 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
907 String aStr( pArg->GetString() ); in RTLFUNC()
954 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
955 if ( pArg->IsInteger() ) in RTLFUNC()
956 snprintf( aBuffer, sizeof(aBuffer), "%X", pArg->GetInteger() ); in RTLFUNC()
958 … snprintf( aBuffer, sizeof(aBuffer), "%lX", static_cast<long unsigned int>(pArg->GetLong()) ); in RTLFUNC()
1147 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
1148 double aDouble= pArg->GetDouble(); in RTLFUNC()
1169 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
1170 double aDouble = pArg->GetDouble(); in RTLFUNC()
1358 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
1359 if ( pArg->IsInteger() ) in RTLFUNC()
1360 snprintf( aBuffer, sizeof(aBuffer), "%o", pArg->GetInteger() ); in RTLFUNC()
1362 … snprintf( aBuffer, sizeof(aBuffer), "%lo", static_cast<long unsigned int>(pArg->GetLong()) ); in RTLFUNC()
1583 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
1584 pArg->Format( aStr ); in RTLFUNC()
1587 if( pArg->IsNumericRTL() ) in RTLFUNC()
1735 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
1736 rPar.Get( 0 )->PutDouble( tan( pArg->GetDouble() ) ); in RTLFUNC()
2096 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
2097 double aDate = pArg->GetDate(); in RTLFUNC()
2460 SbxVariableRef pArg = rPar.Get( 1 ); in RTLFUNC() local
2462 if( !bNull && pArg->GetType() == SbxOBJECT ) in RTLFUNC()
2464 SbxBase* pObj = pArg->GetObject(); in RTLFUNC()