Lines Matching refs:rDate
1310 void lcl_GetCouppcd( ScaDate& rDate, const ScaDate& rSettle, const ScaDate& rMat, sal_Int32 nFreq ) in lcl_GetCouppcd() argument
1313 rDate = rMat; in lcl_GetCouppcd()
1314 rDate.setYear( rSettle.getYear() ); in lcl_GetCouppcd()
1315 if( rDate < rSettle ) in lcl_GetCouppcd()
1316 rDate.addYears( 1 ); in lcl_GetCouppcd()
1317 while( rDate > rSettle ) in lcl_GetCouppcd()
1318 rDate.addMonths( -12 / nFreq ); in lcl_GetCouppcd()
1335 void lcl_GetCoupncd( ScaDate& rDate, const ScaDate& rSettle, const ScaDate& rMat, sal_Int32 nFreq ) in lcl_GetCoupncd() argument
1338 rDate = rMat; in lcl_GetCoupncd()
1339 rDate.setYear( rSettle.getYear() ); in lcl_GetCoupncd()
1340 if( rDate > rSettle ) in lcl_GetCoupncd()
1341 rDate.addYears( -1 ); in lcl_GetCoupncd()
1342 while( rDate <= rSettle ) in lcl_GetCoupncd()
1343 rDate.addMonths( 12 / nFreq ); in lcl_GetCoupncd()