Home
last modified time | relevance | path

Searched refs:E (Results 1 – 25 of 5163) sorted by relevance

12345678910>>...207

/third_party/typescript/tests/baselines/reference/
DenumLiteralsSubtypeReduction.js2 enum E {
1031 return [ E.E0, E.E1]
1033 return [ E.E2, E.E3]
1035 return [ E.E4, E.E5]
1037 return [ E.E6, E.E7]
1039 return [ E.E8, E.E9]
1041 return [ E.E10, E.E11]
1043 return [ E.E12, E.E13]
1045 return [ E.E14, E.E15]
1047 return [ E.E16, E.E17]
[all …]
DenumLiteralsSubtypeReduction.types2 enum E {
3 >E : E
6 >E0 : E.E0
9 >E1 : E.E1
12 >E2 : E.E2
15 >E3 : E.E3
18 >E4 : E.E4
21 >E5 : E.E5
24 >E6 : E.E6
27 >E7 : E.E7
[all …]
DarithmeticOperatorWithEnumUnion.types4 enum E {
5 >E : E
8 >a : E.a
11 >b : E.b
29 var c: E | F;
30 >c : E | F
36 >c : E | F
42 >c : E | F
48 >c : E | F
49 >c : E | F
[all …]
DarithmeticOperatorWithEnum.types4 enum E {
5 >E : E
8 >a : E.a
11 >b : E.b
20 var c: E;
21 >c : E
27 >c : E
33 >c : E
39 >c : E
40 >c : E
[all …]
DpropertyNamesOfReservedWords.js210 enum E {
276 var r7 = E.abstract;
277 var r8 = E.as;
294 var E; variable
295 (function (E) { argument
296 E[E["abstract"] = 0] = "abstract";
297 E[E["as"] = 1] = "as";
298 E[E["boolean"] = 2] = "boolean";
299 E[E["break"] = 3] = "break";
300 E[E["byte"] = 4] = "byte";
[all …]
DenumLiteralsSubtypeReduction.symbols2 enum E {
3 >E : Symbol(E, Decl(enumLiteralsSubtypeReduction.ts, 0, 0))
6 >E0 : Symbol(E.E0, Decl(enumLiteralsSubtypeReduction.ts, 0, 8))
9 >E1 : Symbol(E.E1, Decl(enumLiteralsSubtypeReduction.ts, 1, 7))
12 >E2 : Symbol(E.E2, Decl(enumLiteralsSubtypeReduction.ts, 2, 7))
15 >E3 : Symbol(E.E3, Decl(enumLiteralsSubtypeReduction.ts, 3, 7))
18 >E4 : Symbol(E.E4, Decl(enumLiteralsSubtypeReduction.ts, 4, 7))
21 >E5 : Symbol(E.E5, Decl(enumLiteralsSubtypeReduction.ts, 5, 7))
24 >E6 : Symbol(E.E6, Decl(enumLiteralsSubtypeReduction.ts, 6, 7))
27 >E7 : Symbol(E.E7, Decl(enumLiteralsSubtypeReduction.ts, 7, 7))
[all …]
DenumAssignabilityInInheritance.types5 enum E { A }
6 >E : E
7 >A : E.A
10 [x: string]: E;
13 foo: E; // identical and subtype, ok
14 >foo : E
18 declare function foo(x: E): E;
19 >foo : { (x: E): E; (x: number): number; (x: any): any; }
20 >x : E
23 >foo : { (x: E): E; (x: number): number; (x: any): any; }
[all …]
DcomparisonOperatorWithSubtypeEnumAndNumber.types2 enum E { a, b, c }
3 >E : E
4 >a : E.a
5 >b : E.b
6 >c : E.c
8 var a: E;
9 >a : E
18 >a : E
25 >a : E
27 var ra3 = E.a < b;
[all …]
DparsingDeepParenthensizedExpression.types36 E = 0,
37 >E : number
48 … f + 288 | 0)) >= (0 | l) && b(288), T = v, A = t, M = 0 | o[(y = e) >> 2], E = 0 | o[(y + 4 | 0) …
49E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
50E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
51E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
52E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
53E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
54E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
55E = 0 | o[(y + 4 | 0) >> 2], w = 0 | o[(y + 8 | 0) >> 2], S = 0 | o[(y + 12 | 0) >> 2], …
[all …]
DintersectionOfUnionOfUnitTypes.types4 const enum E { A, B, C, D, E, F }
5 >E : E
6 >A : E.A
7 >B : E.B
8 >C : E.C
9 >D : E.D
10 >E : E.E
11 >F : E.F
49 let z0: (E.A | E.B | E.C) & (E.A | E.B | E.C); // E.A | E.B | E.C
50 >z0 : E.A | E.B | E.C
[all …]
/third_party/python/Lib/test/
Dfloating_points.txt11 15E-1
12 125E-2
13 1125E-3
14 10625E-4
15 103125E-5
16 1015625E-6
17 10078125E-7
18 100390625E-8
19 1001953125E-9
20 10009765625E-10
[all …]
/third_party/typescript/tests/cases/compiler/
DenumLiteralsSubtypeReduction.ts1 enum E { enum
1030 return [ E.E0, E.E1]
1032 return [ E.E2, E.E3]
1034 return [ E.E4, E.E5]
1036 return [ E.E6, E.E7]
1038 return [ E.E8, E.E9]
1040 return [ E.E10, E.E11]
1042 return [ E.E12, E.E13]
1044 return [ E.E14, E.E15]
1046 return [ E.E16, E.E17]
[all …]
/third_party/openssl/crypto/sha/asm/
Dkeccak1600-armv4.pl91 my @E = map("r$_",(10..12,14));
160 add @E[2],sp,#$A[0][0]
161 add @E[0],sp,#$A[1][0]
165 eor @E[1],@E[1],@E[1]
166 str @E[1],[sp,#444]
176 ldmia @E[2],{@C[0]-@C[3]} @ A[0][0..1]
177 ldmia @E[0],{@E[0]-@E[2],@E[3]} @ A[1][0..1]
179 eor @C[0],@C[0],@E[0]
180 eor @C[1],@C[1],@E[1]
181 eor @C[2],@C[2],@E[2]
[all …]
/third_party/python/Lib/test/decimaltestdata/
Drandoms.decTest30 xadd001 add 905.67402 -202896611.E-780472620 -> 905.674020 Inexact Rounded
31 xcom001 compare 905.67402 -202896611.E-780472620 -> 1
32 xdiv001 divide 905.67402 -202896611.E-780472620 -> -4.46372177E+780472614 Inexact Rounded
33 xdvi001 divideint 905.67402 -202896611.E-780472620 -> NaN Division_impossible
34 xmul001 multiply 905.67402 -202896611.E-780472620 -> -1.83758189E-780472609 Inexact Rounded
36 xrem001 remainder 905.67402 -202896611.E-780472620 -> NaN Division_impossible
37 xsub001 subtract 905.67402 -202896611.E-780472620 -> 905.674020 Inexact Rounded
42 xmul002 multiply 3915134.7 -597164907. -> -2.33798105E+15 Inexact Rounded
43 xpow002 power 3915134.7 -597164907 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
50 xmul003 multiply 309759261 62663.487 -> 1.94105954E+13 Inexact Rounded
[all …]
DdqSameQuantum.decTest35 dqsamq011 samequantum 10 1E+1 -> 0
36 dqsamq012 samequantum 10E+1 10E+1 -> 1
37 dqsamq013 samequantum 100 10E+1 -> 0
38 dqsamq014 samequantum 100 1E+2 -> 0
39 dqsamq015 samequantum 0.1 1E-2 -> 0
40 dqsamq016 samequantum 0.1 1E-1 -> 1
41 dqsamq017 samequantum 0.1 1E-0 -> 0
43 dqsamq019 samequantum 999E-1 99.9 -> 1
44 dqsamq020 samequantum 111E-1 22.2 -> 1
45 dqsamq021 samequantum 111E-1 1234.2 -> 1
[all …]
Dsamequantum.decTest33 samq011 samequantum 10 1E+1 -> 0
34 samq012 samequantum 10E+1 10E+1 -> 1
35 samq013 samequantum 100 10E+1 -> 0
36 samq014 samequantum 100 1E+2 -> 0
37 samq015 samequantum 0.1 1E-2 -> 0
38 samq016 samequantum 0.1 1E-1 -> 1
39 samq017 samequantum 0.1 1E-0 -> 0
41 samq019 samequantum 999E-1 99.9 -> 1
42 samq020 samequantum 111E-1 22.2 -> 1
43 samq021 samequantum 111E-1 1234.2 -> 1
[all …]
DddSameQuantum.decTest35 ddsamq011 samequantum 10 1E+1 -> 0
36 ddsamq012 samequantum 10E+1 10E+1 -> 1
37 ddsamq013 samequantum 100 10E+1 -> 0
38 ddsamq014 samequantum 100 1E+2 -> 0
39 ddsamq015 samequantum 0.1 1E-2 -> 0
40 ddsamq016 samequantum 0.1 1E-1 -> 1
41 ddsamq017 samequantum 0.1 1E-0 -> 0
43 ddsamq019 samequantum 999E-1 99.9 -> 1
44 ddsamq020 samequantum 111E-1 22.2 -> 1
45 ddsamq021 samequantum 111E-1 1234.2 -> 1
[all …]
DrandomBound32.decTest32 …913.065314738743322579 0218.932010396534371704930714860E+797 -> 2.189320103965343717049307148600E+…
33 comx3001 compare 4953734675913.065314738743322579 0218.932010396534371704930714860E+797 -> -1
34 …913.065314738743322579 0218.932010396534371704930714860E+797 -> 2.262681764507965005284080800438E-…
35 dvix3001 divideint 4953734675913.065314738743322579 0218.932010396534371704930714860E+797 -> 0
36 …913.065314738743322579 0218.932010396534371704930714860E+797 -> 1.084531091568672041923151632066E+…
38 remx3001 remainder 4953734675913.065314738743322579 0218.932010396534371704930714860E+797 -> 495373…
39 …913.065314738743322579 0218.932010396534371704930714860E+797 -> -2.189320103965343717049307148600E
40 …dd 9641.684323386955881595490347910E-844 -78864532047.12287484430980636798E+934 -> -7.886453204712…
41 comx3002 compare 9641.684323386955881595490347910E-844 -78864532047.12287484430980636798E+934 -> 1
42 …de 9641.684323386955881595490347910E-844 -78864532047.12287484430980636798E+934 -> -1.222562801441…
[all …]
Dextra.decTest11 extr0000 apply 1E+11 -> Infinity Overflow Inexact Rounded
12 extr0001 apply 1E+10 -> Infinity Overflow Inexact Rounded
13 extr0002 apply 1E+9 -> 1.00000E+9 Clamped
14 extr0003 apply 1E+8 -> 1.0000E+8 Clamped
15 extr0004 apply 1E+7 -> 1.000E+7 Clamped
16 extr0005 apply 1E+6 -> 1.00E+6 Clamped
17 extr0006 apply 1E+5 -> 1.0E+5 Clamped
18 extr0007 apply 1E+4 -> 1E+4
19 extr0008 apply 1E+3 -> 1E+3
20 extr0009 apply 1E+2 -> 1E+2
[all …]
Dfma.decTest31 -- 2. Multiply tests (third operand is neutral zero [0E+emax])
83 -- 888565290 1557.96930 -86087.7578 -> 1.38435735E+12
84 fma0201 fma 888565290 1557.96930 -86087.7578 -> 1.38435736E+12 Inexact Rounded
85 -- -85519342.9 735155419 42010431 -> -6.28700084E+16
86 fma0205 fma -85519342.9 735155419 42010431 -> -6.28700083E+16 Inexact Rounded
87 -- -98025.5 -294603.472 10414348.2 -> 2.88890669E+10
88 fma0208 fma -98025.5 -294603.472 10414348.2 -> 2.88890670E+10 Inexact Rounded
89 -- 5967627.39 83526540.6 498494.810 -> 4.98455271E+14
90 fma0211 fma 5967627.39 83526540.6 498494.810 -> 4.98455272E+14 Inexact Rounded
95 -- -68.81500 59961113.9 -8988862 -> -4.13521291E+9
[all …]
Dbase.decTest68 basx035 toSci '0.000000123456789' -> '1.23456789E-7'
69 basx036 toSci '0.0000000123456789' -> '1.23456789E-8'
75 -- strings without E cannot generate E in result
90 basx054 toSci "0.0000005" -> '5E-7'
91 basx055 toSci "0.00000005" -> '5E-8'
104 basx067 toSci "5E-6" -> '0.000005'
105 basx068 toSci "50E-7" -> '0.0000050'
106 basx069 toSci "5E-7" -> '5E-7'
128 basx088 toSci 12345678901234561.23 -> 1.234567890123456E+16 Inexact Rounded
129 basx089 toSci 123456789012345612.3 -> 1.234567890123456E+17 Inexact Rounded
[all …]
/third_party/skia/third_party/externals/tint/src/utils/
Denum_set_test.cc28 enum class E { A = 0, B = 3, C = 7 }; enum
30 std::ostream& operator<<(std::ostream& out, E e) { in operator <<()
32 case E::A: in operator <<()
34 case E::B: in operator <<()
36 case E::C: in operator <<()
43 EnumSet<E> set; in TEST()
44 EXPECT_FALSE(set.Contains(E::A)); in TEST()
45 EXPECT_FALSE(set.Contains(E::B)); in TEST()
46 EXPECT_FALSE(set.Contains(E::C)); in TEST()
51 EnumSet<E> set(E::B); in TEST()
[all …]
/third_party/musl/src/errno/
D__strerror.h6 E(0, "No error information")
8 E(EILSEQ, "Illegal byte sequence")
9 E(EDOM, "Domain error")
10 E(ERANGE, "Result not representable")
12 E(ENOTTY, "Not a tty")
13 E(EACCES, "Permission denied")
14 E(EPERM, "Operation not permitted")
15 E(ENOENT, "No such file or directory")
16 E(ESRCH, "No such process")
17 E(EEXIST, "File exists")
[all …]
/third_party/musl/porting/liteos_a/kernel/src/errno/
D__strerror.h6 E(0, "No error information")
8 E(EILSEQ, "Illegal byte sequence")
9 E(EDOM, "Domain error")
10 E(ERANGE, "Result not representable")
12 E(ENOTTY, "Not a tty")
13 E(EACCES, "Permission denied")
14 E(EPERM, "Operation not permitted")
15 E(ENOENT, "No such file or directory")
16 E(ESRCH, "No such process")
17 E(EEXIST, "File exists")
[all …]
/third_party/musl/porting/liteos_m/kernel/src/errno/
D__strerror.h7 E(EILSEQ, "Illegal byte sequence")
8 E(EDOM, "Domain error")
9 E(ERANGE, "Result not representable")
11 E(ENOTTY, "Not a tty")
12 E(EACCES, "Permission denied")
13 E(EPERM, "Operation not permitted")
14 E(ENOENT, "No such file or directory")
15 E(ESRCH, "No such process")
16 E(EEXIST, "File exists")
18 E(EOVERFLOW, "Value too large for data type")
[all …]

12345678910>>...207