OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zoneStrings
(Results
1 - 9
of
9
) sorted by null
/external/icu/android_icu4j/src/main/java/android/icu/impl/
TZDBTimeZoneNames.java
50
private static final ICUResourceBundle
ZONESTRINGS
;
54
ZONESTRINGS
= (ICUResourceBundle)bundle.get("
zoneStrings
");
153
static TZDBNames getInstance(ICUResourceBundle
zoneStrings
, String key) {
154
if (
zoneStrings
== null || key == null || key.length() == 0) {
160
table = (ICUResourceBundle)
zoneStrings
.get(key);
344
names = TZDBNames.getInstance(
ZONESTRINGS
, "meta:" + mzID);
TimeZoneNamesImpl.java
46
private static final String ZONE_STRINGS_BUNDLE = "
zoneStrings
";
594
void loadMetaZone(ICUResourceBundle
zoneStrings
, String mzID) {
596
loadNames(
zoneStrings
, key);
599
void loadTimeZone(ICUResourceBundle
zoneStrings
, String tzID) {
601
loadNames(
zoneStrings
, key);
604
void loadNames(ICUResourceBundle
zoneStrings
, String key) {
605
assert
zoneStrings
!= null;
612
zoneStrings
.getAllItemsWithFallback(key, this);
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TZDBTimeZoneNames.java
48
private static final ICUResourceBundle
ZONESTRINGS
;
52
ZONESTRINGS
= (ICUResourceBundle)bundle.get("
zoneStrings
");
151
static TZDBNames getInstance(ICUResourceBundle
zoneStrings
, String key) {
152
if (
zoneStrings
== null || key == null || key.length() == 0) {
158
table = (ICUResourceBundle)
zoneStrings
.get(key);
342
names = TZDBNames.getInstance(
ZONESTRINGS
, "meta:" + mzID);
TimeZoneNamesImpl.java
44
private static final String ZONE_STRINGS_BUNDLE = "
zoneStrings
";
592
void loadMetaZone(ICUResourceBundle
zoneStrings
, String mzID) {
594
loadNames(
zoneStrings
, key);
597
void loadTimeZone(ICUResourceBundle
zoneStrings
, String tzID) {
599
loadNames(
zoneStrings
, key);
602
void loadNames(ICUResourceBundle
zoneStrings
, String key) {
603
assert
zoneStrings
!= null;
610
zoneStrings
.getAllItemsWithFallback(key, this);
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DateFormatSymbols.java
561
* <li><code>
zoneStrings
[i][0]</code> - time zone ID</li>
562
* <li><code>
zoneStrings
[i][1]</code> - long name of zone in standard
564
* <li><code>
zoneStrings
[i][2]</code> - short name of zone in
566
* <li><code>
zoneStrings
[i][3]</code> - long name of zone in daylight
568
* <li><code>
zoneStrings
[i][4]</code> - short name of zone in daylight
570
* <li><code>
zoneStrings
[i][5]</code> - location name of zone</li>
571
* <li><code>
zoneStrings
[i][6]</code> - long generic name of zone</li>
572
* <li><code>
zoneStrings
[i][7]</code> - short generic of zone</li>
587
private String
zoneStrings
[][] = null;
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateFormatSymbols.java
573
* <li><code>
zoneStrings
[i][0]</code> - time zone ID</li>
574
* <li><code>
zoneStrings
[i][1]</code> - long name of zone in standard
576
* <li><code>
zoneStrings
[i][2]</code> - short name of zone in
578
* <li><code>
zoneStrings
[i][3]</code> - long name of zone in daylight
580
* <li><code>
zoneStrings
[i][4]</code> - short name of zone in daylight
582
* <li><code>
zoneStrings
[i][5]</code> - location name of zone</li>
583
* <li><code>
zoneStrings
[i][6]</code> - long generic name of zone</li>
584
* <li><code>
zoneStrings
[i][7]</code> - short generic of zone</li>
599
private String
zoneStrings
[][] = null;
[
all
...]
/external/icu/icu4c/source/i18n/
tzgnames.cpp
41
static const char gZoneStrings[] = "
zoneStrings
";
367
UResourceBundle *
zoneStrings
= ures_open(U_ICUDATA_ZONE, locale.getName(), &tmpsts);
368
zoneStrings
= ures_getByKeyWithFallback(
zoneStrings
, gZoneStrings,
zoneStrings
, &tmpsts);
371
const UChar *regionPattern = ures_getStringByKeyWithFallback(
zoneStrings
, gRegionFormatTag, NULL, &tmpsts);
376
const UChar *fallbackPattern = ures_getStringByKeyWithFallback(
zoneStrings
, gFallbackFormatTag, NULL, &tmpsts);
381
ures_close(
zoneStrings
);
[
all
...]
tznames_impl.cpp
41
static const char gZoneStrings[] = "
zoneStrings
";
742
void loadMetaZone(const UResourceBundle*
zoneStrings
, const UnicodeString& mzID, UErrorCode& errorCode) {
748
loadNames(
zoneStrings
, key, errorCode);
751
void loadTimeZone(const UResourceBundle*
zoneStrings
, const UnicodeString& tzID, UErrorCode& errorCode) {
763
loadNames(
zoneStrings
, key, errorCode);
766
void loadNames(const UResourceBundle*
zoneStrings
, const char* key, UErrorCode& errorCode) {
767
U_ASSERT(
zoneStrings
!= NULL);
773
ures_getAllItemsWithFallback(
zoneStrings
, key, *this, localStatus);
[
all
...]
/external/cldr/tools/java/libs/
icu4j.jar
Completed in 2634 milliseconds