Home
last modified time | relevance | path

Searched refs:Z (Results 1 – 25 of 3363) sorted by relevance

12345678910>>...135

/third_party/skia/third_party/externals/icu/source/data/misc/
Dzoneinfo64.txt18 /* ACT */ :int { 356 } //Z#0
19 /* AET */ :int { 368 } //Z#1
20 /* AGT */ :int { 64 } //Z#2
21 /* ART */ :int { 18 } //Z#3
22 /* AST */ :int { 60 } //Z#4
28 } //Z#5
33 } //Z#6
34 /* Africa/Addis_Ababa */ :int { 48 } //Z#7
40 } //Z#8
41 /* Africa/Asmara */ :int { 48 } //Z#9
[all …]
/third_party/icu/icu4c/source/data/misc/
Dzoneinfo64.txt18 /* ACT */ :int { 356 } //Z#0
19 /* AET */ :int { 368 } //Z#1
20 /* AGT */ :int { 64 } //Z#2
21 /* ART */ :int { 18 } //Z#3
22 /* AST */ :int { 60 } //Z#4
28 } //Z#5
33 } //Z#6
34 /* Africa/Addis_Ababa */ :int { 48 } //Z#7
40 } //Z#8
41 /* Africa/Asmara */ :int { 48 } //Z#9
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
Dzoneinfo64.txt18 /* ACT */ :int { 354 } //Z#0
19 /* AET */ :int { 366 } //Z#1
20 /* AGT */ :int { 64 } //Z#2
21 /* ART */ :int { 18 } //Z#3
22 /* AST */ :int { 60 } //Z#4
28 } //Z#5
33 } //Z#6
34 /* Africa/Addis_Ababa */ :int { 48 } //Z#7
40 } //Z#8
41 /* Africa/Asmara */ :int { 48 } //Z#9
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dzoneinfo64.txt20 /* ACT */ :int { 344 } //Z#0
21 /* AET */ :int { 356 } //Z#1
22 /* AGT */ :int { 64 } //Z#2
23 /* ART */ :int { 18 } //Z#3
24 /* AST */ :int { 60 } //Z#4
29 } //Z#5
34 } //Z#6
41 } //Z#7
47 } //Z#8
54 } //Z#9
[all …]
/third_party/typescript/tests/baselines/reference/
DbadArraySyntax.types2 class Z {
3 >Z : Z
10 var a1: Z[] = [];
11 >a1 : Z[]
14 var a2 = new Z[];
16 >new Z[] : any
17 >Z[] : any
18 >Z : typeof Z
21 var a3 = new Z[]();
23 >new Z[]() : any
[all …]
DenumLiteralAssignableToEnumInsideUnion.types24 module Z {
25 >Z : typeof Z
71 const e1: X.Foo | boolean = Z.Foo.A; // not legal, Z is computed
74 >Z.Foo.A : Z.Foo
75 >Z.Foo : typeof Z.Foo
76 >Z : typeof Z
77 >Foo : typeof Z.Foo
78 >A : Z.Foo
80 const e2: X.Foo.A | X.Foo.B | boolean = Z.Foo.A; // still not legal
86 >Z.Foo.A : Z.Foo
[all …]
DbadArraySyntax.symbols2 class Z {
3 >Z : Symbol(Z, Decl(badArraySyntax.ts, 0, 0))
6 >x : Symbol(Z.x, Decl(badArraySyntax.ts, 0, 9))
9 var a1: Z[] = [];
11 >Z : Symbol(Z, Decl(badArraySyntax.ts, 0, 0))
13 var a2 = new Z[];
15 >Z : Symbol(Z, Decl(badArraySyntax.ts, 0, 0))
17 var a3 = new Z[]();
19 >Z : Symbol(Z, Decl(badArraySyntax.ts, 0, 0))
21 var a4: Z[] = new Z[];
[all …]
DobjectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.types5 interface I<X, Y, Z, A> {
11 <Y, Z, A, B>(x: Y): Y;
15 var a: { <Z, A, B, C, D>(x: Z): Z }
16 >a : <Z, A, B, C, D>(x: Z) => Z
17 >x : Z
44 >foo3 : { (x: typeof a): any; (x: <Z, A, B, C, D>(x: Z) => Z): any; }
45 >x : <Z, A, B, C, D>(x: Z) => Z
46 >a : <Z, A, B, C, D>(x: Z) => Z
49 >foo3 : { (x: <Z, A, B, C, D>(x: Z) => Z): any; (x: typeof a): any; }
50 >x : <Z, A, B, C, D>(x: Z) => Z
[all …]
DbadArraySyntax.js2 class Z { class
6 var a1: Z[] = [];
7 var a2 = new Z[];
8 var a3 = new Z[]();
9 var a4: Z[] = new Z[];
10 var a5: Z[] = new Z[]();
11 var a6: Z[][] = new Z [ ] [ ];
15 var Z = /** @class */ (function () {
16 function Z() { class in Z
19 return Z;
[all …]
DenumLiteralAssignableToEnumInsideUnion.symbols24 module Z {
25 >Z : Symbol(Z, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 9, 1))
60 const e1: X.Foo | boolean = Z.Foo.A; // not legal, Z is computed
64 >Z.Foo.A : Symbol(Z.Foo.A, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 11, 21))
65 >Z.Foo : Symbol(Z.Foo, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 10, 10))
66 >Z : Symbol(Z, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 9, 1))
67 >Foo : Symbol(Z.Foo, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 10, 10))
68 >A : Symbol(Z.Foo.A, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 11, 21))
70 const e2: X.Foo.A | X.Foo.B | boolean = Z.Foo.A; // still not legal
78 >Z.Foo.A : Symbol(Z.Foo.A, Decl(enumLiteralAssignableToEnumInsideUnion.ts, 11, 21))
[all …]
DobjectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.types43 var a: { foo<Z>(x: Z): Z }
44 >a : { foo<Z>(x: Z): Z; }
45 >foo : <Z>(x: Z) => Z
46 >x : Z
104 >foo3 : { (x: typeof a): any; (x: { foo<Z>(x: Z): Z; }): any; }
105 >x : { foo<Z>(x: Z): Z; }
106 >a : { foo<Z>(x: Z): Z; }
109 >foo3 : { (x: { foo<Z>(x: Z): Z; }): any; (x: typeof a): any; }
110 >x : { foo<Z>(x: Z): Z; }
111 >a : { foo<Z>(x: Z): Z; }
[all …]
DobjectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.types30 var a: { new<Z>(x: Z): B<Z> }
31 >a : new <Z>(x: Z) => B<Z>
32 >x : Z
80 >foo3 : { (x: typeof a): any; (x: new <Z>(x: Z) => B<Z>): any; }
81 >x : new <Z>(x: Z) => B<Z>
82 >a : new <Z>(x: Z) => B<Z>
85 >foo3 : { (x: new <Z>(x: Z) => B<Z>): any; (x: typeof a): any; }
86 >x : new <Z>(x: Z) => B<Z>
87 >a : new <Z>(x: Z) => B<Z>
90 >foo3 : { (x: new <Z>(x: Z) => B<Z>): any; (x: new <Z>(x: Z) => B<Z>): any; }
[all …]
/third_party/skia/third_party/externals/abseil-cpp/
Dsymbols_x64_rel.def2 ??$?0AEBVCord@absl@@$0A@@?$optional@VCord@absl@@@absl@@QEAA@AEBVCord@1@@Z
3 …$0A@@Cord@absl@@QEAA@$$QEAV?$basic_string@DU?$char_traits@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z
4 …cctz@time_internal@absl@@YA_NAEBV?$civil_time@Usecond_tag@detail@cctz@time_internal@absl@@@0123@0@Z
5 …@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z@base_internal@absl@@QEBAX$$QEAW4LogSeverity@2@AEBQEBD$$…
6 ??$AddCordRep@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
7 ??$AddCordRep@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
8 ??$AddData@$00@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
9 ??$AddData@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
10 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
11 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
[all …]
Dsymbols_x86_rel.def2 …@@?$optional_data_dtor_base@VCord@absl@@$0A@@optional_internal@absl@@IAE@Uin_place_t@2@ABVCord@2@@Z
3 …@@$0A@@Cord@absl@@QAE@$$QAV?$basic_string@DU?$char_traits@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z
4 …@cctz@time_internal@absl@@YA_NABV?$civil_time@Usecond_tag@detail@cctz@time_internal@absl@@@0123@0@Z
5 …aits@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z@base_internal@absl@@QBEX$$QAW4LogSeverity@2@ABQBD$$…
6 ??$AddCordRep@$00@CordRepBtree@cord_internal@absl@@CAPAV012@PAV012@PAUCordRep@12@@Z
7 ??$AddCordRep@$0A@@CordRepBtree@cord_internal@absl@@CAPAV012@PAV012@PAUCordRep@12@@Z
8 ??$AddData@$00@CordRepBtree@cord_internal@absl@@AAE?AVstring_view@2@V32@I@Z
9 ??$AddData@$00@CordRepBtree@cord_internal@absl@@CAPAV012@PAV012@Vstring_view@2@I@Z
10 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@AAE?AVstring_view@2@V32@I@Z
11 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@CAPAV012@PAV012@Vstring_view@2@I@Z
[all …]
Dsymbols_arm64_rel.def2 ??$?0AEBVCord@absl@@$0A@@?$optional@VCord@absl@@@absl@@QEAA@AEBVCord@1@@Z
3 …$0A@@Cord@absl@@QEAA@$$QEAV?$basic_string@DU?$char_traits@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z
4 …cctz@time_internal@absl@@YA_NAEBV?$civil_time@Usecond_tag@detail@cctz@time_internal@absl@@@0123@0@Z
5 …@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z@base_internal@absl@@QEBAX$$QEAW4LogSeverity@2@AEBQEBD$$…
6 ??$AddCordRep@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
7 ??$AddCordRep@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
8 ??$AddData@$00@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
9 ??$AddData@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
10 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
11 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
[all …]
Dsymbols_x64_rel_asan.def2 ??$?0AEBVCord@absl@@$0A@@?$optional@VCord@absl@@@absl@@QEAA@AEBVCord@1@@Z
3 …$0A@@Cord@absl@@QEAA@$$QEAV?$basic_string@DU?$char_traits@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z
4 …cctz@time_internal@absl@@YA_NAEBV?$civil_time@Usecond_tag@detail@cctz@time_internal@absl@@@0123@0@Z
5 …@D@__1@std@@V?$allocator@D@23@@__1@std@@@Z@base_internal@absl@@QEBAX$$QEAW4LogSeverity@2@AEBQEBD$$…
6 ??$AddCordRep@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
7 ??$AddCordRep@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@PEAUCordRep@12@@Z
8 ??$AddData@$00@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
9 ??$AddData@$00@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
10 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@AEAA?AVstring_view@2@V32@_K@Z
11 ??$AddData@$0A@@CordRepBtree@cord_internal@absl@@CAPEAV012@PEAV012@Vstring_view@2@_K@Z
[all …]
/third_party/giflib/tests/
Dwelcome2.rgb1ZZjjjjjZZRA1�)�ZJRZJRZJR)�1�9�J�Rbbjjss jjZZRA…
/third_party/flutter/skia/third_party/externals/icu/source/data/zone/
Dlb.txt313 ec{"Zürech"}
341 lg{"Acre-Zäit"}
345 ls{"Afghanistan-Zäit"}
348 ls{"Zentralafrikanesch Zäit"}
351 ls{"Ostafrikanesch Zäit"}
354 ls{"Südafrikanesch Zäit"}
358 lg{"Westafrikanesch Zäit"}
363 lg{"Alaska-Zäit"}
368 lg{"Almaty-Zäit"}
373 lg{"Amazonas-Zäit"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/zone/
Dlb.txt313 ec{"Zürech"}
341 lg{"Acre-Zäit"}
345 ls{"Afghanistan-Zäit"}
348 ls{"Zentralafrikanesch Zäit"}
351 ls{"Ostafrikanesch Zäit"}
354 ls{"Südafrikanesch Zäit"}
358 lg{"Westafrikanesch Zäit"}
363 lg{"Alaska-Zäit"}
368 lg{"Almaty-Zäit"}
373 lg{"Amazonas-Zäit"}
[all …]
/third_party/icu/icu4c/source/data/zone/
Dlb.txt313 ec{"Zürech"}
341 lg{"Acre-Zäit"}
345 ls{"Afghanistan-Zäit"}
348 ls{"Zentralafrikanesch Zäit"}
351 ls{"Ostafrikanesch Zäit"}
354 ls{"Südafrikanesch Zäit"}
358 lg{"Westafrikanesch Zäit"}
363 lg{"Alaska-Zäit"}
368 lg{"Almaty-Zäit"}
373 lg{"Amazonas-Zäit"}
[all …]
/third_party/boost/libs/lambda/test/
Dextending_rt_traits.cpp107 class Z {}; class
109 Z operator+(const X&, const Y&) { return Z(); } in operator +()
110 Z operator-(const X&, const Y&) { return Z(); } in operator -()
113 Z operator/(const X&, const Y&) { return Z(); } in operator /()
114 Z operator%(const X&, const Y&) { return Z(); } in operator %()
144 Z operator>>(const X&, const Y&) { return Z(); } in operator >>()
145 Z operator&(const X&, const Y&) { return Z(); } in operator &()
146 Z operator|(const X&, const Y&) { return Z(); } in operator |()
147 Z operator^(const X&, const Y&) { return Z(); } in operator ^()
152 Z operator>(const X&, const Y&) { return Z(); } in operator >()
[all …]
/third_party/boost/libs/phoenix/test/bll_compatibility/
Dextending_rt_traits.cpp107 class Z {}; class
109 Z operator+(const X&, const Y&) { return Z(); } in operator +()
110 Z operator-(const X&, const Y&) { return Z(); } in operator -()
113 Z operator/(const X&, const Y&) { return Z(); } in operator /()
114 Z operator%(const X&, const Y&) { return Z(); } in operator %()
144 Z operator>>(const X&, const Y&) { return Z(); } in operator >>()
145 Z operator&(const X&, const Y&) { return Z(); } in operator &()
146 Z operator|(const X&, const Y&) { return Z(); } in operator |()
147 Z operator^(const X&, const Y&) { return Z(); } in operator ^()
152 Z operator>(const X&, const Y&) { return Z(); } in operator >()
[all …]
/third_party/curl/tests/libtest/
Dtest.h133 #define exe_easy_init(A,Y,Z) do { \ argument
135 fprintf(stderr, "%s:%d curl_easy_init() failed\n", (Y), (Z)); \
143 #define chk_easy_init(A,Y,Z) do { \ argument
144 exe_easy_init((A), (Y), (Z)); \
154 #define exe_multi_init(A,Y,Z) do { \ argument
156 fprintf(stderr, "%s:%d curl_multi_init() failed\n", (Y), (Z)); \
164 #define chk_multi_init(A,Y,Z) do { \ argument
165 exe_multi_init((A), (Y), (Z)); \
175 #define exe_easy_setopt(A,B,C,Y,Z) do { \ argument
180 (Y), (Z), (int)ec, curl_easy_strerror(ec)); \
[all …]
/third_party/boost/boost/integer/
Dextended_euclidean.hpp20 template<class Z>
23 Z gcd;
24 Z x;
25 Z y;
28 template<class Z>
29 typename boost::enable_if_c< std::numeric_limits< Z >::is_signed, euclidean_result_t< Z > >::type
30 extended_euclidean(Z m, Z n) in extended_euclidean()
43 Z u0 = m; in extended_euclidean()
44 Z u1 = 1; in extended_euclidean()
45 Z u2 = 0; in extended_euclidean()
[all …]
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/
Dtranspose.cl24 int Z = get_global_id(2); // C4, W4 for src
25 if (4 * X >= shape.y || Y >= shape.z || 4 * Z >= shape.w) {
30 FLT4 src0 = READ_IMAGE(src_data, smp_zero, (int2)(4 * Z * H4 + X, Y));
32 if (4 * Z + 1 < shape.w) {
33 src1 = READ_IMAGE(src_data, smp_zero, (int2)((4 * Z + 1) * H4 + X, Y));
36 if (4 * Z + 2 < shape.w) {
37 src2 = READ_IMAGE(src_data, smp_zero, (int2)((4 * Z + 2) * H4 + X, Y));
40 if (4 * Z + 3 < shape.w) {
41 src3 = READ_IMAGE(src_data, smp_zero, (int2)((4 * Z + 3) * H4 + X, Y));
47 WRITE_IMAGE(dst_data, (int2)(Y * C4 + Z, 4 * X), dst0);
[all …]

12345678910>>...135