/external/icu/icu4j/main/classes/core/src/com/ibm/icu/ |
ICUConfig.properties | 10 # The default TimeZone implementation type used by the ICU TimeZone 13 com.ibm.icu.util.TimeZone.DefaultTimeZoneType = ICU
|
/external/icu/icu4j/main/shared/data/ |
security.policy | 23 // getDSTSavings in TimeZone implementation class in sun.util.clanedar. 30 permission java.util.PropertyPermission "user.timezone", "write"; 51 permission java.util.PropertyPermission "com.ibm.icu.util.TimeZone.DefaultTimeZoneType", "read";
|
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/ |
TimeZonePickerDialog.java | 61 String timeZone = null; 65 timeZone = b.getString(BUNDLE_TIME_ZONE); 72 mView = new TimeZonePickerView(getActivity(), null, timeZone, timeMillis, this,
|
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/ |
i18n.py | 43 #: The application default timezone according to the Olson 52 #: A function that receives (store, request) and returns a timezone 106 #: Default timezone code. 112 #: A callable that returns the timezone for a request. 154 """Sets the function that defines the timezone for a request. 157 A callable that receives (store, request) and returns the timezone 230 #: The current timezone code. 231 timezone = None variable in class:I18n 254 def set_timezone(self, timezone): 255 """Sets the timezone code for this request [all...] |
/bionic/libc/bionic/ |
vdso.cpp | 36 extern "C" int __gettimeofday(timeval*, struct timezone*); 60 int gettimeofday(timeval* tv, struct timezone* tz) { 61 static int (*vdso_gettimeofday)(timeval*, struct timezone*) = 62 reinterpret_cast<int (*)(timeval*, struct timezone*)>(vdso_entries[VDSO_GETTIMEOFDAY].fn);
|
/cts/tests/tests/permission/src/android/permission/cts/ |
NoSystemFunctionPermissionTest.java | 32 import java.util.TimeZone; 67 String[] timeZones = TimeZone.getAvailableIDs(); 68 String timeZone = timeZones[0]; 71 alarmManager.setTimeZone(timeZone);
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
cron.yaml | 24 timezone: America/Los_Angele
|
/external/icu/icu4c/source/test/cintltst/ |
cintltst.h | 98 * Call this once to get a consistent timezone. Use ctest_resetTimeZone to set it back to the original value. 99 * @param optionalTimeZone Set this to a requested timezone. 100 * Set to NULL to use the standard test timezone (Pacific Time) 104 * Call this once get back the original timezone
|
/frameworks/base/core/java/android/widget/ |
TextClock.java | 41 import java.util.TimeZone; 158 final String timeZone = intent.getStringExtra("time-zone"); 159 createTime(timeZone); 251 private void createTime(String timeZone) { 252 if (timeZone != null) { 253 mTime = Calendar.getInstance(TimeZone.getTimeZone(timeZone)); 424 * @see TimeZone 425 * @see java.util.TimeZone#getAvailableIDs() 437 * @param timeZone The desired time zone's ID as specified in {@link TimeZone [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
IcuBenchmark.java | 22 import java.util.TimeZone;
|
/libcore/luni/src/main/java/java/text/ |
DateFormatSymbols.java | 26 import java.util.TimeZone; 324 // If icu4c doesn't have a name, our array contains a null. TimeZone.getDisplayName 329 zone[1] = TimeZone.getTimeZone(id).getDisplayName(false, TimeZone.LONG, locale); 332 zone[2] = TimeZone.getTimeZone(id).getDisplayName(false, TimeZone.SHORT, locale); 335 zone[3] = TimeZone.getTimeZone(id).getDisplayName(true, TimeZone.LONG, locale); 338 zone[4] = TimeZone.getTimeZone(id).getDisplayName(true, TimeZone.SHORT, locale) [all...] |
/prebuilts/tools/common/m2/repository/org/easymock/easymock/2.4/ |
easymock-2.4.pom | 21 <timezone>+1</timezone>
29 <timezone>+1</timezone>
|
/prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/ |
easymock-3.1.pom | 26 <timezone>+1</timezone>
34 <timezone>+1</timezone>
|
/prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/ |
easymock-3.3.pom | 23 <timezone>+1</timezone> 29 <timezone>-5</timezone>
|
/packages/apps/Exchange/tests/src/com/android/exchange/utility/ |
CalendarUtilitiesTests.java | 45 import java.util.TimeZone; 83 // Test a timezone with GMT bias but bogus DST parameters (there is no equivalent time zone 138 TimeZone tz = CalendarUtilities.tziStringToTimeZone(AMERICA_DAWSON_TIME); 162 TimeZone.setDefault(TimeZone.getTimeZone("America/Phoenix")); 165 TimeZone.setDefault(TimeZone.getTimeZone("Pacific/Honolulu")); 170 TimeZone azTime = TimeZone.getTimeZone("America/Phoenix"); 171 TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles")) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettingsSetupWizard.java | 46 import java.util.TimeZone; 69 private TimeZone mSelectedTimeZone; 104 // Currently just comment out codes related to auto timezone. 114 final TimeZone tz = TimeZone.getDefault(); 173 final TimeZone systemTimeZone = TimeZone.getDefault(); 175 Log.i(TAG, "Another TimeZone is selected by a user. Changing system TimeZone."); 234 final TimeZone tz = ZonePicker.obtainTimeZoneFromItem(parent.getItemAtPosition(position)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1GeneralizedTime.java | 9 import java.util.TimeZone; 208 TimeZone timeZone = TimeZone.getDefault(); 209 int offset = timeZone.getRawOffset(); 220 if (timeZone.useDaylightTime() && timeZone.inDaylightTime(this.getDate())) 288 dateF.setTimeZone(new SimpleTimeZone(0, TimeZone.getDefault().getID()));
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
DurationFormatter.java | 11 import java.util.TimeZone; 75 DurationFormatter withTimeZone(TimeZone tz);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
TimeZoneFormatTest.java | 37 import com.ibm.icu.util.TimeZone; 38 import com.ibm.icu.util.TimeZone.SystemTimeZoneType; 44 private static boolean JDKTZ = (TimeZone.getDefaultTimeZoneType() == TimeZone.TIMEZONE_JDK); 78 * Test case for checking if a TimeZone is properly set in the result calendar 79 * and if the result TimeZone has the expected behavior. 84 TimeZone unknownZone = new SimpleTimeZone(-31415, "Etc/Unknown"); 97 Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")); 125 tzids = java.util.TimeZone.getAvailableIDs(); 127 tzids = TimeZone.getAvailableIDs() [all...] |
/external/libpcap/lbl/ |
os-ultrix4.h | 32 struct timezone; 34 int gettimeofday(struct timeval *, struct timezone *);
|
/external/tcpdump/lbl/ |
os-ultrix4.h | 32 struct timezone; 34 int gettimeofday(struct timeval *, struct timezone *);
|
/frameworks/base/services/core/java/com/android/server/updates/ |
TzDataInstallReceiver.java | 26 * An install receiver responsible for installing timezone data updates. 49 Slog.i(TAG, "Timezone data install valid for this device: " + valid);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Time.java | 28 import java.util.TimeZone; 44 GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/reporting/maven-reporting-api/2.0.6/ |
maven-reporting-api-2.0.6.pom | 39 <timezone>-5</timezone>
|
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/ |
commons-exec-1.1.pom | 49 <timezone>+10</timezone> 55 <timezone>+1</timezone> 61 <timezone>+1</timezone> 67 <timezone>+1</timezone>
|