Home
last modified time | relevance | path

Searched refs:o5 (Results 1 – 25 of 169) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
DelementAccessChain.types78 declare const o5: { b?(): { c: { d?: { e: string } } } };
79 >o5 : { b?(): { c: { d?: { e: string; }; };}; }
85 o5.b?.()["c"].d?.e;
86 >o5.b?.()["c"].d?.e : string | undefined
87 >o5.b?.()["c"].d : { e: string; } | undefined
88 >o5.b?.()["c"] : { d?: { e: string; } | undefined; } | undefined
89 >o5.b?.() : { c: { d?: { e: string; } | undefined; }; } | undefined
90 >o5.b : (() => { c: { d?: { e: string; } | undefined; }; }) | undefined
91 >o5 : { b?(): { c: { d?: { e: string; } | undefined; }; }; }
97 o5.b?.()["c"].d?.["e"];
[all …]
DelementAccessChain.js17 declare const o5: { b?(): { c: { d?: { e: string } } } };
18 o5.b?.()["c"].d?.e;
19 o5.b?.()["c"].d?.["e"];
20 o5["b"]?.()["c"].d?.e;
21 o5["b"]?.()["c"].d?.["e"];
43 (_h = (_g = o5.b) === null || _g === void 0 ? void 0 : _g.call(o5)["c"].d) === null || _h === void …
44 (_k = (_j = o5.b) === null || _j === void 0 ? void 0 : _j.call(o5)["c"].d) === null || _k === void …
45 (_m = (_l = o5["b"]) === null || _l === void 0 ? void 0 : _l.call(o5)["c"].d) === null || _m === vo…
46 (_p = (_o = o5["b"]) === null || _o === void 0 ? void 0 : _o.call(o5)["c"].d) === null || _p === vo…
DelementAccessChain.symbols63 declare const o5: { b?(): { c: { d?: { e: string } } } };
64 >o5 : Symbol(o5, Decl(elementAccessChain.ts, 15, 13))
70 o5.b?.()["c"].d?.e;
71 >o5.b?.()["c"].d?.e : Symbol(e, Decl(elementAccessChain.ts, 15, 38))
72 >o5.b?.()["c"].d : Symbol(d, Decl(elementAccessChain.ts, 15, 32))
73 >o5.b : Symbol(b, Decl(elementAccessChain.ts, 15, 19))
74 >o5 : Symbol(o5, Decl(elementAccessChain.ts, 15, 13))
79 o5.b?.()["c"].d?.["e"];
80 >o5.b?.()["c"].d : Symbol(d, Decl(elementAccessChain.ts, 15, 32))
81 >o5.b : Symbol(b, Decl(elementAccessChain.ts, 15, 19))
[all …]
DcontrolFlowOptionalChain.js90 declare const o5: { x?: { y: { z?: { w: boolean } } } };
91 if (o5.x?.y.z?.w) {
92 o5.x;
93 o5.x.y;
94 o5.x.y.z;
95 o5.x.y.z.w; // true
96 o5.x.y.z?.w; // true
97 o5.x?.y.z.w; // true
98 o5.x?.y.z?.w; // true
101 o5.x;
[all …]
DdeleteChain.types108 declare const o5: { b?(): { c: { d?: { e: string } } } };
109 >o5 : { b?(): { c: { d?: { e: string; }; };}; }
115 delete o5.b?.().c.d?.e;
116 >delete o5.b?.().c.d?.e : boolean
117 >o5.b?.().c.d?.e : string | undefined
118 >o5.b?.().c.d : { e: string; } | undefined
119 >o5.b?.().c : { d?: { e: string; } | undefined; } | undefined
120 >o5.b?.() : { c: { d?: { e: string; } | undefined; }; } | undefined
121 >o5.b : (() => { c: { d?: { e: string; } | undefined; }; }) | undefined
122 >o5 : { b?(): { c: { d?: { e: string; } | undefined; }; }; }
[all …]
DcontrolFlowOptionalChain.types321 declare const o5: { x?: { y: { z?: { w: boolean } } } };
322 >o5 : { x?: { y: { z?: { w: boolean; };}; } | undefined; }
328 if (o5.x?.y.z?.w) {
329 >o5.x?.y.z?.w : boolean | undefined
330 >o5.x?.y.z : { w: boolean; } | undefined
331 >o5.x?.y : { z?: { w: boolean; } | undefined; } | undefined
332 >o5.x : { y: { z?: { w: boolean; } | undefined; }; } | undefined
333 >o5 : { x?: { y: { z?: { w: boolean; } | undefined; }; } | undefined; }
339 o5.x;
340 >o5.x : { y: { z?: { w: boolean; } | undefined; }; }
[all …]
DdeleteChain.symbols94 declare const o5: { b?(): { c: { d?: { e: string } } } };
95 >o5 : Symbol(o5, Decl(deleteChain.ts, 17, 13))
101 delete o5.b?.().c.d?.e;
102 >o5.b?.().c.d?.e : Symbol(e, Decl(deleteChain.ts, 17, 38))
103 >o5.b?.().c.d : Symbol(d, Decl(deleteChain.ts, 17, 32))
104 >o5.b?.().c : Symbol(c, Decl(deleteChain.ts, 17, 27))
105 >o5.b : Symbol(b, Decl(deleteChain.ts, 17, 19))
106 >o5 : Symbol(o5, Decl(deleteChain.ts, 17, 13))
112 delete (o5.b?.().c.d?.e);
113 >o5.b?.().c.d?.e : Symbol(e, Decl(deleteChain.ts, 17, 38))
[all …]
DdeleteChain.js19 declare const o5: { b?(): { c: { d?: { e: string } } } };
20 delete o5.b?.().c.d?.e;
21 delete (o5.b?.().c.d?.e);
39 (_k = (_j = o5.b) === null || _j === void 0 ? void 0 : _j.call(o5).c.d) === null || _k === void 0 ?…
40 ((_m = (_l = o5.b) === null || _l === void 0 ? void 0 : _l.call(o5).c.d) === null || _m === void 0 …
DcontrolFlowOptionalChain.symbols295 declare const o5: { x?: { y: { z?: { w: boolean } } } };
296 >o5 : Symbol(o5, Decl(controlFlowOptionalChain.ts, 88, 13))
302 if (o5.x?.y.z?.w) {
303 >o5.x?.y.z?.w : Symbol(w, Decl(controlFlowOptionalChain.ts, 88, 36))
304 >o5.x?.y.z : Symbol(z, Decl(controlFlowOptionalChain.ts, 88, 30))
305 >o5.x?.y : Symbol(y, Decl(controlFlowOptionalChain.ts, 88, 25))
306 >o5.x : Symbol(x, Decl(controlFlowOptionalChain.ts, 88, 19))
307 >o5 : Symbol(o5, Decl(controlFlowOptionalChain.ts, 88, 13))
313 o5.x;
314 >o5.x : Symbol(x, Decl(controlFlowOptionalChain.ts, 88, 19))
[all …]
DescapedReservedCompilerNamedIdentifier.js28 var o5 = { variable
31 var b5 = o5["_proto__"];
60 var o5 = { variable
63 var b5 = o5["_proto__"];
90 declare var o5: {
DpropertyAccessChain.types53 declare const o5: { b?(): { c: { d?: { e: string } } } };
54 >o5 : { b?(): { c: { d?: { e: string; }; };}; }
60 o5.b?.().c.d?.e;
61 >o5.b?.().c.d?.e : string | undefined
62 >o5.b?.().c.d : { e: string; } | undefined
63 >o5.b?.().c : { d?: { e: string; } | undefined; } | undefined
64 >o5.b?.() : { c: { d?: { e: string; } | undefined; }; } | undefined
65 >o5.b : (() => { c: { d?: { e: string; } | undefined; }; }) | undefined
66 >o5 : { b?(): { c: { d?: { e: string; } | undefined; }; }; }
DspreadUnion.symbols27 var o5: { a: number } | { b: string } | { a: number, b: string };
28 >o5 : Symbol(o5, Decl(spreadUnion.ts, 8, 3), Decl(spreadUnion.ts, 9, 3))
34 var o5 = { ...union, ...union };
35 >o5 : Symbol(o5, Decl(spreadUnion.ts, 8, 3), Decl(spreadUnion.ts, 9, 3))
DpropertyAccessChain.symbols53 declare const o5: { b?(): { c: { d?: { e: string } } } };
54 >o5 : Symbol(o5, Decl(propertyAccessChain.ts, 12, 13))
60 o5.b?.().c.d?.e;
61 >o5.b?.().c.d?.e : Symbol(e, Decl(propertyAccessChain.ts, 12, 38))
62 >o5.b?.().c.d : Symbol(d, Decl(propertyAccessChain.ts, 12, 32))
63 >o5.b?.().c : Symbol(c, Decl(propertyAccessChain.ts, 12, 27))
64 >o5.b : Symbol(b, Decl(propertyAccessChain.ts, 12, 19))
65 >o5 : Symbol(o5, Decl(propertyAccessChain.ts, 12, 13))
DspreadUnion.js10 var o5: { a: number } | { b: string } | { a: number, b: string }; variable
11 var o5 = { ...union, ...union };
30 var o5; variable
31 var o5 = __assign(__assign({}, union), union);
DescapedReservedCompilerNamedIdentifier.symbols74 var o5 = {
75 >o5 : Symbol(o5, Decl(escapedReservedCompilerNamedIdentifier.ts, 26, 3))
81 var b5 = o5["_proto__"];
83 >o5 : Symbol(o5, Decl(escapedReservedCompilerNamedIdentifier.ts, 26, 3))
/third_party/mesa3d/src/mesa/sparc/
Dnorm.S33 LDPTR [%o2 + V4F_START], %o5 ! o5 = 'from' in->start
50 ld [%o5 + 0x00], %f0 ! ux = from[0]
51 ld [%o5 + 0x04], %f1 ! uy = from[1]
52 ld [%o5 + 0x08], %f2 ! uz = from[2]
53 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
115 ld [%o5 + 0x00], %f0 ! ux = from[0]
116 ld [%o5 + 0x04], %f1 ! uy = from[1]
117 ld [%o5 + 0x08], %f2 ! uz = from[2]
118 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
172 LDPTR [%o2 + V4F_START], %o5 ! o5 = 'from' in->start
[all …]
Dxform.S62 ld [%o2 + V4F_STRIDE], %o5
78 add %g1, %o5, %g1 ! IEU0
81 add %g1, %o5, %g1 ! IEU1
136 ld [%o2 + V4F_STRIDE], %o5
150 add %g1, %o5, %g1 ! IEU0
153 add %g1, %o5, %g1 ! IEU1
177 ld [%o2 + V4F_STRIDE], %o5
193 add %g1, %o5, %g1 ! IEU0
196 add %g1, %o5, %g1 ! IEU1
231 ld [%o2 + V4F_STRIDE], %o5
[all …]
/third_party/openssl/crypto/camellia/asm/
Dcmllt4-sparcv9.pl85 ldx [$inp + 8], %o5
90 sllx %o5, %g1, %g1
91 srlx %o5, %o3, %o5
93 or %o5, %o4, %o4
94 or %o3, %g1, %o5
100 xor %g5, %o5, %o5
104 movxtod %o5, %f2
179 ldx [$inp + 8], %o5
184 sllx %o5, %g1, %g1
185 srlx %o5, %g4, %o5
[all …]
/third_party/openssl/crypto/bn/asm/
Dsparct4-mont.pl363 and $pwr, 3, %o5
365 sll %o5, 3, %o5 ! offset within first cache line
366 add %o5, $ptbl, $ptbl ! of the pwrtbl
367 or %g0, 1, %o5
368 sll %o5, %o4, $ccr
381 ldx [$pwrtbl+9*32], %o5
384 movvs %icc, %o5, $B1
385 ldx [$pwrtbl+10*32],%o5
388 move %icc, %o5, $B1
389 ldx [$pwrtbl+11*32],%o5
[all …]
Dsparcv8.S57 clr %o5
64 addcc %o4,%o5,%o4
68 addx %g1,0,%o5
75 addcc %o4,%o5,%o4
79 addx %g1,0,%o5
86 addcc %o4,%o5,%o4
90 addx %g1,0,%o5
96 addcc %o4,%o5,%o4
100 addx %g1,0,%o5
110 mov %o5,%o0
[all …]
Dsparcv8plus.S191 clr %o5
197 add %g1,%o5,%o4
201 srlx %o4,32,%o5
206 add %g1,%o5,%o4
210 srlx %o4,32,%o5
215 add %g1,%o5,%o4
219 srlx %o4,32,%o5
223 add %g1,%o5,%o4
228 srlx %o4,32,%o5
236 mov %o5,%o0
[all …]
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowOptionalChain.ts92 declare const o5: { x?: { y: { z?: { w: boolean } } } }; constant
93 if (o5.x?.y.z?.w) {
94 o5.x;
95 o5.x.y;
96 o5.x.y.z;
97 o5.x.y.z.w; // true
98 o5.x.y.z?.w; // true
99 o5.x?.y.z.w; // true
100 o5.x?.y.z?.w; // true
103 o5.x;
[all …]
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/
DelementAccessChain.ts18 declare const o5: { b?(): { c: { d?: { e: string } } } }; constant
19 o5.b?.()["c"].d?.e;
20 o5.b?.()["c"].d?.["e"];
21 o5["b"]?.()["c"].d?.e;
22 o5["b"]?.()["c"].d?.["e"];
/third_party/boost/libs/asio/test/properties/cpp03/
Dprefer_static.cpp56 const object<1> o5 = {}; in main() local
57 object<1> o6 = boost::asio::prefer(o5, prop<1>()); in main()
58 object<1> o7 = boost::asio::prefer(o5, prop<1>(), prop<1>()); in main()
59 object<1> o8 = boost::asio::prefer(o5, prop<1>(), prop<1>(), prop<1>()); in main()
Drequire_static.cpp56 const object<1> o5 = {}; in main() local
57 object<1> o6 = boost::asio::require(o5, prop<1>()); in main()
58 object<1> o7 = boost::asio::require(o5, prop<1>(), prop<1>()); in main()
59 object<1> o8 = boost::asio::require(o5, prop<1>(), prop<1>(), prop<1>()); in main()

1234567