OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IndianCalendar
(Results
1 - 19
of
19
) sorted by null
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IndianTest.java
18
import android.icu.util.
IndianCalendar
;
25
* Tests for the <code>
IndianCalendar
</code> class.
34
public static final int CHAITRA =
IndianCalendar
.CHAITRA + 1;
35
public static final int VAISAKHA =
IndianCalendar
.VAISAKHA + 1;
36
public static final int JYAISTHA =
IndianCalendar
.JYAISTHA + 1;
37
public static final int ASADHA =
IndianCalendar
.ASADHA + 1;
38
public static final int SRAVANA =
IndianCalendar
.SRAVANA + 1 ;
39
public static final int BHADRA =
IndianCalendar
.BHADRA + 1 ;
40
public static final int ASVINA =
IndianCalendar
.ASVINA + 1 ;
41
public static final int KARTIKA =
IndianCalendar
.KARTIKA + 1
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IndianTest.java
17
import com.ibm.icu.util.
IndianCalendar
;
22
* Tests for the <code>
IndianCalendar
</code> class.
30
public static final int CHAITRA =
IndianCalendar
.CHAITRA + 1;
31
public static final int VAISAKHA =
IndianCalendar
.VAISAKHA + 1;
32
public static final int JYAISTHA =
IndianCalendar
.JYAISTHA + 1;
33
public static final int ASADHA =
IndianCalendar
.ASADHA + 1;
34
public static final int SRAVANA =
IndianCalendar
.SRAVANA + 1 ;
35
public static final int BHADRA =
IndianCalendar
.BHADRA + 1 ;
36
public static final int ASVINA =
IndianCalendar
.ASVINA + 1 ;
37
public static final int KARTIKA =
IndianCalendar
.KARTIKA + 1
[
all
...]
/external/icu/icu4c/source/i18n/
indiancal.cpp
29
// Implementation of the
IndianCalendar
class
36
Calendar*
IndianCalendar
::clone() const {
37
return new
IndianCalendar
(*this);
40
IndianCalendar
::
IndianCalendar
(const Locale& aLocale, UErrorCode& success)
46
IndianCalendar
::
IndianCalendar
(const
IndianCalendar
& other) : Calendar(other) {
49
IndianCalendar
::~
IndianCalendar
()
[
all
...]
indiancal.h
25
* <code>
IndianCalendar
</code> is a subclass of <code>Calendar</code>
69
class
IndianCalendar
: public Calendar {
72
* Useful constants for
IndianCalendar
.
142
* Constructs an
IndianCalendar
based on the current time in the default time zone
146
* @param success Indicates the status of
IndianCalendar
object construction.
151
IndianCalendar
(const Locale& aLocale, UErrorCode &success);
157
IndianCalendar
(const
IndianCalendar
& other);
163
virtual ~
IndianCalendar
();
286
IndianCalendar
(); // default constructor not implemente
[
all
...]
calendar.cpp
370
cal = new
IndianCalendar
(loc, status);
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
IndianCalendar.java
17
* <code>
IndianCalendar
</code> is a subclass of <code>GregorianCalendar</code>
59
*
IndianCalendar
usually should be instantiated using
66
public class
IndianCalendar
extends Calendar {
143
* Constructs a <code>
IndianCalendar
</code> using the current time
147
public
IndianCalendar
() {
152
* Constructs a <code>
IndianCalendar
</code> based on the current time
158
public
IndianCalendar
(TimeZone zone) {
163
* Constructs a <code>
IndianCalendar
</code> based on the current time
168
public
IndianCalendar
(Locale aLocale) {
173
* Constructs a <code>
IndianCalendar
</code> based on the current tim
[
all
...]
Calendar.java
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
IndianCalendar.java
16
* <code>
IndianCalendar
</code> is a subclass of <code>GregorianCalendar</code>
58
*
IndianCalendar
usually should be instantiated using
67
public class
IndianCalendar
extends Calendar {
157
* Constructs a <code>
IndianCalendar
</code> using the current time
162
public
IndianCalendar
() {
167
* Constructs a <code>
IndianCalendar
</code> based on the current time
174
public
IndianCalendar
(TimeZone zone) {
179
* Constructs a <code>
IndianCalendar
</code> based on the current time
185
public
IndianCalendar
(Locale aLocale) {
190
* Constructs a <code>
IndianCalendar
</code> based on the current tim
[
all
...]
Calendar.java
[
all
...]
/external/icu/icu4c/source/test/intltest/
calcasts.cpp
315
static const int32_t CHAITRA =
IndianCalendar
::CHAITRA + 1;
316
static const int32_t VAISAKHA =
IndianCalendar
::VAISAKHA + 1;
317
static const int32_t JYAISTHA =
IndianCalendar
::JYAISTHA + 1;
318
static const int32_t ASADHA =
IndianCalendar
::ASADHA + 1;
319
static const int32_t SRAVANA =
IndianCalendar
::SRAVANA + 1 ;
320
static const int32_t BHADRA =
IndianCalendar
::BHADRA + 1 ;
321
static const int32_t ASVINA =
IndianCalendar
::ASVINA + 1 ;
322
static const int32_t KARTIKA =
IndianCalendar
::KARTIKA + 1 ;
323
static const int32_t AGRAHAYANA =
IndianCalendar
::AGRAHAYANA + 1 ;
324
static const int32_t PAUSA =
IndianCalendar
::PAUSA + 1
[
all
...]
uobjtest.cpp
382
TESTCLASSID_FACTORY(
IndianCalendar
, Calendar::createInstance(Locale("@calendar=indian"), status));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CalendarTests.java
22
import android.icu.util.
IndianCalendar
;
187
IndianCalendar
calendars[] = new
IndianCalendar
[locales.length];
190
calendars[i] = new
IndianCalendar
(jst, locales[i]);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
CalendarTests.java
21
import com.ibm.icu.util.
IndianCalendar
;
186
IndianCalendar
calendars[] = new
IndianCalendar
[locales.length];
189
calendars[i] = new
IndianCalendar
(jst, locales[i]);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar
/prebuilts/misc/common/icu4j/
icu4j.jar
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/system_current/
android.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar
Completed in 367 milliseconds