Lines Matching defs:methods
349 =item * C<methods> - print the methods callable on the first item returned
562 C<dumpit> if it's set to 'dump', or C<methods> if it's set to
563 'methods'. Setting it to something else causes the debugger to do the eval
773 elsif ( $onetimeDump eq 'methods' ) {
774 methods( $res[0] );
1493 # as calling IO::File methods causes an unresolvable loop
2416 methods($1);
2422 $onetimeDump = 'methods'; # method output gets used there
3236 =head4 C<m> - print methods
3238 Just uses C<DB::methods> to determine what methods are available.
8160 B<m> I<expr> Evals expression in list context, prints methods callable
8162 B<m> I<class> Prints methods callable via the given class.
8277 B<x>|B<m> I<expr> Evals expr in list context, dumps the result or lists methods.
8348 B<m> I<expr> Evals expression in list context, prints methods callable
8350 B<m> I<class> Prints methods callable via the given class.
8451 B<x>|B<m> I<expr> Evals expr in list context, dumps the result or lists methods.
8906 =head2 C<methods>
8909 methods in the class corresponding to the current reference and in
8916 sub methods {
8925 # Show the methods that this class has.
8928 # Show the methods that UNIVERSAL has.
8930 } ## end sub methods
8935 all the parent class methods. C<$class> is the name of the next class to
8948 # This is a package that is contributing the methods we're about to print.