Home
last modified time | relevance | path

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

12345678910>>...12

/third_party/gettext/gettext-tools/tests/
Dxgettext-perl-619 print foobar gettext "extracted5", "$shouldnotbeextracted";
20 print foobar gettext ("extracted6"), "$shouldnotbeextracted";
21 print foobar gettext ("extracted7")."$notextracted", "$shouldnotbeextracted";
22 print foobar (gettext ("extracted8")), "$shouldnotbeextracted";
23 print foobar (gettext "extracted9", "$shouldnotbeextracted");
24 print foobar (gettext ("extracted10"), "$shouldnotbeextracted");
25 print foobar (gettext ("extracted11")."$notextracted", "$shouldnotbeextracted");
29 print gettext foobar "$notextracted", "$shouldnotbeextracted";
30 print gettext foobar ("$notextracted"), "$shouldnotbeextracted";
31 print gettext foobar ("$notextracted")."$notextracted", "$shouldnotbeextracted";
[all …]
/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))
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' } });
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' } });
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))
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))
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.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))
DrequireOfJsonFile_PathMapping.types2 import foobar from "foo/bar/foobar.json";
3 >foobar : { a: number; }
5 === /node_modules/foo/bar/foobar.json ===
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))
/third_party/iptables/extensions/
Dlibebt_standard.t13 -i foobar;=;OK
14 -o foobar;=;FAIL
16 -i foobar;=;OK
17 -o foobar;=;OK
19 -i foobar;=;FAIL
20 -o foobar;=;OK
23 -i foobar;=;OK
24 -o foobar;=;FAIL
27 -i foobar;=;FAIL
28 -o foobar;=;OK
/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/libxml2/result/
Datt5.sax20 SAX.startElement(norm, attr=' foobar')
28 SAX.startElement(norm, attr='foobar ')
40 SAX.startElement(norm, attr=' foobar&#38;')
48 SAX.startElement(norm, attr='foobar &#38;')
60 SAX.startElement(norm, attr=' foobar<')
68 SAX.startElement(norm, attr='foobar <')
88 SAX.startElement(normId, attr=' foobar')
96 SAX.startElement(normId, attr='foobar ')
108 SAX.startElement(normId, attr=' foobar&#38;')
116 SAX.startElement(normId, attr='foobar &#38;')
[all …]
/third_party/iptables/iptables/tests/shell/testcases/iptables/
D0004-return-codes_070 cmd 2 "" -I INPUT -j foobar
71 cmd 2 "" -R INPUT 1 -j foobar
72 cmd 2 "" -D INPUT -j foobar
87 cmd 2 "$ENOMTH" -C INPUT -m foobar -j ACCEPT
91 cmd 2 "" -C INPUT -j foobar
94 cmd 3 "" -t foobar -C INPUT -j ACCEPT
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_runner/
Dmultiroot_asset_reader_test.dart22 … final PackageNode root = PackageNode('foobar', fs.currentDirectory.path, DependencyType.path);
23 packageGraph = FakePackageGraph(root, <String, PackageNode>{'foobar': root});
27 fs.file(fs.path.join('.dart_tool', 'build', 'generated', 'foobar', 'lib', 'bar.dart'))
32 ..writeAsStringSync('name: foobar');
44 expect(await reader.canRead(AssetId('foobar', 'lib/bar.dart')), true);
45 expect(await reader.readAsString(AssetId('foobar', 'lib/bar.dart')), 'bar');
46 expect(await reader.readAsBytes(AssetId('foobar', 'lib/bar.dart')), utf8.encode('bar'));
/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.vert13 vec4 foobar[2];
14 foobar[0] = vInput0;
15 foobar[1] = vInput1;
16 return foobar;
Dreturn-array.force-native-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;

12345678910>>...12