Lines Matching refs:nSecond
2452 short nSecond = 0; in ImplTimeGetValue() local
2503 if ( !ImplCutTimePortion( aStr, nSepPos, _bSkipInvalidCharacters, &nSecond ) ) in ImplTimeGetValue()
2510 nSecond = (short)aStr.ToInt32(); in ImplTimeGetValue()
2517 nSecond = (short)aStr.ToInt32(); in ImplTimeGetValue()
2518 nMinute += nSecond / 60; in ImplTimeGetValue()
2519 nSecond %= 60; in ImplTimeGetValue()
2525 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2533 nMinute = nSecond; in ImplTimeGetValue()
2534 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2543 nMinute = nSecond; in ImplTimeGetValue()
2544 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2555 nMinute += nSecond / 60; in ImplTimeGetValue()
2556 nSecond %= 60; in ImplTimeGetValue()
2590 if ( (nMinute > 59) || (nSecond > 59) || (n100Sec > 100) ) in ImplTimeGetValue()
2594 nSecond = n100Sec = 0; in ImplTimeGetValue()
2601 (nSecond < 0) || (n100Sec < 0) ) in ImplTimeGetValue()
2618 aTime = Time( (sal_uInt16)nHour, (sal_uInt16)nMinute, (sal_uInt16)nSecond, in ImplTimeGetValue()
2624 (nSecond < 0) || (n100Sec < 0) ) in ImplTimeGetValue()
2629 nSecond = nSecond < 0 ? -nSecond : nSecond; in ImplTimeGetValue()
2633 aTime = Time( (sal_uInt16)nHour, (sal_uInt16)nMinute, (sal_uInt16)nSecond, in ImplTimeGetValue()