Home
last modified time | relevance | path

Searched full:a (Results 1 – 25 of 19326) sorted by relevance

12345678910>>...774

/third_party/jerryscript/tests/jerry/
Dregression-test-issue-276.js5 // You may obtain a copy of the License at
15 /* 256 "a" in the array */
18 ["a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
19 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
20 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
21 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
22 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
23 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
24 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
25 "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a",
[all …]
/third_party/ninja/src/
Dutil_test.cc5 // You may obtain a copy of the License at
234 path = "a\\foo.h"; in TEST()
236 EXPECT_EQ("a/foo.h", path); in TEST()
239 path = "a/bcd/efh\\foo.h"; in TEST()
241 EXPECT_EQ("a/bcd/efh/foo.h", path); in TEST()
244 path = "a\\bcd/efh\\foo.h"; in TEST()
246 EXPECT_EQ("a/bcd/efh/foo.h", path); in TEST()
249 path = "a\\bcd\\efh\\foo.h"; in TEST()
251 EXPECT_EQ("a/bcd/efh/foo.h", path); in TEST()
254 path = "a/bcd/efh/foo.h"; in TEST()
[all …]
/third_party/typescript/tests/baselines/reference/
DstaticFieldWithInterfaceContext.types3 x: { a: "a" };
4 >x : { a: "a"; }
5 >a : "a"
9 >class { // should typecheck the same as the last line static x = { a: "a" };} : typeof c
12 static x = { a: "a" };
13 >x : { a: "a"; }
14 >{ a: "a" } : { a: "a"; }
15 >a : "a"
16 >"a" : "a"
19 c.x = { a: "a" };
[all …]
DgenericDefaults.types2 interface A { a: number; }
3 >a : number
14 interface AB { a: number; b: number; }
15 >a : number
22 declare const a: A;
23 >a : A
44 declare function f00(a?: A): A;
45 >f00 : (a?: A) => A
46 >a : A
50 >f00() : A
[all …]
DconstantEnumAssert.types5 a,
6 >a : E1.a
15 a = 'a',
16 >a : E2.a
17 >'a' : "a"
27 a = 1,
28 >a : E3
31 b = a << 1,
33 >a << 1 : number
34 >a : E3
[all …]
DgenericDefaults.js2 interface A { a: number; }
6 interface AB { a: number; b: number; }
9 declare const a: A;
18 declare function f00(a?: A): A;
21 f00(a);
23 // function with a type parameter without a default
24 declare function f01<T>(a?: T): T;
27 f01(a);
29 f01<A>();
30 f01<A>(a);
[all …]
DgenericDefaults.errors.txt15 interface A { a: number; }
19 interface AB { a: number; b: number; }
22 declare const a: A;
31 declare function f00(a?: A): A;
34 f00(a);
36 // function with a type parameter without a default
37 declare function f01<T>(a?: T): T;
40 f01(a);
42 f01<A>();
43 f01<A>(a);
[all …]
DcomparisonOperatorWithSubtypeEnumAndNumber.types2 enum E { a, b, c }
4 >a : E.a
8 var a: E;
9 >a : E
15 var ra1 = a < b;
17 >a < b : boolean
18 >a : E
21 var ra2 = b < a;
23 >b < a : boolean
25 >a : E
[all …]
DprivateNameStaticFieldAssignment.types2 class A {
3 >A : A
10 A.#field = 1;
11 >A.#field = 1 : 1
12 >A.#field : number
13 >A : typeof A
16 A.#field += 2;
17 >A.#field += 2 : number
18 >A.#field : number
19 >A : typeof A
[all …]
DtypeGuardTypeOfUndefined.types3 function test1(a: any) {
4 >test1 : (a: any) => void
5 >a : any
7 if (typeof a !== "undefined") {
8 >typeof a !== "undefined" : boolean
9 >typeof a : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct…
10 >a : any
13 if (typeof a === "boolean") {
14 >typeof a === "boolean" : boolean
15 >typeof a : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct…
[all …]
DtypeGuardTypeOfUndefined.js3 function test1(a: any) {
4 if (typeof a !== "undefined") {
5 if (typeof a === "boolean") {
6 a;
9 a;
13 a;
17 function test2(a: any) {
18 if (typeof a === "undefined") {
19 if (typeof a === "boolean") {
20 a;
[all …]
DtypeGuardTypeOfUndefined.symbols3 function test1(a: any) {
5 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15))
7 if (typeof a !== "undefined") {
8 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15))
10 if (typeof a === "boolean") {
11 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15))
13 a;
14 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15))
17 a;
18 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15))
[all …]
DcontextualTypeWithUnionTypeMembers.types2 //When used as a contextual type, a union type U has those members that are present in any of
5 commonMethodType(a: string): string;
6 >commonMethodType : (a: string) => string
7 >a : string
12 commonMethodWithTypeParameter(a: T): T;
13 >commonMethodWithTypeParameter : (a: T) => T
14 >a : T
16 methodOnlyInI1(a: string): string;
17 >methodOnlyInI1 : (a: string) => string
18 >a : string
[all …]
/third_party/mesa3d/src/mesa/x86/
Dassyntax.h44 * (a) AT&T SysVr4 as(1): define ATT_ASSEMBLER
150 #define CHOICE(a,b,c) c argument
242 #define CHOICE(a,b,c) b argument
249 #define CHOICE(a,b,c) a argument
259 #define GLNAME(a) a argument
261 #define GLNAME(a) CONCAT(_,a) argument
334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument
335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument
338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument
339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument
[all …]
/third_party/openssl/test/recipes/10-test_bn_data/
Dbnshift.txt4 # this file except in compliance with the License. You can obtain a copy
8 # These test vectors satisfy A * 2 = LShift1
13 A = 0
16 A = 988b0905e52efb2709f98a12a
19 A = -988b0905e52efb2709f98a12a
22 A = 13116120bca5df64e13f314254
25 A = -13116120bca5df64e13f314254
28 A = 2622c241794bbec9c27e6284a8
31 A = -2622c241794bbec9c27e6284a8
34 A = 4c458482f2977d9384fcc50951
[all …]
Dbngcd.txt4 # this file except in compliance with the License. You can obtain a copy
10 # These test vectors satisfy gcd(A, B) = GCD.
13 A = 0
18 A = 1
23 A = 1
27 # gcd(0,a) = a
28 A = 0
32 # gcd(-a,0) = |a|
33 A = -231f16458c487346cf50a17beec83632f25d19abeea1097c746533cd3e35207b7efd75dc3e9c663a64b6861e88579d…
40 A = f
[all …]
Dbnsum.txt4 # this file except in compliance with the License. You can obtain a copy
10 # These test vectors satisfy A + B = Sum.
13 A = 0
17 A = c590e57ee64fced3ca84d4bb013bba7d633e68b2ff4e27bf1db43f386dbfcce501f112b7fff6fb9436a576ccfccce12…
21 A = -c590e57ee64fced3ca84d4bb013bba7d633e68b2ff4e27bf1db43f386dbfcce501f112b7fff6fb9436a576ccfccce1…
25 A = c590e57ee64fced3ca84d4bb013bba7d633e68b2ff4e27bf1db43f386dbfcce501f112b7fff6fb9436a576ccfccce12…
29 A = c590e57ee64fced18aff6e2f0c6ac05625b1e94f394f42470cae14d12cadea4f5ab6b9d77225fe3b4903825966c7875…
33 A = c590e57ee64fced18aff6e2f0c6ac05625b1e94f394f42470cae14d12cadea4f5ab6b9d77225fe3b4903825966c7875…
37 A = -c590e57ee64fced18aff6e2f0c6ac05625b1e94f394f42470cae14d12cadea4f5ab6b9d77225fe3b4903825966c787…
41 A = -c590e57ee64fced18aff6e2f0c6ac05625b1e94f394f42470cae14d12cadea4f5ab6b9d77225fe3b4903825966c787…
[all …]
/third_party/python/Tools/unicode/python-mappings/
Dgb-18030-2000.xml6 0x80 appears to be a valid (and unassigned) single-byte code, added to the validity.
29 <assignments sub="1A">
31 <a u="0000" b="00"/>
32 <a u="0001" b="01"/>
33 <a u="0002" b="02"/>
34 <a u="0003" b="03"/>
35 <a u="0004" b="04"/>
36 <a u="0005" b="05"/>
37 <a u="0006" b="06"/>
38 <a u="0007" b="07"/>
[all …]
/third_party/typescript/tests/cases/compiler/
DgenericDefaults.ts2 interface A { a: number; } interface
6 interface AB { a: number; b: number; } property
9 declare const a: A; constant
18 declare function f00(a?: A): A;
21 f00(a);
23 // function with a type parameter without a default
24 declare function f01<T>(a?: T): T;
27 f01(a);
29 f01<A>();
30 f01<A>(a);
[all …]
/third_party/python/Tools/scripts/
Dvar_access_benchmark.py13 class A(object): class
66 def read_classvar_from_class(trials=trials, A=A): argument
67 A.x = 1
69 A.x; A.x; A.x; A.x; A.x
70 A.x; A.x; A.x; A.x; A.x
71 A.x; A.x; A.x; A.x; A.x
72 A.x; A.x; A.x; A.x; A.x
73 A.x; A.x; A.x; A.x; A.x
75 def read_classvar_from_instance(trials=trials, A=A): argument
76 A.x = 1
[all …]
/third_party/toybox/tests/files/bc/
Darctan.txt2 a(.267)
3 a(1)
5 a(.267)
6 a(1)
8 a(.267)
9 a(1)
11 a(.267)
12 a(1)
14 a(.267)
15 a(1)
[all …]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
Dkeccak1600-c64x.pl5 # this file except in compliance with the License. You can obtain a copy
21 # with bit interleaving. 64-bit values are simply split between A- and
22 # B-files, with A-file holding least significant halves. This works
25 # [incredible for a 32-bit processor] 10.9 cycles per processed byte
30 my @A = map([ $_, ($_+1), ($_+2), ($_+3), ($_+4) ], (5,10,16,21,26));
31 $A[1][4] = 31; # B14 is reserved, A14 is used as iota[]
32 ($A[3][0],$A[4][1]) = ($A[4][1],$A[3][0]);
33 my @C = (0..4,$A[3][0],$A[4][0]);
47 $p ROTL B$src,$rot/2+1,A$dst
48 || ROTL A$src,$rot/2, B$dst
[all …]
/third_party/openssl/crypto/sha/asm/
Dkeccak1600-c64x.pl5 # this file except in compliance with the License. You can obtain a copy
21 # with bit interleaving. 64-bit values are simply split between A- and
22 # B-files, with A-file holding least significant halves. This works
25 # [incredible for a 32-bit processor] 10.9 cycles per processed byte
30 my @A = map([ $_, ($_+1), ($_+2), ($_+3), ($_+4) ], (5,10,16,21,26));
31 $A[1][4] = 31; # B14 is reserved, A14 is used as iota[]
32 ($A[3][0],$A[4][1]) = ($A[4][1],$A[3][0]);
33 my @C = (0..4,$A[3][0],$A[4][0]);
47 $p ROTL B$src,$rot/2+1,A$dst
48 || ROTL A$src,$rot/2, B$dst
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/
Dglext.php2 <li value=1><a href="extensions/EXT/EXT_abgr.txt">GL_EXT_abgr</a>
4 <li value=2><a href="extensions/EXT/EXT_blend_color.txt">GL_EXT_blend_color</a>
6 <li value=3><a href="extensions/EXT/EXT_polygon_offset.txt">GL_EXT_polygon_offset</a>
8 <li value=4><a href="extensions/EXT/EXT_texture.txt">GL_EXT_texture</a>
10 <li value=6><a href="extensions/EXT/EXT_texture3D.txt">GL_EXT_texture3D</a>
12 <li value=7><a href="extensions/SGIS/SGIS_texture_filter4.txt">GL_SGIS_texture_filter4</a>
14 <li value=9><a href="extensions/EXT/EXT_subtexture.txt">GL_EXT_subtexture</a>
16 <li value=10><a href="extensions/EXT/EXT_copy_texture.txt">GL_EXT_copy_texture</a>
18 <li value=11><a href="extensions/EXT/EXT_histogram.txt">GL_EXT_histogram</a>
20 <li value=12><a href="extensions/EXT/EXT_convolution.txt">GL_EXT_convolution</a>
[all …]
/third_party/openGLES/extensions/
Dglext.php2 <li value=1><a href="extensions/EXT/EXT_abgr.txt">GL_EXT_abgr</a>
4 <li value=2><a href="extensions/EXT/EXT_blend_color.txt">GL_EXT_blend_color</a>
6 <li value=3><a href="extensions/EXT/EXT_polygon_offset.txt">GL_EXT_polygon_offset</a>
8 <li value=4><a href="extensions/EXT/EXT_texture.txt">GL_EXT_texture</a>
10 <li value=6><a href="extensions/EXT/EXT_texture3D.txt">GL_EXT_texture3D</a>
12 <li value=7><a href="extensions/SGIS/SGIS_texture_filter4.txt">GL_SGIS_texture_filter4</a>
14 <li value=9><a href="extensions/EXT/EXT_subtexture.txt">GL_EXT_subtexture</a>
16 <li value=10><a href="extensions/EXT/EXT_copy_texture.txt">GL_EXT_copy_texture</a>
18 <li value=11><a href="extensions/EXT/EXT_histogram.txt">GL_EXT_histogram</a>
20 <li value=12><a href="extensions/EXT/EXT_convolution.txt">GL_EXT_convolution</a>
[all …]

12345678910>>...774