Home
last modified time | relevance | path

Searched full:date (Results 1 – 25 of 7472) sorted by relevance

12345678910>>...299

/third_party/typescript/tests/baselines/reference/
Dlibrary_DatePrototypeProperties.types2 // Properties of the Date prototype object as per ES5 spec
4 Date.prototype.constructor;
5 >Date.prototype.constructor : Function
6 >Date.prototype : Date
7 >Date : DateConstructor
8 >prototype : Date
11 Date.prototype.toString();
12 >Date.prototype.toString() : string
13 >Date.prototype.toString : () => string
14 >Date.prototype : Date
[all …]
Dlibrary_DatePrototypeProperties.js2 // Properties of the Date prototype object as per ES5 spec
4 Date.prototype.constructor; class
5 Date.prototype.toString();
6 Date.prototype.toDateString();
7 Date.prototype.toTimeString();
8 Date.prototype.toLocaleString();
9 Date.prototype.toLocaleDateString();
10 Date.prototype.toLocaleTimeString();
11 Date.prototype.valueOf();
13 Date.prototype.getTime();
[all …]
DobjectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.types6 class B<T extends Date> {
14 class C<T extends Date> {
22 interface I<T extends Date> {
23 new(x: T): Date;
28 new<T extends Date>(x: T): RegExp;
32 var a: { new<T extends Date>(x: T): T }
33 >a : new <T extends Date>(x: T) => T
36 var b = { new<T extends Date>(x: T) { return null; } }; // not a construct signature, function call…
37 >b : { new<T extends Date>(x: T): any; }
38 >{ new<T extends Date>(x: T) { return null; } } : { new<T extends Date>(x: T): any; }
[all …]
DobjectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.types9 foo<T extends Date>(x: T): string { return null; }
10 >foo : <T extends Date>(x: T) => string
15 class B<T extends Date> {
24 class C<T extends Date> {
33 interface I<T extends Date> {
34 foo(x: T): Date;
35 >foo : (x: T) => Date
40 foo<T extends Date>(x: T): RegExp;
41 >foo : <T extends Date>(x: T) => RegExp
45 var a: { foo<T extends Date>(x: T): T }
[all …]
Dlibrary_DatePrototypeProperties.symbols2 // Properties of the Date prototype object as per ES5 spec
4 Date.prototype.constructor;
5 >Date.prototype.constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --))
6 >Date.prototype : Symbol(DateConstructor.prototype, Decl(lib.es5.d.ts, --, --))
7 >Date : Symbol(Date, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --,…
11 Date.prototype.toString();
12 >Date.prototype.toString : Symbol(Date.toString, Decl(lib.es5.d.ts, --, --))
13 >Date.prototype : Symbol(DateConstructor.prototype, Decl(lib.es5.d.ts, --, --))
14 >Date : Symbol(Date, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --,…
16 >toString : Symbol(Date.toString, Decl(lib.es5.d.ts, --, --))
[all …]
DgenericTypeAssertions6.types38 class B<T extends Date, U extends Date> extends A<T, U> {
46 var a: Date = x;
47 >a : Date
50 var b = <Date>x;
51 >b : Date
52 ><Date>x : Date
55 var c = <T>new Date();
57 ><T>new Date() : T
58 >new Date() : Date
59 >Date : DateConstructor
[all …]
Dfor-inStatementsArray.types2 let a: Date[];
3 >a : Date[]
10 >a : Date[]
13 >a1 : Date
14 >a[x] : Date
15 >a : Date[]
19 >a2 : Date
20 >a[(x)] : Date
21 >a : Date[]
26 >a3 : Date
[all …]
DderivedClassWithoutExplicitConstructor2.types90 class D<T extends Date> extends Base2<T> {
104 >d : D<Date>
105 >new D() : D<Date>
108 var d2 = new D(new Date()); // ok
109 >d2 : D<Date>
110 >new D(new Date()) : D<Date>
112 >new Date() : Date
113 >Date : DateConstructor
115 var d3 = new D(new Date(), new Date());
116 >d3 : D<Date>
[all …]
DpropertyAccessOnTypeParameterWithConstraints.types5 class C<T extends Date> {
31 var r = (new C<Date>()).f();
33 >(new C<Date>()).f() : number
34 >(new C<Date>()).f : () => number
35 >(new C<Date>()) : C<Date>
36 >new C<Date>() : C<Date>
40 interface I<T extends Date> {
44 var i: I<Date>;
45 >i : I<Date>
51 >i.foo : Date
[all …]
DtypeParameterAssignability2.types73 function foo4<T extends U, U extends V, V extends Date>(t: T, u: U, v: V) {
74 >foo4 : <T extends U, U extends V, V extends Date>(t: T, u: U, v: V) => void
89 t = new Date(); // error
90 >t = new Date() : Date
92 >new Date() : Date
93 >Date : DateConstructor
105 u = new Date(); // error
106 >u = new Date() : Date
108 >new Date() : Date
109 >Date : DateConstructor
[all …]
DobjectTypeWithStringNamedNumericProperty.types24 "1.0": Date;
25 >"1.0" : Date
30 "-1": Date;
31 >"-1" : Date
80 >r6 : Date
81 >c['1.0'] : Date
93 >r7 : Date
94 >i[-1] : Date
100 >r7 : Date
101 >i[-1.0] : Date
[all …]
DtypeArgumentInferenceTransitiveConstraints.types2 function fn<A extends Date, B extends A, C extends B>(a: A, b: B, c: C) {
3 >fn : <A extends Date, B extends A, C extends B>(a: A, b: B, c: C) => A[]
15 var d = fn(new Date(), new Date(), new Date());
16 >d : Date[]
17 >fn(new Date(), new Date(), new Date()) : Date[]
18 >fn : <A extends Date, B extends A, C extends B>(a: A, b: B, c: C) => A[]
19 >new Date() : Date
20 >Date : DateConstructor
21 >new Date() : Date
22 >Date : DateConstructor
[all …]
DexternModule.types25 constructor(year: number, month: number, date: number);
28 >date : number
30 constructor(year: number, month: number, date: number, hours: number);
33 >date : number
36 constructor(year: number, month: number, date: number, hours: number, minutes: number);
39 >date : number
43 …constructor(year: number, month: number, date: number, hours: number, minutes: number, seconds: nu…
46 >date : number
51 …constructor(year: number, month: number, date: number, hours: number, minutes: number, seconds: nu…
54 >date : number
[all …]
DpropertyAccessOnTypeParameterWithConstraints4.types2 class C<T extends Date> {
28 var r = (new C<Date>()).f();
30 >(new C<Date>()).f() : any
31 >(new C<Date>()).f : () => any
32 >(new C<Date>()) : C<Date>
33 >new C<Date>() : C<Date>
37 interface I<T extends Date> {
41 var i: I<Date>;
42 >i : I<Date>
48 >i.foo : Date
[all …]
/third_party/typescript/tests/cases/compiler/
Dlibrary_DatePrototypeProperties.ts1 // Properties of the Date prototype object as per ES5 spec
3 Date.prototype.constructor;
4 Date.prototype.toString();
5 Date.prototype.toDateString();
6 Date.prototype.toTimeString();
7 Date.prototype.toLocaleString();
8 Date.prototype.toLocaleDateString();
9 Date.prototype.toLocaleTimeString();
10 Date.prototype.valueOf();
12 Date.prototype.getTime();
[all …]
/third_party/rust/crates/version_check/src/
Ddate.rs3 /// Release date including year, month, and day.
6 pub struct Date(u32); struct
8 impl Date { impl
9 /// Reads the release date of the running compiler. If it cannot be
15 /// use version_check::Date;
17 /// match Date::read() {
18 /// Some(d) => format!("The release date is: {}", d),
19 /// None => format!("Failed to read the release date.")
22 pub fn read() -> Option<Date> { in read()
24 .and_then(|(_, date)| date) in read()
[all …]
/third_party/jerryscript/tests/jerry/
Ddate-tostring.js15 assert (new Date (NaN) == "Invalid Date");
16 assert (new Date (Infinity, 1, 1, 0, 0, 0) == "Invalid Date");
17 assert (new Date (2015, Infinity, 1, 0, 0, 0) == "Invalid Date");
18 assert (new Date (2015, 7, 1, 0, Infinity, 0) == "Invalid Date");
19 assert (new Date (NaN, 1, 1, 0, 0, 0) == "Invalid Date");
20 assert (new Date (2015, NaN, 1, 0, 0, 0) == "Invalid Date");
21 assert (new Date (2015, 7, 1, 0, NaN, 0) == "Invalid Date");
22 assert (/Fri Feb 13 2015 \d{2}:\d{2}:\d{2} GMT\+\d{2}\d{2}/.test (new Date ("2015-02-13")));
23 assert (/Wed Jul 08 2015 \d{2}:\d{2}:\d{2} GMT\+\d{2}\d{2}/.test (new Date ("2015-07-08T11:29:05.02…
27 Date.prototype.toString.call(-1); class
[all …]
Ddate-parse.js77 var d = Date.parse(wrongFormats[i]);
83 d = Date.parse(undefined);
86 d = Date.parse({});
89 d = Date.parse(2000 + 15);
92 d = Date.parse("2015");
95 d = Date.parse("2015-01");
98 d = Date.parse("2015-01-01");
101 d = Date.parse("2015-01T00:00");
104 d = Date.parse("2015-01T00:00:00");
107 d = Date.parse("2015-01T00:00:00.000");
[all …]
/third_party/skia/m133/third_party/externals/icu/source/test/testdata/
Dcalendar.txt31 "ERA=1,YEAR=1,MONTH=JUNE,DATE=4", // tw
32 "ERA=1,YEAR=1912,MONTH=,DATE=" // greg
36 "ERA=1,YEAR=3,MONTH=FEBRUARY,DATE=12", // tw
37 "ERA=1,YEAR=1914,MONTH=,DATE=" // greg
41 "ERA=1,YEAR=96,MONTH=FEBRUARY,DATE=12", // tw
42 "ERA=1,YEAR=2007,MONTH=,DATE=" // greg
48 "ERA=0,YEAR=2,MONTH=JANUARY,DATE=24", // tw
49 "ERA=1,YEAR=1910,MONTH=JANUARY,DATE=24", // greg
56 "EXTENDED_YEAR=4601,MONTH=6,DATE=28,IS_LEAP_MONTH=0", // ch
57 "YEAR=1964,MONTH=8,DATE=4", // greg
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dcalendar.txt31 "ERA=1,YEAR=1,MONTH=JUNE,DATE=4", // tw
32 "ERA=1,YEAR=1912,MONTH=,DATE=" // greg
36 "ERA=1,YEAR=3,MONTH=FEBRUARY,DATE=12", // tw
37 "ERA=1,YEAR=1914,MONTH=,DATE=" // greg
41 "ERA=1,YEAR=96,MONTH=FEBRUARY,DATE=12", // tw
42 "ERA=1,YEAR=2007,MONTH=,DATE=" // greg
48 "ERA=0,YEAR=2,MONTH=JANUARY,DATE=24", // tw
49 "ERA=1,YEAR=1910,MONTH=JANUARY,DATE=24", // greg
56 "EXTENDED_YEAR=4601,MONTH=6,DATE=28,IS_LEAP_MONTH=0", // ch
57 "YEAR=1964,MONTH=8,DATE=4", // greg
[all …]
/third_party/backends/ChangeLogs/
DChangeLog-1.0.313 Date: 2020-08-23 20:25:14 +0900
9 Date: 2020-08-23 15:15:13 +0900
16 Date: 2020-08-20 19:55:50 +0000
26 Date: 2020-08-08 09:55:47 +0000
33 Date: 2020-08-20 10:07:25 +0000
43 Date: 2020-08-19 12:07:30 +0200
49 Date: 2020-08-15 14:29:18 +0200
59 Date: 2020-08-14 19:58:15 +0200
65 Date: 2020-08-14 20:27:06 +0200
76 Date: 2020-08-12 00:36:57 +0000
[all …]
DChangeLog-1.0.293 Date: 2020-02-02 20:19:37 +0900
9 Date: 2020-02-02 20:07:39 +0900
19 Date: 2020-01-19 13:09:24 +0000
29 Date: 2020-01-13 18:37:21 +0900
35 Date: 2020-01-13 18:35:33 +0900
44 Date: 2020-01-18 19:59:38 +0000
54 Date: 2020-01-18 12:13:30 +0900
61 Date: 2020-01-18 02:53:48 +0000
71 Date: 2020-01-18 02:53:48 +0000
82 Date: 2020-01-14 13:05:02 +0000
[all …]
DChangeLog-1.0.283 Date: 2019-07-31 20:39:43 +0900
9 Date: 2019-07-30 22:40:11 +0900
15 Date: 2019-07-29 22:34:13 +0200
24 Date: 2019-07-29 17:27:07 +0200
30 Date: 2019-07-28 23:04:23 +0200
36 Date: 2019-07-27 13:11:28 +0200
43 Date: 2019-07-27 06:49:23 +0000
53 Date: 2019-07-26 23:20:29 -0700
59 Date: 2019-07-26 10:05:41 -0700
65 Date: 2019-07-26 13:55:23 +0900
[all …]
DChangeLog-1.0.273 Date: 2017-05-22 11:16:40 -0400
20 Date: 2017-05-20 14:13:19 +0200
26 Date: 2017-05-19 20:24:14 -0400
32 Date: 2017-05-15 21:37:34 +0900
38 Date: 2017-05-14 21:34:36 -0400
46 Date: 2017-05-14 19:48:41 +0900
59 Date: 2017-05-14 19:47:31 +0900
65 Date: 2017-05-13 18:11:40 +0900
71 Date: 2017-05-13 18:07:26 +0900
79 Date: 2017-05-13 18:05:43 +0900
[all …]
DChangeLog-1.0.323 Date: 2021-02-14 20:00:00 +0900
9 Date: 2021-02-14 16:24:24 +0900
17 Date: 2021-02-13 20:21:45 +0900
25 Date: 2021-02-13 20:20:14 +0900
35 Date: 2021-02-14 09:31:59 +0000
45 Date: 2021-02-14 10:46:36 +0900
52 Date: 2021-02-14 07:18:00 +0000
62 Date: 2021-02-14 16:01:01 +0900
72 Date: 2021-02-13 20:20:01 +0000
82 Date: 2021-02-13 12:02:54 -0800
[all …]

12345678910>>...299