Home
last modified time | relevance | path

Searched refs:foobar (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/third_party/typescript/tests/baselines/reference/
DcheckJsxIntersectionElementPropsType.types22 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
DrequireOfJsonFile_PathMapping.symbols2 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))
DnoImplicitAnyStringIndexerOnObject.types18 >{ 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 …]
DobjectRestParameter.js17 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' } });
DobjectRestParameter.symbols67 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))
DobjectRestParameterES5.symbols67 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))
DobjectRestParameterES5.js17 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' } });
DobjectRestParameter.types78 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 …]
DobjectRestParameterES5.types78 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 …]
DspellingSuggestionModule.types2 declare module "foobar" { export const x: number; }
3 >"foobar" : typeof import("foobar")
6 foobar;
7 >foobar : any
DrequireOfJsonFileWithoutResolveJsonModuleAndPathMapping.errors.txt1 /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) ====
DrequireOfJsonFileWithoutResolveJsonModuleAndPathMapping.symbols2 import foobar from "foo/bar/foobar.json";
3 >foobar : Symbol(foobar, Decl(a.ts, 0, 6))
DpathMappingBasedModuleResolution_withExtension_MapedToNodeModules.symbols2 import foobar from "foo/bar/foobar.js";
3 >foobar : Symbol(foobar, Decl(a.ts, 0, 6))
DcheckJsxIntersectionElementPropsType.symbols32 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))
DrequireOfJsonFile_PathMapping.types2 import foobar from "foo/bar/foobar.json";
3 >foobar : { a: number; }
5 === /node_modules/foo/bar/foobar.json ===
/third_party/mbedtls/tests/suites/
Dtest_suite_base64.data65 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/
Drun-addr2line-i-test.sh107 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 …]
Drun-addr2line-i-demangle-test.sh30 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/
Dexamples.rst63 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/
Dreturn-array.force-native-array.vert13 vec4 foobar[2];
14 foobar[0] = vInput0;
15 foobar[1] = vInput1;
16 return foobar;
Dreturn-array.vert13 vec4 foobar[2];
14 foobar[0] = vInput0;
15 foobar[1] = vInput1;
16 return foobar;
/third_party/skia/third_party/externals/spirv-cross/shaders/vert/
Dreturn-array.vert13 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/
Dreturn-array.vert13 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/
Dreturn-array.vert13 vec4 foobar[2];
14 foobar[0] = vInput0;
15 foobar[1] = vInput1;
16 return foobar;
/third_party/typescript/tests/cases/conformance/types/rest/
DobjectRestParameter.ts17 function foobar({ bar={}, ...opts }: any = {}) { function
19 foobar();
20 foobar({ baz: 'hello' });
21 foobar({ bar: { greeting: 'hello' } });

12345678910>>...12