Lines Matching refs:aTempValue

2197                     com::sun::star::util::DateTime aTempValue;  in convertAny()  local
2198 aTempValue.Day = aDate.Day; in convertAny()
2199 aTempValue.Month = aDate.Month; in convertAny()
2200 aTempValue.Year = aDate.Year; in convertAny()
2201 aTempValue.HundredthSeconds = 0; in convertAny()
2202 aTempValue.Seconds = 0; in convertAny()
2203 aTempValue.Minutes = 0; in convertAny()
2204 aTempValue.Hours = 0; in convertAny()
2205 SvXMLUnitConverter::convertDateTime(sValue, aTempValue); in convertAny()
2212 com::sun::star::util::DateTime aTempValue; in convertAny() local
2213 aTempValue.Day = 0; in convertAny()
2214 aTempValue.Month = 0; in convertAny()
2215 aTempValue.Year = 0; in convertAny()
2216 aTempValue.HundredthSeconds = aTime.HundredthSeconds; in convertAny()
2217 aTempValue.Seconds = aTime.Seconds; in convertAny()
2218 aTempValue.Minutes = aTime.Minutes; in convertAny()
2219 aTempValue.Hours = aTime.Hours; in convertAny()
2220 SvXMLUnitConverter::convertTime(sValue, aTempValue); in convertAny()
2276 com::sun::star::util::DateTime aTempValue; in convertAny() local
2277 SvXMLUnitConverter::convertDateTime(aTempValue, sValue); in convertAny()
2278 aValue <<= aTempValue; in convertAny()
2284 com::sun::star::util::DateTime aTempValue; in convertAny() local
2286 SvXMLUnitConverter::convertTime(aTempValue, sValue); in convertAny()
2287 aConvValue.HundredthSeconds = aTempValue.HundredthSeconds; in convertAny()
2288 aConvValue.Seconds = aTempValue.Seconds; in convertAny()
2289 aConvValue.Minutes = aTempValue.Minutes; in convertAny()
2290 aConvValue.Hours = aTempValue.Hours; in convertAny()