Searched refs:wibble (Results 1 – 25 of 28) sorted by relevance
12
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.warn/ |
| D | impint.C | 17 void wibble (int); 18 void wibble (int, int); 47 wibble (3.5); // WARNING - double to int in fn() 48 wibble (3.5f); // WARNING - float to int in fn() 49 wibble (1, 3.5); // WARNING - double to int in fn() 50 wibble (1, 3.5f); // WARNING - float to int in fn() 51 wibble (3.5, 1); // WARNING - double to int in fn() 52 wibble (3.5f, 1); // WARNING - float to int in fn()
|
| D | impint2.C | 17 void wibble (int const &); 18 void wibble (int const &, int const &); 39 wibble (3.5f); // WARNING - float to int in fn() 40 wibble (1, 3.5f); // WARNING - float to int in fn() 41 wibble (3.5f, 1); // WARNING - float to int in fn() 64 wibble (-1); in foo() 65 wibble (1, -1); in foo() 66 wibble (-1, 1); in foo()
|
| D | inline.C | 13 inline void wibble () in wibble() function 23 wibble (); // can be inlined in bar1()
|
| /openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/ |
| D | INST_PREFIX.t | 162 my $wibble = File::Spec->catdir(qw(wibble and such)); 170 INSTALLMAN1DIR=> $wibble, 173 is( $mm->{INSTALLMAN1DIR}, $wibble ); 215 my $wibble = File::Spec->catdir(qw(wibble and such)); 248 my $wibble = File::Spec->catdir(qw(wibble and such));
|
| D | config.t | 17 $Config{wibble} = 42; 19 is $Config{wibble}, 42;
|
| D | pm.t | 41 is_deeply( $mm->{PM}, { wibble => 'woof' } );
|
| D | prefixify.t | 43 $Config{wibble} = 'C:\opt\perl\wibble';
|
| D | writemakefile_args.t | 108 LIBS => { wibble => "wobble" },
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/ |
| D | spec6.C | 90 virtual void wibble() throw(E); // ERROR - overriding 107 virtual void wibble() throw(E *); // ERROR - looser throw - A::wibble
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
| D | line1.c | 10 wibble
|
| D | mi1x.h | 7 #define main wibble
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/ |
| D | mi1x.h | 7 #define main wibble
|
| /openbsd/src/gnu/usr.bin/perl/dist/Exporter/t/ |
| D | Exporter.t | 223 sub wibble {return "wobble"}; 229 my $val = eval { wibble() };
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/ |
| D | bad_plan.t | 21 eval { $tb->plan(wibble => 7); };
|
| /openbsd/src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
| D | keyword_multiline.t | 12 * #wibble
|
| D | pad_scalar.t | 16 our $foo = "wibble";
|
| D | hash.t | 51 my $wibble = "\0"; 53 $strtab->{$wibble}++;
|
| /openbsd/src/gnu/llvm/llvm/docs/CommandGuide/ |
| D | llvm-strings.rst | 34 wibble blob 37 wibble blob
|
| /openbsd/src/gnu/usr.bin/perl/ext/Hash-Util/t/ |
| D | Util.t | 143 eval { $hash{wibble} = 42 }; 148 eval { $hash{wibble} = 23; }; 161 eval { $hash{wibble} = 23 };
|
| /openbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | 9enabled | 1313 BEGIN { warnings::register_categories(qw(wibble wobble wabble wubble webble)); } 1317 foreach qw(wibble wobble wabble wubble webble); 1326 { no warnings; use warnings qw(wibble wabble webble); Quux::quux(); } 1328 { use warnings; no warnings qw(wibble wabble webble); Quux::quux(); } 1336 My wibble is flanged at - line 4. 1341 My wibble is flanged at - line 5. 1346 My wibble is flanged at - line 18. 1351 My wibble is flanged at - line 19. 1356 My wibble is flanged at - line 20. 1363 My wibble is flanged at - line 23.
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | English.t | 161 ::is $", 'wibble', '$" changes when $LIST_SEPARATOR is localized';
|
| /openbsd/src/gnu/usr.bin/perl/dist/Carp/t/ |
| D | arg_string.t | 58 foreach my $arg ("wibble." x 20, "foo bar baz") {
|
| D | arg_regexp.t | 69 foreach my $arg ("wibble:" x 20, "foo bar baz") {
|
| /openbsd/src/gnu/usr.bin/perl/ext/B/t/ |
| D | b.t | 24 our ($This, @That, %wibble, $moo, %moo); 49 my @syms = map { 'Testing::Symtable::'.$_ } qw(This That wibble moo car);
|
| /openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-Manifest/t/ |
| D | Manifest.t | 227 ok( !$files->{wibble}, 'MANIFEST in good state' ); 228 maniadd({ wibble => undef }); 231 is( $files->{wibble}, '', 'maniadd() with undef comment' );
|
12