/third_party/gettext/gettext-tools/tests/ |
D | xgettext-perl-6 | 19 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/ |
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 | 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 | 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 | 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 | 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 | 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.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 | requireOfJsonFile_PathMapping.types | 2 import foobar from "foo/bar/foobar.json"; 3 >foobar : { a: number; } 5 === /node_modules/foo/bar/foobar.json ===
|
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))
|
/third_party/iptables/extensions/ |
D | libebt_standard.t | 13 -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/ |
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/libxml2/result/ |
D | att5.sax | 20 SAX.startElement(norm, attr=' foobar') 28 SAX.startElement(norm, attr='foobar ') 40 SAX.startElement(norm, attr=' foobar&') 48 SAX.startElement(norm, attr='foobar &') 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&') 116 SAX.startElement(normId, attr='foobar &') [all …]
|
/third_party/iptables/iptables/tests/shell/testcases/iptables/ |
D | 0004-return-codes_0 | 70 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/ |
D | multiroot_asset_reader_test.dart | 22 … 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/ |
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.vert | 13 vec4 foobar[2]; 14 foobar[0] = vInput0; 15 foobar[1] = vInput1; 16 return foobar;
|
D | return-array.force-native-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;
|