Lines Matching refs:ca
193 Calendar ca = Calendar.getInstance(); in getCurrentDateTime() local
195 currentDateTime.Year = (short)ca.get(Calendar.YEAR); in getCurrentDateTime()
197 currentDateTime.Month = (short)(ca.get(Calendar.MONTH) + 1); in getCurrentDateTime()
198 currentDateTime.Day = (short)ca.get(Calendar.DATE); in getCurrentDateTime()
199 currentDateTime.Minutes = (short)ca.get(Calendar.MINUTE); in getCurrentDateTime()
200 currentDateTime.Hours = (short)ca.get(Calendar.HOUR_OF_DAY); in getCurrentDateTime()
201 currentDateTime.Seconds = (short)ca.get(Calendar.SECOND); in getCurrentDateTime()
207 Calendar ca = Calendar.getInstance(); in getCurrentDate() local
209 currentDate.Year = (short)ca.get(Calendar.YEAR); in getCurrentDate()
211 currentDate.Month = (short)(ca.get(Calendar.MONTH) + 1); in getCurrentDate()
212 currentDate.Day = (short)ca.get(Calendar.DATE); in getCurrentDate()