Home
last modified time | relevance | path

Searched full:2003 (Results 1 – 25 of 7524) sorted by relevance

12345678910>>...301

/external/python/dateutil/dateutil/test/
Dtest_parser.py32 ("Thu Sep 25 10:36:28 2003", datetime(2003, 9, 25, 10, 36, 28), "date command format strip"),
33 ("Thu Sep 25 2003", datetime(2003, 9, 25), "date command format strip"),
34 ("2003-09-25T10:49:41", datetime(2003, 9, 25, 10, 49, 41), "iso format strip"),
35 ("2003-09-25T10:49", datetime(2003, 9, 25, 10, 49), "iso format strip"),
36 ("2003-09-25T10", datetime(2003, 9, 25, 10), "iso format strip"),
37 ("2003-09-25", datetime(2003, 9, 25), "iso format strip"),
38 ("20030925T104941", datetime(2003, 9, 25, 10, 49, 41), "iso stripped format strip"),
39 ("20030925T1049", datetime(2003, 9, 25, 10, 49, 0), "iso stripped format strip"),
40 ("20030925T10", datetime(2003, 9, 25, 10), "iso stripped format strip"),
41 ("20030925", datetime(2003, 9, 25), "iso stripped format strip"),
[all …]
Dtest_relativedelta.py13 now = datetime(2003, 9, 17, 20, 54, 47, 282310)
14 today = date(2003, 9, 17)
43 self.assertEqual(relativedelta(datetime(2003, 1, 31, 23, 59, 59),
44 datetime(2003, 3, 1, 0, 0, 0)),
47 self.assertEqual(relativedelta(datetime(2003, 3, 1, 0, 0, 0),
48 datetime(2003, 1, 31, 23, 59, 59)),
56 self.assertEqual(relativedelta(datetime(2003, 3, 1, 0, 0, 0),
57 datetime(2003, 1, 31, 23, 59, 59)),
62 datetime(2003, 10, 17, 20, 54, 47, 282310))
66 datetime(2003, 10, 24, 20, 54, 47, 282310))
[all …]
/external/freetype/builds/wince/vc2005-ce/
Dfreetype.sln7 LIB Debug Multithreaded|Pocket PC 2003 (ARMV4) = LIB Debug Multithreaded|Pocket PC 2003 (ARMV4)
8 LIB Debug Multithreaded|Smartphone 2003 (ARMV4) = LIB Debug Multithreaded|Smartphone 2003 (ARMV4)
13 LIB Debug Singlethreaded|Pocket PC 2003 (ARMV4) = LIB Debug Singlethreaded|Pocket PC 2003 (ARMV4)
14 …LIB Debug Singlethreaded|Smartphone 2003 (ARMV4) = LIB Debug Singlethreaded|Smartphone 2003 (ARMV4)
19 LIB Debug|Pocket PC 2003 (ARMV4) = LIB Debug|Pocket PC 2003 (ARMV4)
20 LIB Debug|Smartphone 2003 (ARMV4) = LIB Debug|Smartphone 2003 (ARMV4)
25 …LIB Release Multithreaded|Pocket PC 2003 (ARMV4) = LIB Release Multithreaded|Pocket PC 2003 (ARMV4)
26 …LIB Release Multithreaded|Smartphone 2003 (ARMV4) = LIB Release Multithreaded|Smartphone 2003 (ARM…
31 …LIB Release Singlethreaded|Pocket PC 2003 (ARMV4) = LIB Release Singlethreaded|Pocket PC 2003 (ARM…
32 …LIB Release Singlethreaded|Smartphone 2003 (ARMV4) = LIB Release Singlethreaded|Smartphone 2003 (A…
[all …]
/external/freetype/builds/wince/vc2008-ce/
Dfreetype.sln7 LIB Debug Multithreaded|Pocket PC 2003 (ARMV4) = LIB Debug Multithreaded|Pocket PC 2003 (ARMV4)
8 LIB Debug Multithreaded|Smartphone 2003 (ARMV4) = LIB Debug Multithreaded|Smartphone 2003 (ARMV4)
13 LIB Debug Singlethreaded|Pocket PC 2003 (ARMV4) = LIB Debug Singlethreaded|Pocket PC 2003 (ARMV4)
14 …LIB Debug Singlethreaded|Smartphone 2003 (ARMV4) = LIB Debug Singlethreaded|Smartphone 2003 (ARMV4)
19 LIB Debug|Pocket PC 2003 (ARMV4) = LIB Debug|Pocket PC 2003 (ARMV4)
20 LIB Debug|Smartphone 2003 (ARMV4) = LIB Debug|Smartphone 2003 (ARMV4)
25 …LIB Release Multithreaded|Pocket PC 2003 (ARMV4) = LIB Release Multithreaded|Pocket PC 2003 (ARMV4)
26 …LIB Release Multithreaded|Smartphone 2003 (ARMV4) = LIB Release Multithreaded|Smartphone 2003 (ARM…
31 …LIB Release Singlethreaded|Pocket PC 2003 (ARMV4) = LIB Release Singlethreaded|Pocket PC 2003 (ARM…
32 …LIB Release Singlethreaded|Smartphone 2003 (ARMV4) = LIB Release Singlethreaded|Smartphone 2003 (A…
[all …]
/external/python/dateutil/docs/
Dexamples.rst13 NOW = datetime(2003, 9, 17, 20, 54, 47, 282310)
14 TODAY = date(2003, 9, 17)
26 datetime.datetime(2003, 9, 17, 20, 54, 47, 282310)
28 datetime.date(2003, 9, 17)
35 datetime.datetime(2003, 10, 17, 20, 54, 47, 282310)
42 datetime.datetime(2003, 10, 24, 20, 54, 47, 282310)
49 datetime.datetime(2003, 10, 24, 10, 0)
67 >>> relativedelta(datetime(2003, 10, 24, 10, 0), TODAY)
83 >>> date(2003,1,27)+relativedelta(months=+1)
84 datetime.date(2003, 2, 27)
[all …]
Drelativedelta.rst15 >>> NOW = datetime(2003, 9, 17, 20, 54, 47, 282310)
16 >>> TODAY = date(2003, 9, 17)
28 datetime.datetime(2003, 9, 17, 20, 54, 47, 282310)
30 datetime.date(2003, 9, 17)
37 datetime.datetime(2003, 10, 17, 20, 54, 47, 282310)
44 datetime.datetime(2003, 10, 24, 20, 54, 47, 282310)
51 datetime.datetime(2003, 10, 24, 10, 0)
69 >>> relativedelta(datetime(2003, 10, 24, 10, 0), TODAY)
85 >>> date(2003,1,27)+relativedelta(months=+1)
86 datetime.date(2003, 2, 27)
[all …]
/external/sdv/vsomeip/third_party/boost/date_time/test/gregorian/
Dtestgenerators.cpp1 /* Copyright (c) 2002,2003,2005 CrystalClear Software, Inc.
87 check("nth_kday fifth wed jan 2003 2003-Jan-29", in main()
88 date(2003, Jan, 29) == nkd3.get_date(2003)); in main()
91 check("nth_kday fifth mon jan 2003 (actaully 4th) 2003-Jan-27", in main()
92 date(2003, Jan, 27) == nkd4.get_date(2003)); in main()
97 date sunday(2003,Feb,2),tuesday(2003,Feb,4); in main()
98 date friday(2003,Feb,7),saturday(2003,Feb,8); in main()
115 check("Date of next weekday", next_weekday(saturday, sund)== date(2003,Feb,9)); in main()
116 check("Date of next weekday", next_weekday(friday, tue) == date(2003,Feb,11)); in main()
117 check("Date of next weekday", next_weekday(tuesday, fri) == date(2003,Feb,7)); in main()
[all …]
Dtestgreg_wstream.cpp1 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
26 date_period dp(date(2003,Aug,21), date(2004,May,27)); in main()
31 res = L"2003-Aug-21"; in main()
40 res = L"2003-08-21"; in main()
47 res = L"2003-Aug-21"; in main()
48 std::wstringstream wss2(L"2003-Aug-21"); in main()
94 res = L"[2003-Aug-21/2004-May-26]"; in main()
103 std::wstringstream wss2(L"[2003-Aug-21/2004-May-27]"); in main()
104 res = L"[2003-Aug-21/2004-May-26]"; in main()
107 date_period testperiod(date(2003,Aug,21), date(2004,May,27)); in main()
[all …]
Dtestdate_iterator.cpp1 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
238 date(2002,Oct,28),date(2002,Nov,28),date(2002,Dec,28),date(2003,Jan,28), in main()
239 date(2003,Feb,28),date(2003,Mar,28),date(2003,Apr,28),date(2003,May,28), in main()
240 date(2003,Jun,28),date(2003,Jul,28),date(2003,Aug,28),date(2003,Sep,28), in main()
241 date(2003,Oct,28),date(2003,Nov,28),date(2003,Dec,28),date(2004,Jan,28), in main()
270 date(2000,Jan,1),date(2001,Jan,1),date(2002,Jan,1),date(2003,Jan,1), in main()
293 date(2000,Feb,28),date(2001,Feb,28),date(2002,Feb,28),date(2003,Feb,28), in main()
316 date(2000,Feb,29),date(2001,Feb,28),date(2002,Feb,28),date(2003,Feb,28), in main()
/external/sdv/vsomeip/third_party/boost/date_time/test/local_time/
Dtestposix_time_zone.cpp1 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
43 check("dst start", nyc1.dst_local_start_time(2003) == in main()
44 ptime(date(2003,Apr,6),time_duration(2,0,0))); in main()
45 check("dst starts match", nyc1.dst_local_start_time(2003) == in main()
46 nyc2.dst_local_start_time(2003)); in main()
47 check("dst end", nyc1.dst_local_end_time(2003) == in main()
48 ptime(date(2003,Oct,26),time_duration(2,0,0))); in main()
49 check("dst ends match", nyc1.dst_local_end_time(2003) == in main()
50 nyc2.dst_local_end_time(2003)); in main()
100 check("dst start", la1.dst_local_start_time(2003) == in main()
[all …]
Dtestwposix_time_zone.cpp1 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
46 check("dst start", nyc1.dst_local_start_time(2003) == in main()
47 ptime(date(2003,Apr,6),time_duration(2,0,0))); in main()
48 check("dst starts match", nyc1.dst_local_start_time(2003) == in main()
49 nyc2.dst_local_start_time(2003)); in main()
50 check("dst end", nyc1.dst_local_end_time(2003) == in main()
51 ptime(date(2003,Oct,26),time_duration(2,0,0))); in main()
52 check("dst ends match", nyc1.dst_local_end_time(2003) == in main()
53 nyc2.dst_local_end_time(2003)); in main()
103 check("dst start", la1.dst_local_start_time(2003) == in main()
[all …]
Dtestlocal_time.cpp1 /* Copyright (c) 2003-2005 CrystalClear Software, Inc.
57 date d(2003, 12, 20); in main()
67 az_time.to_string() == "2003-Dec-20 05:00:00 MST"); in main()
76 az_time2.to_string() == "2003-Dec-20 05:00:00 MST"); in main()
170 az_time3.to_string() == "2003-Dec-20 12:00:00 MST"); in main()
178 null_tz_time.to_string() == "2003-Dec-20 12:00:00 UTC"); in main()
259 ny_time.to_string() == "2003-Dec-20 07:00:00 EST"); in main()
262 ny_time.to_string() == "2003-Dec-20 10:00:00 EST"); in main()
265 ny_time.to_string() == "2003-Dec-23 10:00:00 EST"); in main()
269 date dx(2003, Aug, 28); in main()
[all …]
/external/sdv/vsomeip/third_party/boost/date_time/test/posix_time/
Dtesttime_wstream.cpp1 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
30 date d1(2003,Jan,20), d2(2003,May,10); in main()
35 res = L"2003-Jan-20 01:00:00"; in main()
43 res = L"2003-01-20T01:00:00"; in main()
61 res = L"[2003-Jan-20 01:00:00/2003-May-10 14:59:59.999999999]"; in main()
63 res = L"[2003-Jan-20 01:00:00/2003-May-10 14:59:59.999999]"; in main()
Dteststreams.cpp1 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
105 std::istringstream iss("2003-May-13 01:02:03"); in main()
107 check("Stream in ptime", t1 == ptime(date(2003,May,13), time_duration(1,2,3))); in main()
108 std::istringstream iss2("2003-January-13 01:02:03"); in main()
110 check("Stream in ptime2", t1 == ptime(date(2003,Jan,13), time_duration(1,2,3))); in main()
111 std::istringstream iss3("2003-feb-13 11:10:09"); in main()
113 check("Stream in ptime3", t1 == ptime(date(2003,Feb,13), time_duration(11,10,9))); in main()
116 std::istringstream iss4("2003-xxx-13 11:10:09"); in main()
127 date d1x(2001,Aug,1), d2x(2003,May,13); in main()
135 std::istringstream iss("[2001-Aug-01 15:32:18.020304/2003-May-13 01:02:03]"); in main()
[all …]
/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/gregorian/
Dparsers.hpp4 /* Copyright (c) 2002,2003,2005 CrystalClear Software, Inc.
52 …//! From delimited date string where with order year-month-day eg: 2002-1-25 or 2003-Jan-25 (full …
57 …//! From delimited date string where with order year-month-day eg: 1-25-2003 or Jan-25-2003 (full …
62 …//! From delimited date string where with order day-month-year eg: 25-1-2002 or 25-Jan-2003 (full …
96 //! Function to parse a date_period from a string (eg: [2003-Oct-31/2003-Dec-25])
101 //! Function to parse a date_period from a wstring (eg: [2003-Oct-31/2003-Dec-25])
/external/iproute2/include/uapi/linux/
Dif_bonding.h15 * 2003/03/18 - Amir Noam <amir.noam at intel dot com>
19 * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
24 * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
28 * 2003/03/18 - Amir Noam <amir.noam at intel dot com>,
33 * 2003/05/01 - Amir Noam <amir.noam at intel dot com>
37 * 2003/12/01 - Shmulik Hen <shmulik.hen at intel dot com>
51 /* userland - kernel ABI version (2003/05/08) */
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/time/
DFastDatePrinterTest.java173 final GregorianCalendar cal1 = new GregorianCalendar(2003, 0, 10, 15, 33, 20); in testFormat()
174 final GregorianCalendar cal2 = new GregorianCalendar(2003, 6, 10, 9, 0, 0); in testFormat()
183 assertEquals("2003-01-10T15:33:20", fdf.format(date1)); in testFormat()
184 assertEquals("2003-01-10T15:33:20", fdf.format(cal1)); in testFormat()
185 assertEquals("2003-01-10T15:33:20", fdf.format(millis1)); in testFormat()
186 assertEquals("2003-07-10T09:00:00", fdf.format(date2)); in testFormat()
187 assertEquals("2003-07-10T09:00:00", fdf.format(cal2)); in testFormat()
188 assertEquals("2003-07-10T09:00:00", fdf.format(millis2)); in testFormat()
213 … assertEquals(sdf.format(date1).replace("2003 03 03 03", "2003 2003 03 2003"), fdf.format(date1)); in testFormat()
214 … assertEquals(sdf.format(date2).replace("2003 03 03 03", "2003 2003 03 2003"), fdf.format(date2)); in testFormat()
DFastDateParserTest.java303 cal.set(2003, Calendar.FEBRUARY, 10); in testDayOf()
325 cal.set(2003, Calendar.FEBRUARY, 10); in testJpLocales()
468 cal.set(2003, Calendar.FEBRUARY, 10, 15, 33, 20); in testParseLongShort()
475 …assertEquals(cal.getTime(), fdf.parse("2003 AD February 0010 PM Monday 0015 0033 0020 0989 GMT-05:… in testParseLongShort()
478 … final Date parse = fdf.parse("2003 BC February 0010 PM Saturday 0015 0033 0020 0989 GMT-05:00"); in testParseLongShort()
494 cal.set(2003, Calendar.FEBRUARY, 10, 15, 33, 20); in testParseNumerics()
518 for (final int year : new int[] {2003, 1940, 1868, 1867, 1, -1, -1940}) { in testParses()
542 final int year = 2003; in testParsesKnownJava16Ea25Failure()
564 cal.set(2003, Calendar.JULY, 10, 16, 33, 20); in testParseZone()
568 assertEquals(cal.getTime(), fdf.parse("2003-07-10T15:33:20.000 -0500")); in testParseZone()
[all …]
/external/libogg/doc/
Drfc3534.txt9 Category: Standards Track May 2003
24 Copyright (C) The Internet Society (2003). All Rights Reserved.
60 RFC 3534 The application/ogg Media Type May 2003
116 RFC 3534 The application/ogg Media Type May 2003
172 RFC 3534 The application/ogg Media Type May 2003
193 3533, May 2003.
228 RFC 3534 The application/ogg Media Type May 2003
284 RFC 3534 The application/ogg Media Type May 2003
289 Copyright (C) The Internet Society (2003). All Rights Reserved.
/external/kernel-headers/original/uapi/linux/
Dif_bonding.h15 * 2003/03/18 - Amir Noam <amir.noam at intel dot com>
19 * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
24 * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
28 * 2003/03/18 - Amir Noam <amir.noam at intel dot com>,
33 * 2003/05/01 - Amir Noam <amir.noam at intel dot com>
37 * 2003/12/01 - Shmulik Hen <shmulik.hen at intel dot com>
51 /* userland - kernel ABI version (2003/05/08) */
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/
Dclassic.hpp4 Copyright (c) 2001-2003 Daniel Nuffer
5 Copyright (c) 2002-2003 Martin Wille
10 Copyright (c) 2003 Giovanni Bajo
11 Copyright (c) 2003 Vaclav Vesely
12 Copyright (c) 2003 Jonathan de Halleux
/external/sdv/vsomeip/third_party/boost/format/benchmark/
Dresults.txt48 -rwx--x--x 1 sam users 52864 2003-09-12 02:59 /home/sam/progs/Boost/bin/BBoost//libs/…
56 -rwx--x--x 1 sam users 52864 2003-09-12 03:00 /home/sam/progs/Boost/bin/BBoost//libs/…
64 -rwx--x--x 1 sam users 53088 2003-09-12 03:00 /home/sam/progs/Boost/bin/BBoost//libs/…
118 -rwx--x--x 1 sam users 52832 2003-09-12 00:17 /home/sam/progs/Boost/bin/BBoost//libs/…
133 -rwx--x--x 1 sam users 52832 2003-09-12 00:17 /home/sam/progs/Boost/bin/BBoost//libs/…
141 -rwx--x--x 1 sam users 52192 2003-09-12 00:09 /home/sam/progs/Boost/bin/BBoost//libs/…
149 -rwx--x--x 1 sam users 53056 2003-09-12 00:17 /home/sam/progs/Boost/bin/BBoost//libs/…
177 -rwx--x--x 1 sam users 49280 2003-09-10 21:12 /home/sam/progs/Boost/bin/BBoost//libs/…
184 -rwx--x--x 1 sam users 45856 2003-09-10 21:13 /home/sam/progs/Boost/bin/BBoost//libs/…
191 -rwx--x--x 1 sam users 47200 2003-09-10 21:13 /home/sam/progs/Boost/bin/BBoost//libs/…
[all …]
/external/freetype/docs/oldlogs/
DChangeLog.213207 builds/win32/visualc/freetype.vcproj: New files for VS.NET 2003.
3425 2003-12-31 Wolfgang Domröse <porthos.domroese@harz.de>
3432 2003-12-31 Werner Lemberg <wl@gnu.org>
3437 2003-12-29 Smith Charles <smith.charles@free.fr>
3442 2003-12-29 Werner Lemberg <wl@gnu.org>
3450 2003-12-26 Werner Lemberg <wl@gnu.org>
3461 2003-12-25 Werner Lemberg <wl@gnu.org>
3475 2003-12-24 Werner Lemberg <wl@gnu.org>
3480 2003-12-24 David Turner <david@freetype.org>
3488 2003-12-23 Werner Lemberg <wl@gnu.org>
[all …]
/external/libpng/
Dpng.523 PNG Specification (Second Edition), November 2003:
26 https://www.w3.org/TR/2003/REC-PNG-20031110/
51 ISO/IEC 15948:2003 (E) (November 10, 2003): David Duce and others.
/external/curl/tests/data/
Dtest19415 Date: Fri, 24 Oct 2003 21:33:12 GMT
17 Last-Modified: Fri, 24 Oct 2003 18:01:23 GMT
30 Date: Fri, 24 Oct 2003 21:33:12 GMT
32 Last-Modified: Fri, 24 Oct 2003 18:01:23 GMT

12345678910>>...301