/third_party/typescript/tests/baselines/reference/ |
D | typeMatch2.js | 17 var gg = [ g, g, g ]; 18 aa = gg; 19 gg = aa; // error 21 var xb = { f1: 5, f2: gg }; 86 var gg = [g, g, g]; 87 aa = gg; 88 gg = aa; // error 90 var xb = { f1: 5, f2: gg };
|
D | voidParamAssignmentCompatibility.symbols | 6 let gg: () => void = g; 7 >gg : Symbol(gg, Decl(voidParamAssignmentCompatibility.ts, 1, 3)) 24 gg = o.method; 25 >gg : Symbol(gg, Decl(voidParamAssignmentCompatibility.ts, 1, 3))
|
D | typeMatch2.symbols | 55 var gg = [ g, g, g ]; 56 >gg : Symbol(gg, Decl(typeMatch2.ts, 15, 7)) 61 aa = gg; 63 >gg : Symbol(gg, Decl(typeMatch2.ts, 15, 7)) 65 gg = aa; // error 66 >gg : Symbol(gg, Decl(typeMatch2.ts, 15, 7)) 75 var xb = { f1: 5, f2: gg }; 79 >gg : Symbol(gg, Decl(typeMatch2.ts, 15, 7))
|
D | typeMatch2.types | 75 var gg = [ g, g, g ]; 76 >gg : Giraffe[] 82 aa = gg; 83 >aa = gg : Giraffe[] 85 >gg : Giraffe[] 87 gg = aa; // error 88 >gg = aa : Animal[] 89 >gg : Giraffe[] 100 var xb = { f1: 5, f2: gg }; 102 >{ f1: 5, f2: gg } : { f1: number; f2: Giraffe[]; } [all …]
|
D | voidParamAssignmentCompatibility.types | 6 let gg: () => void = g; 7 >gg : () => void 19 gg = o.method; 20 >gg = o.method : (value: void) => void 21 >gg : () => void
|
D | voidParamAssignmentCompatibility.js | 3 let gg: () => void = g; 10 gg = o.method; 15 var gg = g; variable 16 gg = o.method;
|
D | nullishCoalescingOperator10.symbols | 5 let gg = f() ?? 'foo' 6 >gg : Symbol(gg, Decl(nullishCoalescingOperator10.ts, 2, 3))
|
D | nullishCoalescingOperator9.symbols | 14 let gg = f ?? (abc => { void abc.toLowerCase() }) 15 >gg : Symbol(gg, Decl(nullishCoalescingOperator9.ts, 3, 3))
|
D | nullishCoalescingOperator10.js | 4 let gg = f() ?? 'foo' 11 var gg = (_a = f()) !== null && _a !== void 0 ? _a : 'foo'; variable
|
D | nullishCoalescingOperator9.js | 5 let gg = f ?? (abc => { void abc.toLowerCase() }) variable 11 var gg = f !== null && f !== void 0 ? f : (function (abc) { void abc.toLowerCase(); });
|
D | propertyAccess.js | 61 var gg = obj['1']; variable 62 var gg: any; variable 222 var gg = obj['1']; 223 var gg; variable
|
D | nullishCoalescingOperator10.types | 5 let gg = f() ?? 'foo' 6 >gg : string
|
D | nullishCoalescingOperator9.types | 20 let gg = f ?? (abc => { void abc.toLowerCase() }) 21 >gg : (x: string) => void
|
D | typeMatch2.errors.txt | 44 var gg = [ g, g, g ]; 45 aa = gg; 46 gg = aa; // error 52 var xb = { f1: 5, f2: gg };
|
/third_party/typescript/tests/cases/compiler/ |
D | typeMatch2.ts | 16 var gg = [ g, g, g ]; 17 aa = gg; 18 gg = aa; // error 20 var xb = { f1: 5, f2: gg };
|
/third_party/skia/src/opts/ |
D | SkSwizzler_opts.h | 462 __m512i gg = _mm512_or_si512(_mm512_and_si512(ga, _mm512_set1_epi16(0x00FF)), in grayA_to_RGBA() local 465 __m512i ggga_lo = _mm512_unpacklo_epi16(gg, ga); in grayA_to_RGBA() 466 __m512i ggga_hi = _mm512_unpackhi_epi16(gg, ga); in grayA_to_RGBA() 514 __m512i gg = _mm512_or_si512(g0, _mm512_slli_epi16(g0, 8)); in grayA_to_rgbA() local 517 __m512i ggga_lo = _mm512_unpacklo_epi16(gg, ga); in grayA_to_rgbA() 518 __m512i ggga_hi = _mm512_unpackhi_epi16(gg, ga); in grayA_to_rgbA() 732 __m256i gg = _mm256_or_si256(_mm256_and_si256(ga, _mm256_set1_epi16(0x00FF)), in grayA_to_RGBA() local 735 __m256i ggga_lo = _mm256_unpacklo_epi16(gg, ga); in grayA_to_RGBA() 736 __m256i ggga_hi = _mm256_unpackhi_epi16(gg, ga); in grayA_to_RGBA() 771 __m256i gg = _mm256_or_si256(g0, _mm256_slli_epi16(g0, 8)); in grayA_to_rgbA() local [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/functions/ |
D | voidParamAssignmentCompatibility.ts | 3 let gg: () => void = g; 10 gg = o.method;
|
/third_party/typescript/tests/cases/conformance/expressions/propertyAccess/ |
D | propertyAccess.ts | 60 var gg = obj['1']; variable 61 var gg: any; variable
|
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
D | nullishCoalescingOperator10.ts | 5 let gg = f() ?? 'foo'
|
D | nullishCoalescingOperator9.ts | 6 let gg = f ?? (abc => { void abc.toLowerCase() }) variable
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
D | call-indirect.c | 1 int gg(int (*fun)(void)) { return fun(); } in gg() function
|
/third_party/markupsafe/ |
D | PKG-INFO | 17 Project-URL: Chat, https://discord.gg/pallets 86 - Chat: https://discord.gg/pallets
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_reference.cpp | 1747 real32 gg; in RefBaselineRGBTone() local 1750 #define RGBTone(r, g, b, rr, gg, bb)\ in RefBaselineRGBTone() argument 1758 gg = bb + ((rr - bb) * (g - b) / (r - b));\ in RefBaselineRGBTone() 1770 RGBTone (r, g, b, rr, gg, bb); in RefBaselineRGBTone() 1779 RGBTone (b, r, g, bb, rr, gg); in RefBaselineRGBTone() 1788 RGBTone (r, b, g, rr, bb, gg); in RefBaselineRGBTone() 1800 gg = table.Interpolate (g); in RefBaselineRGBTone() 1801 bb = gg; in RefBaselineRGBTone() 1815 RGBTone (g, r, b, gg, rr, bb); in RefBaselineRGBTone() 1824 RGBTone (b, g, r, bb, gg, rr); in RefBaselineRGBTone() [all …]
|
/third_party/openssl/test/certs/ |
D | ca-cert-768.pem | 14 +5+1gg+oPbsTFDa9RspXsCN3zCD+o9c6
|
D | ext-check.csr | 17 gg==
|