| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| H A D | defarg7.C | 11 static int Foo (int = Baz ()); // WARNING - circular 12 static int Baz (int = Foo ()); // WARNING - circular 24 static int Foo (int = Baz ()); 25 static int Baz (int = Foo (1)); 35 B::Baz (); in main() 36 B::Baz (1); in main()
|
| H A D | defarg8.C | 12 static int Foo (int = Baz ()); // ERROR - candidate 13 static int Baz (int = Foo ()); // ERROR - candidate 20 AA::Baz (); // ERROR - no candidate in main() 21 AA::Baz (1); in main()
|
| H A D | ref4.C | 20 void Baz (Abstract &); 26 Baz (proxy); in Foo() 27 Baz (proxy.Convert ()); in Foo()
|
| H A D | nested4.C | 16 struct Baz; 30 struct Foo<T>::Baz
|
| H A D | optimize3.C | 25 const unsigned char *Baz (const char *string) in Baz() function 35 result = Baz (string); in main()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/ |
| H A D | no-index.t | 31 $meta->should_index_package('Foo::Bar::Baz'), 36 $meta->should_index_file('lib/Foo/Bar/Baz.pm'), 46 namespace => [ 'Foo::Bar::Baz' ], 56 $meta->should_index_package('Foo::Bar::Baz'), 61 ! $meta->should_index_package('Foo::Bar::Baz::Quux'), 71 directory => [ 'lib/Foo/Bar/Baz' ], 81 $meta->should_index_file('lib/Foo/Bar/Baz.pm'), 86 ! $meta->should_index_file('lib/Foo/Bar/Baz/Quux.pm'),
|
| H A D | merge.t | 31 Baz => { 32 file => 'lib/Baz.pm', 95 Baz => { 96 file => 'lib/Baz.pm', 126 Baz => { 127 file => 'lib/Baz.pm', 159 eval { $merger->merge(\%base, { provides => { Baz => { file => 'Baz.pm' } } }) }, 163 like $@, qr/^Duplication of element provides\.Baz\.file /, 'Exception looks right'; 165 my $provides_result = $merger->merge(\%base, { provides => { Baz => { file => 'lib/Baz.pm', version…
|
| H A D | prereqs.t | 132 ->add_minimum(Baz => '3.1416'); 140 test => { requires => { Baz => '3.1416' } }, 153 Baz => '3.1416', 159 Baz => '3.1416',
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/ext/ |
| H A D | dllimport7.C | 6 struct Baz struct 8 Baz(int a_ =0) : a(a_) {}; in a() argument 18 static const Baz null_baz; argument 22 const Baz Bar::null_baz; // { dg-error "definition of static data" }
|
| H A D | dllimport2.C | 6 void __attribute__((dllimport)) Baz(void); 13 Baz(); in Foo() 22 void Baz(void); // { dg-warning "redeclared" }
|
| H A D | dllimport6.C | 4 struct Baz struct 6 Baz(int a_ =0) : a(a_) {}; in a() argument 15 static const Baz null_baz; argument
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| H A D | spec35.C | 21 template <typename T> int Baz (T *const &); // ERROR - candidate 22 template <typename T> int Baz (T *); // ERROR - candidate 24 int Baz (int const *ptr, int *ptr2) in Baz() function 26 Baz (ptr2); // ERROR - ambiguous in Baz()
|
| H A D | deduct6.C | 9 template <typename T, unsigned I> int Baz (T (&obj)[I]) in Baz() function 20 Baz (ca); in main() 21 Baz (a); in main()
|
| H A D | instantiate7.C | 13 void Baz (); 17 Wibble (&Baz, ptr); in Foo()
|
| H A D | deduct3.C | 13 void Baz (int *p1, int const *p2) in Baz() function 18 void Baz (float *p1, float const *p2) in Baz() function
|
| /openbsd-src/gnu/usr.bin/perl/dist/SelfLoader/t/ |
| H A D | 01SelfLoader.t | 50 @ISA = 'Baz'; 74 package Baz; 76 sub a { 'a Baz' } 77 sub b { 'b Baz' } 78 sub c { 'c Baz' } 142 # get Baz::b 143 print "not " unless $bar->b() eq 'b Baz'; 146 # There is no Bar::c so we should get Baz::c 147 print "not " unless $bar->c() eq 'c Baz'; 162 print "not " unless $bar->c() eq 'c Baz';
|
| /openbsd-src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus/ |
| H A D | get-18.txt | 9 x-a: Baz 12 x-b: Baz 33 X-A: Baz 34 X-B: Baz
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/overload/ |
| H A D | template1.C | 3 void Baz (void (*)(int), int); 6 int Baz (int (*)(), float); 10 Baz (Foo, 1.0f); in Bar()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/ |
| H A D | conv3.C | 22 template <typename T2> int Baz () in Baz() function 36 r = c.Baz<int> (); in main() 39 r = c.Baz<float> (); in main()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/ |
| H A D | strings.t | 78 $req->add_string_requirement('Foo::Baz', '!= 1.3'); 79 ok(!$req->accepts_module('Foo::Baz' => '1.3'), 'exact version (!=)'); 80 ok($req->accepts_module('Foo::Baz' => '1.2'), 'lower version (!=)'); 81 ok($req->accepts_module('Foo::Baz' => '1.4'), 'higher version (!=)');
|
| H A D | bad_version_hook.t | 11 'Foo::Baz' => [ 'invalid_version', 42 ], 43 like( $hook_text, qr/Foo::Baz/, 'hook stored module name' ); 55 dies_ok { $req->add_minimum('Foo::Baz' => 'invalid_version') }
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
| H A D | 20001024-1.c | 8 struct Baz; 10 void quux(struct Baz *context) in quux()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.oliva/ |
| H A D | delete4.C | 20 struct Baz { struct 25 Baz(); in main() argument
|
| /openbsd-src/gnu/usr.bin/perl/t/mro/ |
| H A D | next_NEXT.t | 35 package Baz; 48 is(Baz->foo, 'Baz::foo => Bar::foo => Fuz::foo => Foo::foo', '... got the right value using NEXT in…
|
| H A D | next_edgecases.t | 65 package Baz; 72 my $baz = Baz->new();
|