HomeSort by relevance Sort by last modified time
    Searched refs:defaultTimeZoneId (Results 1 - 6 of 6) sorted by null

  /system/timezone/tzlookup_generator/src/main/proto/
country_zones_file.proto 31 optional string defaultTimeZoneId = 2;
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
TzLookupGenerator.java 242 String defaultTimeZoneId = determineCountryDefaultZoneId(countryIn, processingErrors);
243 if (defaultTimeZoneId == null) {
249 if (!countryTimeZoneIds.contains(defaultTimeZoneId)) {
250 processingErrors.addError("defaultTimeZoneId=" + defaultTimeZoneId
311 new TzLookupFile.Country(isoCode, defaultTimeZoneId, everUsesUtc);
359 String defaultTimeZoneId;
361 defaultTimeZoneId = countryIn.getDefaultTimeZoneId();
362 if (invalidTimeZoneId(defaultTimeZoneId)) {
364 "Default time zone ID " + defaultTimeZoneId + " is not valid")
    [all...]
TzLookupFile.java 166 private final String defaultTimeZoneId;
170 Country(String isoCode, String defaultTimeZoneId, boolean everUsesUtc) {
171 this.defaultTimeZoneId = defaultTimeZoneId;
184 writer.writeAttribute(DEFAULT_ATTRIBUTE, country.defaultTimeZoneId);
  /system/timezone/input_data/android/
countryzones.txt 42 # defaultTimeZoneId:
43 # The (optional) defaultTimeZoneId is used to specify which of the time
46 # has only one obvious choice then the defaultTimeZoneId can be omitted.
174 defaultTimeZoneId:"Antarctica/McMurdo"
234 defaultTimeZoneId:"America/Argentina/Buenos_Aires"
334 defaultTimeZoneId:"Australia/Sydney"
580 defaultTimeZoneId:"America/Noronha"
737 defaultTimeZoneId:"America/St_Johns"
925 defaultTimeZoneId:"Africa/Kinshasa"
985 defaultTimeZoneId:"America/Santiago
    [all...]
  /libcore/luni/src/main/java/libcore/util/
TimeZoneFinder.java 363 String defaultTimeZoneId = parser.getAttributeValue(
365 if (defaultTimeZoneId == null || defaultTimeZoneId.isEmpty()) {
380 boolean result = processor.processCountryZones(code, defaultTimeZoneId, everUsesUtc,
622 default boolean processCountryZones(String countryIso, String defaultTimeZoneId,
642 public boolean processCountryZones(String countryIso, String defaultTimeZoneId,
657 if (!TimeZoneMapping.containsTimeZoneId(timeZoneMappings, defaultTimeZoneId)) {
658 throw new XmlPullParserException("defaultTimeZoneId for country code: "
695 public boolean processCountryZones(String countryIso, String defaultTimeZoneId,
700 countryIso, defaultTimeZoneId, everUsesUtc, timeZoneMappings, debugInfo)
    [all...]
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneData.java 66 public TimeZoneData(Context context, String defaultTimeZoneId, long timeMillis) {
69 mDefaultTimeZoneId = mAlternateDefaultTimeZoneId = defaultTimeZoneId;

Completed in 936 milliseconds