/third_party/typescript/tests/baselines/reference/ |
D | checkJsxIntersectionElementPropsType.types | 22 const y = new C({foobar: "example"}); 23 >y : C<{ foobar: string; }> 24 >new C({foobar: "example"}) : C<{ foobar: string; }> 26 >{foobar: "example"} : { foobar: string; } 27 >foobar : string 30 const x = <C foobar="example" /> 32 ><C foobar="example" /> : error 34 >foobar : string
|
D | requireOfJsonFile_PathMapping.symbols | 2 import foobar from "foo/bar/foobar.json"; 3 >foobar : Symbol(foobar, Decl(a.ts, 0, 6)) 5 === /node_modules/foo/bar/foobar.json === 7 >"a" : Symbol("a", Decl(foobar.json, 0, 1))
|
D | noImplicitAnyStringIndexerOnObject.types | 18 >{ get: (key: string) => 'foobar'} : { get: (key: string) => string; } 20 get: (key: string) => 'foobar' 22 >(key: string) => 'foobar' : (key: string) => string 24 >'foobar' : "foobar" 40 >{ set: (key: string) => 'foobar'} : { set: (key: string) => string; } 42 set: (key: string) => 'foobar' 44 >(key: string) => 'foobar' : (key: string) => string 46 >'foobar' : "foobar" 58 >{ get: (key: string) => 'foobar', set: (key: string) => 'foobar' } : { get: (key: string) =… 60 get: (key: string) => 'foobar', [all …]
|
D | objectRestParameter.js | 17 function foobar({ bar={}, ...opts }: any = {}) { function 19 foobar(); 20 foobar({ baz: 'hello' }); 21 foobar({ bar: { greeting: 'hello' } }); 57 function foobar(_a = {}) { 60 foobar(); 61 foobar({ baz: 'hello' }); 62 foobar({ bar: { greeting: 'hello' } });
|
D | objectRestParameter.symbols | 67 function foobar({ bar={}, ...opts }: any = {}) { 68 >foobar : Symbol(foobar, Decl(objectRestParameter.ts, 14, 1)) 72 foobar(); 73 >foobar : Symbol(foobar, Decl(objectRestParameter.ts, 14, 1)) 75 foobar({ baz: 'hello' }); 76 >foobar : Symbol(foobar, Decl(objectRestParameter.ts, 14, 1)) 79 foobar({ bar: { greeting: 'hello' } }); 80 >foobar : Symbol(foobar, Decl(objectRestParameter.ts, 14, 1))
|
D | objectRestParameterES5.symbols | 67 function foobar({ bar={}, ...opts }: any = {}) { 68 >foobar : Symbol(foobar, Decl(objectRestParameterES5.ts, 14, 1)) 72 foobar(); 73 >foobar : Symbol(foobar, Decl(objectRestParameterES5.ts, 14, 1)) 75 foobar({ baz: 'hello' }); 76 >foobar : Symbol(foobar, Decl(objectRestParameterES5.ts, 14, 1)) 79 foobar({ bar: { greeting: 'hello' } }); 80 >foobar : Symbol(foobar, Decl(objectRestParameterES5.ts, 14, 1))
|
D | objectRestParameterES5.js | 17 function foobar({ bar={}, ...opts }: any = {}) { function 19 foobar(); 20 foobar({ baz: 'hello' }); 21 foobar({ bar: { greeting: 'hello' } }); 65 function foobar(_a) { 69 foobar(); 70 foobar({ baz: 'hello' }); 71 foobar({ bar: { greeting: 'hello' } });
|
D | objectRestParameter.types | 78 function foobar({ bar={}, ...opts }: any = {}) { 79 >foobar : ({ bar, ...opts }?: any) => void 85 foobar(); 86 >foobar() : void 87 >foobar : ({ bar, ...opts }?: any) => void 89 foobar({ baz: 'hello' }); 90 >foobar({ baz: 'hello' }) : void 91 >foobar : ({ bar, ...opts }?: any) => void 96 foobar({ bar: { greeting: 'hello' } }); 97 >foobar({ bar: { greeting: 'hello' } }) : void [all …]
|
D | objectRestParameterES5.types | 78 function foobar({ bar={}, ...opts }: any = {}) { 79 >foobar : ({ bar, ...opts }?: any) => void 85 foobar(); 86 >foobar() : void 87 >foobar : ({ bar, ...opts }?: any) => void 89 foobar({ baz: 'hello' }); 90 >foobar({ baz: 'hello' }) : void 91 >foobar : ({ bar, ...opts }?: any) => void 96 foobar({ bar: { greeting: 'hello' } }); 97 >foobar({ bar: { greeting: 'hello' } }) : void [all …]
|
D | spellingSuggestionModule.types | 2 declare module "foobar" { export const x: number; } 3 >"foobar" : typeof import("foobar") 6 foobar; 7 >foobar : any
|
D | requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.errors.txt | 1 /a.ts(1,20): error TS2732: Cannot find module 'foo/bar/foobar.json'. Consider using '--resolveJsonM… 17 import foobar from "foo/bar/foobar.json"; 19 !!! error TS2732: Cannot find module 'foo/bar/foobar.json'. Consider using '--resolveJsonModule' to… 21 ==== /node_modules/foo/bar/foobar.json (0 errors) ====
|
D | requireOfJsonFileWithoutResolveJsonModuleAndPathMapping.symbols | 2 import foobar from "foo/bar/foobar.json"; 3 >foobar : Symbol(foobar, Decl(a.ts, 0, 6))
|
D | pathMappingBasedModuleResolution_withExtension_MapedToNodeModules.symbols | 2 import foobar from "foo/bar/foobar.js"; 3 >foobar : Symbol(foobar, Decl(a.ts, 0, 6))
|
D | checkJsxIntersectionElementPropsType.symbols | 32 const y = new C({foobar: "example"}); 35 >foobar : Symbol(foobar, Decl(checkJsxIntersectionElementPropsType.tsx, 10, 17)) 37 const x = <C foobar="example" /> 40 >foobar : Symbol(foobar, Decl(checkJsxIntersectionElementPropsType.tsx, 11, 12))
|
D | requireOfJsonFile_PathMapping.types | 2 import foobar from "foo/bar/foobar.json"; 3 >foobar : { a: number; } 5 === /node_modules/foo/bar/foobar.json ===
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_base64.data | 65 mbedtls_base64_encode:"foobar":"Zm9vYmFy":9:0 68 mbedtls_base64_encode:"foobar":"Zm9vYmFy":8:MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL 89 mbedtls_base64_decode:"Zm9vYmFy":"foobar":0 104 base64_decode_hex_src:"5a6d3976596d4679":"foobar":0 107 base64_decode_hex_src:"5a6d3976596d46790a":"foobar":0 110 base64_decode_hex_src:"5a6d3976596d46790d0a":"foobar":0 116 base64_decode_hex_src:"5a6d3976596d467920":"foobar":0 119 base64_decode_hex_src:"5a6d3976596d4679200a":"foobar":0 122 base64_decode_hex_src:"5a6d3976596d4679200d0a":"foobar":0 128 base64_decode_hex_src:"5a6d3976596d46792020":"foobar":0 [all …]
|
/third_party/elfutils/tests/ |
D | run-addr2line-i-test.sh | 107 foobar 109 foobar 115 foobar inlined at /tmp/x.cpp:15 in _Z3barv 123 foobar inlined at /tmp/x.cpp:15 in _Z3foov 141 foobar inlined at /tmp/x.cpp:33 in _Z2fuv 150 foobar 153 foobar 162 foobar inlined at /tmp/x.cpp:15 in _Z3barv 172 foobar inlined at /tmp/x.cpp:15 in _Z3foov 194 foobar inlined at /tmp/x.cpp:33 in _Z2fuv [all …]
|
D | run-addr2line-i-demangle-test.sh | 30 foobar 32 foobar 38 foobar inlined at /tmp/x.cpp:15 in bar() 46 foobar inlined at /tmp/x.cpp:15 in foo() 64 foobar inlined at /tmp/x.cpp:33 in fu()
|
/third_party/python/Doc/distutils/ |
D | examples.rst | 63 setup(name='foobar', 88 setup(name='foobar', 107 setup(name='foobar', 115 modules belong in package :mod:`foobar`, one way to layout your source tree is 120 foobar/ 129 setup(name='foobar', 131 packages=['foobar'], 136 :file:`src` directory holds modules in the :mod:`foobar` package:: 148 setup(name='foobar', 150 package_dir={'foobar': 'src'}, [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/vert/ |
D | return-array.force-native-array.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
D | return-array.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
/third_party/skia/third_party/externals/spirv-cross/shaders/vert/ |
D | return-array.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl/vert/ |
D | return-array.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/vert/ |
D | return-array.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | objectRestParameter.ts | 17 function foobar({ bar={}, ...opts }: any = {}) { function 19 foobar(); 20 foobar({ baz: 'hello' }); 21 foobar({ bar: { greeting: 'hello' } });
|