Lines Matching refs:aDate

1319     Date aDate( 0, 0, 0 );  in ImplDateReformat()  local
1320 …if ( !ImplDateGetValue( rStr, aDate, GetExtDateFormat(sal_True), ImplGetLocaleDataWrapper(), GetCa… in ImplDateReformat()
1323 Date aTempDate = aDate; in ImplDateReformat()
1329 if ( GetErrorHdl().IsSet() && (aDate != aTempDate) ) in ImplDateReformat()
1530 Date aDate( GetDate() ); in ImplDateSpinArea() local
1535 ImplDateIncrementDay( aDate, bUp ); in ImplDateSpinArea()
1571 case 1: ImplDateIncrementMonth( aDate, bUp ); in ImplDateSpinArea()
1573 case 2: ImplDateIncrementDay( aDate, bUp ); in ImplDateSpinArea()
1575 case 3: ImplDateIncrementYear( aDate, bUp ); in ImplDateSpinArea()
1583 case 1: ImplDateIncrementDay( aDate, bUp ); in ImplDateSpinArea()
1585 case 2: ImplDateIncrementMonth( aDate, bUp ); in ImplDateSpinArea()
1587 case 3: ImplDateIncrementYear( aDate, bUp ); in ImplDateSpinArea()
1597 case 1: ImplDateIncrementYear( aDate, bUp ); in ImplDateSpinArea()
1599 case 2: ImplDateIncrementMonth( aDate, bUp ); in ImplDateSpinArea()
1601 case 3: ImplDateIncrementDay( aDate, bUp ); in ImplDateSpinArea()
1611 ImplNewFieldValue( aDate ); in ImplDateSpinArea()
1897 Date aDate( 0, 0, 0 ); in GetDate() local
1901 …if ( ImplDateGetValue( GetField()->GetText(), aDate, GetExtDateFormat(sal_True), ImplGetLocaleData… in GetDate()
1903 if ( aDate > maMax ) in GetDate()
1904 aDate = maMax; in GetDate()
1905 else if ( aDate < maMin ) in GetDate()
1906 aDate = maMin; in GetDate()
1918 aDate = maLastDate; in GetDate()
1920 aDate = Date(); in GetDate()
1923 aDate = GetInvalidDate(); in GetDate()
1927 return aDate; in GetDate()
1937 Date aDate( 0, 0, 0 ); in GetRealDate() local
1941 …if ( !ImplDateGetValue( GetField()->GetText(), aDate, GetExtDateFormat(sal_True), ImplGetLocaleDat… in GetRealDate()
1943 aDate = GetInvalidDate(); in GetRealDate()
1946 return aDate; in GetRealDate()
1970 Date aDate; in IsEmptyDate() local
1971 …bEmpty = !ImplDateGetValue( GetField()->GetText(), aDate, GetExtDateFormat(sal_True), ImplGetLocal… in IsEmptyDate()
2147 Date aDate( 0, 0, 0 ); in Notify() local
2148 …if ( ImplDateGetValue( GetText(), aDate, GetExtDateFormat(sal_True), ImplGetLocaleDataWrapper(), G… in Notify()
2337 Date aDate = rDate; in InsertDate() local
2338 if ( aDate > GetMax() ) in InsertDate()
2339 aDate = GetMax(); in InsertDate()
2340 else if ( aDate < GetMin() ) in InsertDate()
2341 aDate = GetMin(); in InsertDate()
2343 ComboBox::InsertEntry( ImplGetDateAsText( aDate, GetFieldSettings() ), nPos ); in InsertDate()
2357 Date aDate( 0, 0, 0 ); in GetDate() local
2358 …ImplDateGetValue( ComboBox::GetEntry( nPos ), aDate, GetExtDateFormat(sal_True), ImplGetLocaleData… in GetDate()
2359 return aDate; in GetDate()