Searched refs:method (Results 1 - 25 of 2090) sorted by relevance

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Dfop008.tcl10 proc fop008 { method args } {
11 eval {fop006 $method 1} $args
H A Dtest009.tcl15 proc test009 { method args} {
16 eval {test008 $method "009" 0} $args
H A Dfop007.tcl10 proc fop007 { method args } {
13 if { [is_queueext $method] == 1 } {
14 puts "Skipping fop007 for method $method."
17 eval {fop001 $method 1} $args
H A Drep056.tcl13 proc rep056 { method args } {
21 eval { rep001 $method 1000 "056" } $args
H A Drep057.tcl14 proc rep057 { method args } {
22 eval { rep029 $method 1000 "057" } $args
H A Dtest005.tcl16 proc test005 { method {nentries 10000} args } {
17 eval {test004 $method $nentries "005" 0} $args
H A Dtest027.tcl14 proc test027 { method {nentries 100} args} {
15 eval {test026 $method $nentries 100 "027"} $args
H A Dtest041.tcl10 proc test041 { method {nentries 10000} args} {
12 eval {test039 $method $nentries 20 "041" -pagesize 512} $args
15 eval {test039 $method [expr $nentries / 10] 100 "041" -pagesize 512} \
H A Dtest090.tcl9 proc test090 { method {nentries 10000} {tnum "090"} args} {
10 if { [is_queueext $method ] == 0 } {
11 puts "Skipping test$tnum for $method."
14 eval {test001 $method $nentries 4294967000 0 $tnum} $args
H A Dtest100.tcl10 proc test100 { method {nentries 10000} {tnum "100"} args} {
11 if { [is_queueext $method ] == 0 } {
12 puts "Skipping test$tnum for $method."
15 eval {test025 $method $nentries 4294967000 $tnum} $args
H A Dtest069.tcl11 proc test069 { method {ndups 50} {tnum "069"} args } {
12 eval test067 $method $ndups $tnum $args
H A Dtest081.tcl10 proc test081 { method {ndups 13} {tnum "081"} args} {
13 eval {test017 $method 1 $ndups $tnum} $args
H A Dtest079.tcl13 proc test079 { method {nentries 10000} {pagesize 512} {tnum "079"} \
15 if { [ is_queueext $method ] == 1 } {
16 set method "queue";
26 eval {test006 $method $nentries 1 $tnum $ndups -pagesize \
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/
H A DTestMediaQueryListListener.idl29 void method(MediaQueryListListener listener);
/macosx-10.9.5/ruby-104/ruby/lib/rake/ext/
H A Dcore.rb5 # Check for an existing method in the current class before extending. IF
6 # the method already exists, then a warning is printed and the extension is
20 def rake_extension(method)
21 if method_defined?(method)
22 $stderr.puts "WARNING: Possible conflict with Rake extension: #{self}##{method} already exists"
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A DBaz.tcl22 # Generic method for doing something in "Baz" interp
24 method do {cmds} {
/macosx-10.9.5/CPANInternal-140/Test-Exception/t/
H A Drt.t13 my $method = (caller(1))[3];
14 $method =~ s/.*:://;
15 confess( "abstract method '$method' not implemented for $class" );
20 qr/abstract method 'an_abstract_method'/, 'RT 11846: throws_ok breaks tests that depend on caller stack: working';
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/Builder/
H A Dreset_outputs.t24 for my $method (qw(output failure_output todo_output)) {
25 $original_outputs{$method} = $tb->$method();
26 $tb->$method($fh);
27 is $tb->$method(), $fh;
32 for my $method (qw(output failure_output todo_output)) {
33 is $tb->$method(), $original_outputs{$method}, "reset_outputs() resets $method";
/macosx-10.9.5/CPANInternal-140/Class-C3-Componentised/t/lib/MyModule/
H A DOwnComponent.pm9 return join(" ", "OwnComponent", $self->next::method);
/macosx-10.9.5/CPANInternal-140/Class-C3-Componentised/t/lib/
H A DMyModuleNoBase.pm7 my $msg = $_[0]->maybe::next::method() || '';
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/gen_bridge_doc/lib/lib/
H A Dextras.rb2 # This method checks if a override method (var method) exists.
5 def override_result(alt_result, method, args = [])
6 if respond_to? method
8 override_result = self.send(method)
10 override_result = self.send(method, *args)
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/library/
H A DArchetype.itk17 # Invokes the given <command> as a method on the component
67 method cget {option} @Archetype-cget
68 method configure {{option ""} args} \
70 method config {{option ""} args} {
74 method component {{name ""} args} \
77 protected method itk_component {option args} \
80 protected method itk_option {option args} \
83 protected method itk_initialize {args} \
98 private method _initOptionInfo {} @Archetype-init
99 private method _deleteOptionInf
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DTestSupport.py163 def failUnlessResultIsNullTerminated(self, method, message = None):
164 info = method.__metadata__()
166 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
168 def failUnlessIsNullTerminated(self, method, message = None):
169 info = method.__metadata__()
171 self.fail(message or "%s is not a variadic function with a null-terminated list of arguments"%(method,))
173 def failUnlessArgIsNullTerminated(self, method, argno, message = None):
174 if isinstance(method, objc.selector):
178 info = method.__metadata__()
180 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/DBI/Relationship/
H A DMightHave.pm9 my ($proto, $class, $method, $f_class, @methods) = @_;
11 return ($class, $method, $f_class, { import => \@methods });
17 my $method = $self->accessor;
21 if (my $for_obj = shift->$method()) { $for_obj->update }
25 if (my $for_obj = shift->$method()) { $for_obj->delete }
32 my ($class, $method) = ($self->class, $self->accessor);
34 $method => $self->_object_accessor,
40 my ($class, $method) = ($self->class, $self->accessor);
43 my $meta = $class->meta_info(might_have => $method);
46 $self->{"_${method}_objec
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/DBI/Relationship/
H A DMightHave.pm9 my ($proto, $class, $method, $f_class, @methods) = @_;
11 return ($class, $method, $f_class, { import => \@methods });
17 my $method = $self->accessor;
21 if (my $for_obj = shift->$method()) { $for_obj->update }
25 if (my $for_obj = shift->$method()) { $for_obj->delete }
32 my ($class, $method) = ($self->class, $self->accessor);
34 $method => $self->_object_accessor,
41 my ($class, $method) = ($rel->class, $rel->accessor);
44 my $meta = $class->meta_info($rel->name => $method);
48 if defined($self->{"_${method}_objec
[all...]

Completed in 605 milliseconds

1234567891011>>