HomeSort by relevance Sort by last modified time
    Searched refs:GMT (Results 1 - 25 of 41) sorted by null

1 2

  /external/apache-http/src/org/apache/http/protocol/
HttpDateGenerator.java 57 public static final TimeZone GMT = TimeZone.getTimeZone("GMT");
68 this.dateformat.setTimeZone(GMT);
  /external/webkit/LayoutTests/http/tests/cookies/resources/
clearCookies.cgi 20 $cookie =~ s/Expires *= *[^;]+/Expires=Thu, 01 Jan 1970 00:00:00 GMT/i;
24 $cookie .= "Expires=Thu, 01 Jan 1970 00:00:00 GMT";
  /external/chromium/net/data/proxy_resolver_v8_unittest/
pac_library_unittest.js 172 // Test with GMT time.
173 MockDate.setCurrent("Tue Mar 03 2009 GMT");
174 t.expectEquals(true, weekdayRange("MON", "FRI", "GMT"));
175 t.expectEquals(true, weekdayRange("TUE", "FRI", "GMT"));
176 t.expectEquals(true, weekdayRange("TUE", "TUE", "GMT"));
177 t.expectEquals(true, weekdayRange("TUE", "GMT"));
178 t.expectEquals(false, weekdayRange("WED", "FRI", "GMT"));
179 t.expectEquals(false, weekdayRange("SUN", "MON", "GMT"));
180 t.expectEquals(false, weekdayRange("SAT", "GMT"));
189 // dateRange(day, "GMT")
    [all...]
  /libcore/luni/src/main/java/java/util/
TimeZone.java 67 private static final Pattern CUSTOM_ZONE_ID_PATTERN = Pattern.compile("^GMT[-+](\\d{1,2})(:?(\\d\\d))?$");
71 * style may yield GMT offsets like {@code GMT-08:00}.
77 * Requests for this style may yield GMT offsets like {@code GMT-08:00}.
81 private static final TimeZone GMT = new SimpleTimeZone(0, "GMT");
163 * {@code GMT[+-]hh:mm}.
182 // than "GMT+12:00". Why do we re-do this work ourselves? Because we have up-to-date
202 builder.append("GMT");
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 58 public static final String GMT = SIPDate.GMT;
  /external/v8/test/mjsunit/
date-parse.js 135 // GMT = UT
137 'Sat, 01-Jan-2000 08:00:00 GMT',
138 'Sat, 01-Jan-2000 08:00:00 GMT+0',
139 'Sat, 01-Jan-2000 08:00:00 GMT+00',
140 'Sat, 01-Jan-2000 08:00:00 GMT+000',
141 'Sat, 01-Jan-2000 08:00:00 GMT+0000',
142 'Sat, 01-Jan-2000 08:00:00 GMT+00:00', // Interestingly, KJS cannot handle this.
143 'Sat, 01 Jan 2000 08:00:00 GMT',
144 'Saturday, 01-Jan-00 08:00:00 GMT',
290 'May 25 2008 AAA (GMT)']; // Unknown word after number
    [all...]
json.js 30 assertEquals("1979-01-11T08:00:00.000Z", new Date("1979-01-11 08:00 GMT").toJSON());
31 assertEquals("2005-05-05T05:05:05.000Z", new Date("2005-05-05 05:05:05 GMT").toJSON());
  /external/apache-http/src/org/apache/http/impl/cookie/
DateUtils.java 78 public static final TimeZone GMT = TimeZone.getTimeZone("GMT");
82 calendar.setTimeZone(GMT);
252 format.setTimeZone(TimeZone.getTimeZone("GMT"));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
15.9.5.7.js 32 The only headache is that as of this writing the "GMT ..." portion of
144 * WAS: Mon Jan 07 13:40:34 GMT-0800 (Pacific Standard Time) 2002
145 * NOW: Mon Jan 07 2002 13:40:34 GMT-0800 (Pacific Standard Time)
150 * Then remove the GMT string from TimeString (see introduction above)
165 * Now remove the GMT part of the TimeString.
166 * Guard against dates with two "GMT"s, like:
167 * Jan 01 00:00:00 GMT+0000 (GMT Standard Time)
169 regexp= /([^G]*)GMT.*/;
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPDate.java 54 * Date: Tue, 15 Nov 1994 08:12:31 GMT
71 public static final String GMT = "GMT";
169 TimeZone.getTimeZone("GMT:0"),
299 + GMT;
352 * SIP Dates are forced to be GMT. Stores the converted time
358 TimeZone.getTimeZone("GMT:0"),
  /external/webkit/LayoutTests/storage/
sql-data-types.js 15 timestamp: new Date("Wed Feb 06 2008 12:16:52 GMT+0200 (EET)").valueOf(),
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 149 // Difference to Greenwich time (GMT) in hours
183 // Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 149 // Difference to Greenwich time (GMT) in hours
183 // Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
binaryajax.js 191 oHTTP.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 1970 00:00:00 GMT");
  /external/v8/src/
date.js 261 var gmt = ' GMT' + ((sign == 1) ? '+' : '-') +
263 return gmt + ' (' + timezone + ')';
701 // Return UTC string of the form: Sat, 31 Jan 1970 23:00:00 GMT
706 + TimeStringUTC(this) + ' GMT';
  /external/icu4c/test/intltest/
calregts.cpp 486 Calendar *cal = Calendar::createInstance(TimeZone::createTimeZone("GMT"),
755 TimeZone *newZone = TimeZone::createTimeZone("GMT");
858 TimeZone *GMT = TimeZone::createTimeZone("GMT");
865 delete GMT;
877 cal1->setTimeZone(*GMT);
878 logln(UnicodeString("GMT 2 is: ") + (h2=cal1->get(UCAL_HOUR_OF_DAY, status)));
879 if ((*GMT != *PST) && (h1 == h2))
882 Calendar *cal2 = new GregorianCalendar(*GMT,status);
898 cal3->setTimeZone(*GMT);
    [all...]
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
httpclient-4.0.3.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 

Completed in 683 milliseconds

1 2