OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:useMonth
(Results
1 - 14
of
14
) sorted by null
/external/icu4c/i18n/
buddhcal.h
163
* @param month the zero-based month, or 0 if
useMonth
is false
164
* @param
useMonth
if false, compute the day before the first day of
172
UBool
useMonth
) const;
cecal.h
69
virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const;
indiancal.h
226
virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const;
persncal.h
220
virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const;
buddhcal.cpp
81
UBool
useMonth
) const
83
return GregorianCalendar::handleComputeMonthStart(eyear, month,
useMonth
);
chnsecal.h
143
virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const;
hebrwcal.h
353
* @param month the zero-based month, or 0 if
useMonth
is false
354
* @param
useMonth
if false, compute the day before the first day of
362
UBool
useMonth
) const;
islamcal.h
317
virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const;
persncal.cpp
315
int32_t PersianCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const {
322
return jalali_to_julian(eyear,(
useMonth
?month+1:1),1)-1+1947955;
chnsecal.cpp
286
int32_t ChineseCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, UBool
useMonth
) const {
308
// Ignore IS_LEAP_MONTH field if
useMonth
is false
309
int32_t isLeapMonth =
useMonth
? saveIsLeapMonth : 0;
calendar.cpp
[
all
...]
/external/icu4c/i18n/unicode/
gregocal.h
500
* @param month the zero-based month, or 0 if
useMonth
is false
501
* @param
useMonth
if false, compute the day before the first day of
509
UBool
useMonth
) const;
[
all
...]
calendar.h
[
all
...]
/libcore/luni/src/main/java/java/util/
GregorianCalendar.java
802
boolean
useMonth
= (isSet[DATE] || isSet[MONTH] || weekMonthSet)
804
if (
useMonth
807
useMonth
= lastDateFieldSet != WEEK_OF_YEAR && weekMonthSet
810
useMonth
= isSet[DATE] && isSet[MONTH];
814
if (
useMonth
) {
[
all
...]
Completed in 179 milliseconds