/third_party/typescript/tests/baselines/reference/ |
H A D | callChain.js | 8 declare const o2: undefined | { b: (...args: any[]) => number }; 9 o2?.b(); 10 o2?.b(1); 11 o2?.b(...[1, 2]); 12 o2?.b(1, ...[2, 3], 4); 13 o2?.["b"](); 14 o2?.["b"](1); 15 o2?.["b"](...[1, 2]); 16 o2?.["b"](1, ...[2, 3], 4); 41 o2 [all...] |
H A D | elementAccessChain.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.["b"].c; 7 o2?.b["c"]; 28 o2?.["b"]!.c; 29 o2?.["b"]!["c"]; 30 o2?.["b"]!.c!; 31 o2?.["b"]!["c"]!;
37 o2 === null || o2 === void 0 ? void 0 : o2[" [all...] |
H A D | implicitIndexSignatures.js | 20 let o2: { a: number, b: number }; 22 const v2 = getStringIndexValue(o2); 27 let o2: { a: string, b: string }; 29 const v2 = getStringIndexValue(o2); 34 let o2: { a: number, b: string }; 36 const v2 = getStringIndexValue(o2); 41 let o2: { 0: string, 1: string, count: number }; 43 const v2 = getStringIndexValue(o2); 45 const v4 = getNumberIndexValue(o2); 74 var o2;
[all...] |
H A D | propertyAccessChain.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.b.c; 25 o2?.b!.c; 26 o2?.b!.c!;
32 o2 === null || o2 === void 0 ? void 0 : o2.b.c;
40 o2 === null || o2 === void 0 ? void 0 : o2 [all...] |
H A D | elementAccessChain.2.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.["b"].c; 7 o2?.b["c"]; 17 o2 === null || o2 === void 0 ? void 0 : o2["b"].c;
18 o2 === null || o2 === void 0 ? void 0 : o2.b["c"];
|
H A D | deleteChain.js | 6 declare const o2: undefined | { b: { c: string } }; 7 delete o2?.b.c; 8 delete (o2?.b.c); 32 o2 === null || o2 === void 0 ? true : delete o2.b.c;
33 (o2 === null || o2 === void 0 ? true : delete o2.b.c);
|
H A D | parentheses.js | 3 declare const o2: { b: (...args: any[]) => number }; 8 (o2?.b)(o1 ?? 1); 16 (o2 === null || o2 === void 0 ? void 0 : o2.b).call(o2, o1 !== null && o1 !== void 0 ? o1 : 1);
|
H A D | controlFlowOptionalChain.js | 42 declare const o2: { f(x: any): x is number; } | undefined; 43 if (o2?.f(x)) { 45 o2.f; // (x: any) => x is number 46 o2?.f; 47 o2?.f(x); 51 o2; 52 o2?.f; 53 o2.f; 56 o2; 57 o2 [all...] |
H A D | callChain.2.js | 5 declare const o2: undefined | { b: () => number }; 6 o2?.b(); 15 o2 === null || o2 === void 0 ? void 0 : o2.b();
|
H A D | propertyAccessChain.2.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.b.c; 15 o2 === null || o2 === void 0 ? void 0 : o2.b.c;
|
H A D | escapedReservedCompilerNamedIdentifier.js | 14 var o2 = { 17 var b2 = o2["___proto__"]; 46 var o2 = {
49 var b2 = o2["___proto__"];
77 declare var o2: {
|
H A D | infinitelyExpandingTypes3.js | 17 var o2: OwnerList2<number>; variable 19 o1 = o2; // should not error
23 var o2;
variable 24 o1 = o2; // should not error
|
H A D | indexSignatures1.js | 159 declare let o2: { [key: TaggedString2]: string }; 169 o2[s0]; // Error 170 o2[s1]; // Error 171 o2[s2]; 172 o2[s3]; // Error 173 o2[s4]; 187 o1 = o2; 191 o2 = o1; 192 o2 = o3; 193 o2 [all...] |
H A D | objectTypeWithStringIndexerHidingObjectIndexer.js | 25 var o2: { variable 29 var r4: string = o2['']; 48 var o2;
variable 49 var r4 = o2[''];
|
/third_party/libexif/libexif/olympus/ |
H A D | exif-mnote-data-olympus.c | 103 size_t i, o, s, doff, base = 0, o2 = 6 + 2; in exif_mnote_data_olympus_save() local 146 o2 += 4; in exif_mnote_data_olympus_save() 180 o2 += 2 + 8; in exif_mnote_data_olympus_save() 184 exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0); in exif_mnote_data_olympus_save() 191 exif_set_short (*buf + o2, n->order, (ExifShort) n->count); in exif_mnote_data_olympus_save() 192 o2 += 2; in exif_mnote_data_olympus_save() 196 o = o2 + i * 12; in exif_mnote_data_olympus_save() 243 size_t i, tcount, o, o2, datao = 6, base = 0; in exif_mnote_data_olympus_load() local 250 o2 = 6 + n->offset; /* Start of interesting data */ in exif_mnote_data_olympus_load() 251 if (CHECKOVERFLOW(o2,buf_siz in exif_mnote_data_olympus_load() [all...] |
/third_party/python/Include/ |
H A D | abstract.h | 419 /* Returns the result of adding o1 and o2, or NULL on failure. 421 This is the equivalent of the Python expression: o1 + o2. */ 422 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 424 /* Returns the result of subtracting o2 from o1, or NULL on failure. 426 This is the equivalent of the Python expression: o1 - o2. */ 427 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 429 /* Returns the result of multiplying o1 and o2, or NULL on failure. 431 This is the equivalent of the Python expression: o1 * o2. */ 432 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 435 /* This is the equivalent of the Python expression: o1 @ o2 [all...] |
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 98 ldx [$inp + 16], %o2 103 srlx %o2, $iright, %o2 104 or %o2, %o1, %o1 208 ldx [$inp + 16], %o2 213 srlx %o2, $iright, %o2 214 or %o2, %o1, %o1 317 ldx [$inp + 16], %o2 322 srlx %o2, [all...] |
/third_party/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 98 ldx [$inp + 16], %o2 103 srlx %o2, $iright, %o2 104 or %o2, %o1, %o1 208 ldx [$inp + 16], %o2 213 srlx %o2, $iright, %o2 214 or %o2, %o1, %o1 317 ldx [$inp + 16], %o2 322 srlx %o2, [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_afreqshift.c | 45 AVFrame *i2, *o2; member 68 type *o2 = (type *)s->o2->extended_data[ch]; \ 80 I = c[j] * (xn1 + o2[j]) - i2[j]; \ 83 o2[j] = o1[j]; \ 89 Q = c[j] * (xn2 + o2[j]) - i2[j]; \ 92 o2[j] = o1[j]; \ 96 Q = o2[s->nb_coeffs * 2 - 1]; \ 117 type *o2 = (type *)s->o2 [all...] |
/third_party/json/docs/examples/ |
H A D | update__range.cpp | 12 json o2 = R"( {"color": "blue", "speed": 100, "names": {"en": "plane"}} )"_json; in main() local 15 // add all keys from o2 to o1 (updating "color", replacing "names") in main() 16 o1.update(o2.begin(), o2.end()); in main() 18 // add all keys from o2 to o1 (updating "color", merging "names") in main() 19 o3.update(o2.begin(), o2.end(), true); in main()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineSpecConstantUtil.hpp | 68 std::vector<T> makeVector (const T& o1, const T& o2) in makeVector() argument 73 vec.push_back(o2); in makeVector() 78 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector() argument 83 vec.push_back(o2); in makeVector() 89 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector() argument 94 vec.push_back(o2); in makeVector()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineSpecConstantUtil.hpp | 68 std::vector<T> makeVector (const T& o1, const T& o2) in makeVector() argument 73 vec.push_back(o2); in makeVector() 78 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector() argument 83 vec.push_back(o2); in makeVector() 89 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector() argument 94 vec.push_back(o2); in makeVector()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | sparccpuid.S | 81 clr %o2 157 1: clr %o2 180 subcc %g0,1,%o2 181 .word 0x95408000 !rd %ccr,%o2, see comment above 182 cmp %o2,0x99 214 ld [%o0],%o2 215 1: add %o1,%o2,%o3 216 .word 0xd7e2100a !cas [%o0],%o2,%o3, compare [%o0] with %o2 and swap %o3 217 cmp %o2, [all...] |
/third_party/openssl/crypto/ |
H A D | sparccpuid.S | 81 clr %o2 157 1: clr %o2 180 subcc %g0,1,%o2 181 .word 0x95408000 !rd %ccr,%o2, see comment above 182 cmp %o2,0x99 214 ld [%o0],%o2 215 1: add %o1,%o2,%o3 216 .word 0xd7e2100a !cas [%o0],%o2,%o3, compare [%o0] with %o2 and swap %o3 217 cmp %o2, [all...] |
/third_party/python/Lib/test/ |
H A D | test_pyclbr.py | 206 o1, o2 = children1[key], children2[key] 208 t2 = type(o2), o2.name, o2.file, o2.module, o2.lineno, o2.end_lineno 211 self.assertEqual(o1.methods, o2.methods) 213 compare(o1, o1.children, o2, o2 [all...] |