/third_party/typescript/tests/baselines/reference/ |
D | nestedCallbackErrorNotFlattened.symbols | 2 type Cb<T> = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from being… 3 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 10 declare const x: Cb<Cb<Cb<Cb<number>>>>; // one more layer of `Cb` adn we'd get a `true` from the d… 12 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 13 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 14 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 15 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 17 declare let y: Cb<Cb<Cb<Cb<string>>>>; 19 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) 20 >Cb : Symbol(Cb, Decl(nestedCallbackErrorNotFlattened.ts, 0, 0)) [all …]
|
D | nestedCallbackErrorNotFlattened.types | 2 type Cb<T> = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from being… 3 >Cb : () => T 8 declare const x: Cb<Cb<Cb<Cb<number>>>>; // one more layer of `Cb` adn we'd get a `true` from the d… 11 declare let y: Cb<Cb<Cb<Cb<string>>>>;
|
D | nestedCallbackErrorNotFlattened.js | 2 type Cb<T> = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from being… 5 declare const x: Cb<Cb<Cb<Cb<number>>>>; // one more layer of `Cb` adn we'd get a `true` from the d… 6 declare let y: Cb<Cb<Cb<Cb<string>>>>;
|
D | nestedCallbackErrorNotFlattened.errors.txt | 9 …type Cb<T> = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from bein… 12 …declare const x: Cb<Cb<Cb<Cb<number>>>>; // one more layer of `Cb` adn we'd get a `true` from the … 13 declare let y: Cb<Cb<Cb<Cb<string>>>>;
|
D | jsxChildrenIndividualErrorElaborations.errors.txt | 9 …/index.tsx(63,3): error TS2322: Type '(x: number) => number' is not assignable to type 'Cb | Cb[]'. 10 Type '(x: number) => number' is not assignable to type 'Cb'. 12 …ld elements. Text in JSX has the type 'string', but the expected type of 'children' is 'Cb | Cb[]'. 91 type Cb = (x: number) => string; 93 children: Cb | Cb[]; 104 !!! error TS2322: Type '(x: number) => number' is not assignable to type 'Cb | Cb[]'. 105 !!! error TS2322: Type '(x: number) => number' is not assignable to type 'Cb'. 117 …ld elements. Text in JSX has the type 'string', but the expected type of 'children' is 'Cb | Cb[]'.
|
D | jsxChildrenIndividualErrorElaborations.symbols | 112 type Cb = (x: number) => string; 113 >Cb : Symbol(Cb, Decl(index.tsx, 49, 8)) 119 children: Cb | Cb[]; 121 >Cb : Symbol(Cb, Decl(index.tsx, 49, 8)) 122 >Cb : Symbol(Cb, Decl(index.tsx, 49, 8))
|
D | jsxChildrenIndividualErrorElaborations.types | 124 type Cb = (x: number) => string; 125 >Cb : Cb 129 children: Cb | Cb[]; 130 >children : Cb | Cb[]
|
D | typedefTagTypeResolution.types | 23 * @callback Cb 35 /** @type {Cb} */ 37 >cb : Cb
|
D | jsxChildrenIndividualErrorElaborations.js | 53 type Cb = (x: number) => string; 55 children: Cb | Cb[];
|
D | typedefTagTypeResolution.errors.txt | 23 * @callback Cb 35 /** @type {Cb} */
|
D | typedefTagTypeResolution.symbols | 22 * @callback Cb 34 /** @type {Cb} */
|
/third_party/typescript/tests/cases/compiler/ |
D | nestedCallbackErrorNotFlattened.ts | 2 type Cb<T> = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from being… alias 5 declare const x: Cb<Cb<Cb<Cb<number>>>>; // one more layer of `Cb` adn we'd get a `true` from the d… 6 declare let y: Cb<Cb<Cb<Cb<string>>>>;
|
D | jsxChildrenIndividualErrorElaborations.tsx | 55 type Cb = (x: number) => string; 57 children: Cb | Cb[];
|
/third_party/rust/crates/minimal-lexical/src/ |
D | rounding.rs | 17 pub fn round<F, Cb>(fp: &mut ExtendedFloat, cb: Cb) in round() 20 Cb: Fn(&mut ExtendedFloat, i32), in round() 77 pub fn round_nearest_tie_even<Cb>(fp: &mut ExtendedFloat, shift: i32, cb: Cb) in round_nearest_tie_even() 80 Cb: Fn(bool, bool, bool) -> bool, in round_nearest_tie_even()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_texture_compression_astc_decode_mode.txt | 174 color components (Cr, Cg, and Cb) computed as follows: 176 int lz = clz17( Cr | Cg | Cb | 1); 179 if (Cb == 65535 ) { Cb = 65536; lz = 0; } 182 Cb <<= lz; 185 Cb = (Cb >> 8) & 0x1FF; 188 uint32_t texel = (exponent << 27) | (Cb << 18) | (Cg << 9) | Cr; 204 components (Cr, Cg, and Cb) computed as follows: 208 if( Cb > 0x7c00 ) Cb = 0; else if( Cb == 0x7c00 ) Cb = 0x7bff; 211 int Be = (Cb >> 10) & 0x1F; 215 int Xm = ((Cr | Cg | Cb) & 0x200) >> 9; [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_texture_compression_astc_decode_mode.txt | 174 color components (Cr, Cg, and Cb) computed as follows: 176 int lz = clz17( Cr | Cg | Cb | 1); 179 if (Cb == 65535 ) { Cb = 65536; lz = 0; } 182 Cb <<= lz; 185 Cb = (Cb >> 8) & 0x1FF; 188 uint32_t texel = (exponent << 27) | (Cb << 18) | (Cg << 9) | Cr; 204 components (Cr, Cg, and Cb) computed as follows: 208 if( Cb > 0x7c00 ) Cb = 0; else if( Cb == 0x7c00 ) Cb = 0x7bff; 211 int Be = (Cb >> 10) & 0x1F; 215 int Xm = ((Cr | Cg | Cb) & 0x200) >> 9; [all …]
|
/third_party/libjpeg-turbo/simd/i386/ |
D | jdcolext-mmx.asm | 100 movq mm5, MMWORD [ebx] ; mm5=Cb(01234567) 109 pand mm4, mm5 ; mm4=Cb(0246)=CbE 110 psrlw mm5, BYTE_BIT ; mm5=Cb(1357)=CbO 121 ; G = Y - 0.34414 * Cb - 0.71414 * Cr 122 ; B = Y + 1.77200 * Cb 126 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr 127 ; B = Y - 0.22800 * Cb + Cb + Cb
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
D | jdcolext-mmx.asm | 100 movq mm5, MMWORD [ebx] ; mm5=Cb(01234567) 109 pand mm4, mm5 ; mm4=Cb(0246)=CbE 110 psrlw mm5, BYTE_BIT ; mm5=Cb(1357)=CbO 121 ; G = Y - 0.34414 * Cb - 0.71414 * Cr 122 ; B = Y + 1.77200 * Cb 126 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr 127 ; B = Y - 0.22800 * Cb + Cb + Cb
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
D | jdcolext-mmx.asm | 102 movq mm5, MMWORD [ebx] ; mm5=Cb(01234567) 111 pand mm4, mm5 ; mm4=Cb(0246)=CbE 112 psrlw mm5, BYTE_BIT ; mm5=Cb(1357)=CbO 123 ; G = Y - 0.34414 * Cb - 0.71414 * Cr 124 ; B = Y + 1.77200 * Cb 128 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr 129 ; B = Y - 0.22800 * Cb + Cb + Cb
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_ycrcba.txt | 51 YCRCB_SGIX is defined as a 3 component format representing the Cb, 53 format representing Cb, Y, Cr, and A values per pixel. 87 YCRCB_SGIX Component Cb chroma value, Color 91 YCRCBA_SGIX Component Cb chroma value, Color
|
D | SGIX_ycrcb.txt | 44 The chroma component alternates between Cb and Cr values on 50 the Cb, Y, and Cr values per pixel. 93 YCRCB_422_SGIX Component [Cb,Cr] chroma value, Color 96 YCRCB_444_SGIX Component Cb chroma value, Color
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_ycrcba.txt | 51 YCRCB_SGIX is defined as a 3 component format representing the Cb, 53 format representing Cb, Y, Cr, and A values per pixel. 87 YCRCB_SGIX Component Cb chroma value, Color 91 YCRCBA_SGIX Component Cb chroma value, Color
|
D | SGIX_ycrcb.txt | 44 The chroma component alternates between Cb and Cr values on 50 the Cb, Y, and Cr values per pixel. 93 YCRCB_422_SGIX Component [Cb,Cr] chroma value, Color 96 YCRCB_444_SGIX Component Cb chroma value, Color
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput22 | 70 /a\Cb/utf 75 /a\C\Cb/utf 94 /a\Cb/utf
|
/third_party/libjpeg-turbo/simd/x86_64/ |
D | jdcolext-sse2.asm | 88 movdqa xmm5, XMMWORD [rbx] ; xmm5=Cb(0123456789ABCDEF) 97 pand xmm4, xmm5 ; xmm4=Cb(02468ACE)=CbE 98 psrlw xmm5, BYTE_BIT ; xmm5=Cb(13579BDF)=CbO 109 ; G = Y - 0.34414 * Cb - 0.71414 * Cr 110 ; B = Y + 1.77200 * Cb 114 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr 115 ; B = Y - 0.22800 * Cb + Cb + Cb
|