Home
last modified time | relevance | path

Searched refs:Derived (Results 1 – 25 of 996) sorted by relevance

12345678910>>...40

/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_fluent.cpp34 template<typename Derived>
35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation()
36 Derived copy(*this); in notation()
42 template<typename Derived>
43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation()
44 Derived move(std::move(*this)); in notation()
50 template<typename Derived>
51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit()
52 Derived copy(*this); in unit()
59 template<typename Derived>
[all …]
Dnumrange_fluent.cpp30 template<typename Derived>
31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
32 Derived copy(*this); in numberFormatterBoth()
39 template<typename Derived>
40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
41 Derived move(std::move(*this)); in numberFormatterBoth()
48 template<typename Derived>
49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth()
50 Derived copy(*this); in numberFormatterBoth()
57 template<typename Derived>
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dnumber_fluent.cpp34 template<typename Derived>
35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation()
36 Derived copy(*this); in notation()
42 template<typename Derived>
43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation()
44 Derived move(std::move(*this)); in notation()
50 template<typename Derived>
51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit()
52 Derived copy(*this); in unit()
59 template<typename Derived>
[all …]
Dnumrange_fluent.cpp30 template<typename Derived>
31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
32 Derived copy(*this); in numberFormatterBoth()
39 template<typename Derived>
40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
41 Derived move(std::move(*this)); in numberFormatterBoth()
48 template<typename Derived>
49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth()
50 Derived copy(*this); in numberFormatterBoth()
57 template<typename Derived>
[all …]
/third_party/icu/icu4c/source/i18n/
Dnumber_fluent.cpp34 template<typename Derived>
35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation()
36 Derived copy(*this); in notation()
42 template<typename Derived>
43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation()
44 Derived move(std::move(*this)); in notation()
50 template<typename Derived>
51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit()
52 Derived copy(*this); in unit()
59 template<typename Derived>
[all …]
Dnumrange_fluent.cpp30 template<typename Derived>
31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
32 Derived copy(*this); in numberFormatterBoth()
39 template<typename Derived>
40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth()
41 Derived move(std::move(*this)); in numberFormatterBoth()
48 template<typename Derived>
49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth()
50 Derived copy(*this); in numberFormatterBoth()
57 template<typename Derived>
[all …]
/third_party/typescript/tests/baselines/reference/
DinheritedConstructorWithRestParams2.types42 class Derived extends Base { }
43 >Derived : Derived
47 new Derived("", "");
48 >new Derived("", "") : Derived
49 >Derived : typeof Derived
53 new Derived("", 3);
54 >new Derived("", 3) : Derived
55 >Derived : typeof Derived
59 new Derived("", 3, 3);
60 >new Derived("", 3, 3) : Derived
[all …]
DgenericCallWithConstraintsTypeArgumentInference.types8 class Derived extends Base { bar: string; }
9 >Derived : Derived
13 class Derived2 extends Derived { baz: string; }
15 >Derived : Derived
21 var d1: Derived;
22 >d1 : Derived
41 var r2 = foo(d1); // Derived
42 >r2 : Derived
43 >foo(d1) : Derived
45 >d1 : Derived
[all …]
DinheritedConstructorWithRestParams.types9 class Derived extends Base { }
10 >Derived : Derived
14 new Derived("", "");
15 >new Derived("", "") : Derived
16 >Derived : typeof Derived
20 new Derived("");
21 >new Derived("") : Derived
22 >Derived : typeof Derived
25 new Derived();
26 >new Derived() : Derived
[all …]
DsubtypingWithCallSignatures2.types8 class Derived extends Base { bar: string; }
9 >Derived : Derived
13 class Derived2 extends Derived { baz: string; }
15 >Derived : Derived
75 declare function foo6(a: (x: (arg: Base) => Derived) => Base): typeof a;
76 >foo6 : { (a: (x: (arg: Base) => Derived) => Base): typeof a; (a: any): any; }
77 >a : (x: (arg: Base) => Derived) => Base
78 >x : (arg: Base) => Derived
80 >a : (x: (arg: Base) => Derived) => Base
83 >foo6 : { (a: (x: (arg: Base) => Derived) => Base): (x: (arg: Base) => Derived) => Base; (a: any): …
[all …]
DgenericCallWithObjectTypeArgsAndConstraints2.types11 class Derived extends Base {
12 >Derived : Derived
31 var r = f({ foo: new Base(), bar: new Derived() });
33 >f({ foo: new Base(), bar: new Derived() }) : Base
35 >{ foo: new Base(), bar: new Derived() } : { foo: Base; bar: Derived; }
39 >bar : Derived
40 >new Derived() : Derived
41 >Derived : typeof Derived
43 var r2 = f({ foo: new Derived(), bar: new Derived() });
44 >r2 : Derived
[all …]
DsubtypingWithConstructSignatures2.types8 class Derived extends Base { bar: string; }
9 >Derived : Derived
13 class Derived2 extends Derived { baz: string; }
15 >Derived : Derived
75 declare function foo6(a: new (x: new (arg: Base) => Derived) => Base): typeof a;
76 >foo6 : { (a: new (x: new (arg: Base) => Derived) => Base): typeof a; (a: any): any; }
77 >a : new (x: new (arg: Base) => Derived) => Base
78 >x : new (arg: Base) => Derived
80 >a : new (x: new (arg: Base) => Derived) => Base
83 >foo6 : { (a: new (x: new (arg: Base) => Derived) => Base): new (x: new (arg: Base) => Derived) => …
[all …]
DderivedClassIncludesInheritedMembers.types37 class Derived extends Base {
38 >Derived : Derived
42 var d: Derived = new Derived(1);
43 >d : Derived
44 >new Derived(1) : Derived
45 >Derived : typeof Derived
51 >d : Derived
58 >d : Derived
64 >d : Derived
70 >d : Derived
[all …]
DgenericCallWithObjectTypeArgsAndConstraints3.types10 class Derived extends Base {
11 >Derived : Derived
38 var r1 = f({ x: new Derived(), y: new Derived2() }); // error because neither is supertype of the o…
39 >r1 : Derived
40 >f({ x: new Derived(), y: new Derived2() }) : Derived
42 >{ x: new Derived(), y: new Derived2() } : { x: Derived; y: Derived2; }
43 >x : Derived
44 >new Derived() : Derived
45 >Derived : typeof Derived
63 var r2 = f2({ x: new Derived(), y: new Derived2() }); // ok
[all …]
DinheritedConstructorWithRestParams2.js21 class Derived extends Base { } class
24 new Derived("", "");
25 new Derived("", 3);
26 new Derived("", 3, 3);
27 new Derived("", 3, 3, 3);
28 new Derived("", 3, "");
29 new Derived("", "", 3);
30 new Derived("", "", 3, 3);
33 new Derived(3);
34 new Derived("", 3, "", 3);
[all …]
DmixinClassesAnonymous.types14 class Derived extends Base {
15 >Derived : Derived
91 const Thing1 = Tagged(Derived);
92 >Thing1 : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & typeof De…
93 >Tagged(Derived) : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & …
95 >Derived : typeof Derived
97 const Thing2 = Tagged(Printable(Derived));
98Derived>.(Anonymous class); prototype: Printable<any>.(Anonymous class); message: string; } & type…
99Derived)) : { new (...args: any[]): Tagged<{ new (...args: any[]): Printable<typeof Derived>.(Anon…
101Derived) : { new (...args: any[]): Printable<typeof Derived>.(Anonymous class); prototype: Printab…
[all …]
DsubtypingWithObjectMembers3.types7 interface Derived extends Base {
19 bar: Derived;
20 >bar : Derived
24 foo: Derived; // ok
25 >foo : Derived
35 2.0: Derived;
36 >2.0 : Derived
40 1: Derived; // ok
41 >1 : Derived
51 '2.0': Derived;
[all …]
DassignmentCompatWithCallSignatures3.types8 class Derived extends Base { bar: string; }
9 >Derived : Derived
13 class Derived2 extends Derived { baz: string; }
15 >Derived : Derived
45 var a6: (x: (arg: Base) => Derived) => Base;
46 >a6 : (x: (arg: Base) => Derived) => Base
47 >x : (arg: Base) => Derived
50 var a7: (x: (arg: Base) => Derived) => (r: Base) => Derived;
51 >a7 : (x: (arg: Base) => Derived) => (r: Base) => Derived
52 >x : (arg: Base) => Derived
[all …]
DheterogeneousArrayLiterals.types122 class Derived extends Base { bar: string; }
123 >Derived : Derived
135 var derived: Derived;
136 >derived : Derived
141 module Derived {
142 >Derived : typeof Derived
145 >h : ({ foo: Base; basear: Derived; } | { foo: Base; basear?: undefined; })[]
146 >[{ foo: base, basear: derived }, { foo: base }] : ({ foo: Base; basear: Derived; } | { foo: Base; …
147 >{ foo: base, basear: derived } : { foo: Base; basear: Derived; }
150 >basear : Derived
[all …]
DassignmentCompatWithConstructSignatures3.types8 class Derived extends Base { bar: string; }
9 >Derived : Derived
13 class Derived2 extends Derived { baz: string; }
15 >Derived : Derived
45 var a6: new (x: (arg: Base) => Derived) => Base;
46 >a6 : new (x: (arg: Base) => Derived) => Base
47 >x : (arg: Base) => Derived
50 var a7: new (x: (arg: Base) => Derived) => (r: Base) => Derived;
51 >a7 : new (x: (arg: Base) => Derived) => (r: Base) => Derived
52 >x : (arg: Base) => Derived
[all …]
DcomplexClassRelationships.types3 class Derived extends Base {
4 >Derived : Derived
7 public static createEmpty(): Derived {
8 >createEmpty : () => Derived
10 var item = new Derived();
11 >item : Derived
12 >new Derived() : Derived
13 >Derived : typeof Derived
16 >item : Derived
78 >this.prop2 : BaseCollection<Derived>
[all …]
DinheritedConstructorWithRestParams2.symbols64 class Derived extends Base { }
65 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams2.ts, 17, 1))
69 new Derived("", "");
70 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams2.ts, 17, 1))
72 new Derived("", 3);
73 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams2.ts, 17, 1))
75 new Derived("", 3, 3);
76 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams2.ts, 17, 1))
78 new Derived("", 3, 3, 3);
79 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams2.ts, 17, 1))
[all …]
DinheritedConstructorWithRestParams.symbols9 class Derived extends Base { }
10 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams.ts, 2, 1))
14 new Derived("", "");
15 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams.ts, 2, 1))
17 new Derived("");
18 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams.ts, 2, 1))
20 new Derived();
21 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams.ts, 2, 1))
24 new Derived("", 3);
25 >Derived : Symbol(Derived, Decl(inheritedConstructorWithRestParams.ts, 2, 1))
[all …]
/third_party/skia/third_party/externals/dawn/src/common/
DSerialStorage.h26 template <typename Derived>
29 using Serial = typename SerialStorageTraits<Derived>::Serial;
30 using Value = typename SerialStorageTraits<Derived>::Value;
31 using Storage = typename SerialStorageTraits<Derived>::Storage;
32 using StorageIterator = typename SerialStorageTraits<Derived>::StorageIterator;
33 using ConstStorageIterator = typename SerialStorageTraits<Derived>::ConstStorageIterator;
96 Derived::Enqueue(std::forward<Params>(args)..., serial); in Enqueue()
124 template <typename Derived>
125 bool SerialStorage<Derived>::Empty() const { in Empty()
129 template <typename Derived>
[all …]
/third_party/typescript/src/testRunner/unittests/evaluation/
DsuperInStaticInitializer.ts17 const [Base, Derived] = result.main(); constant
19 assert.strictEqual(Derived.y, 1);
36 const [Base, Derived] = result.main(); constant
38 assert.strictEqual(Derived.x, 2);
39 assert.strictEqual(Derived.y, 1);
62 const [Base, Derived, thisInBase] = result.main(); constant
64 assert.strictEqual(Derived.y, 1);
65 assert.strictEqual(thisInBase, Derived);
94 const [Base, Derived, thisInBaseGet, thisInBaseSet] = result.main(); constant
96 assert.strictEqual(Derived._x, 2);
[all …]

12345678910>>...40