Searched refs:methods (Results 51 - 75 of 507) sorted by relevance

1234567891011>>

/macosx-10.10/OpenSSH-189/openssh/
H A Dauth2.c64 /* methods */
263 packet_disconnect("no authentication methods enabled");
302 char *methods; local
375 methods = authmethods_get(authctxt);
376 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
377 partial, methods);
379 packet_put_cstring(methods);
383 xfree(methods);
389 * methods list. Returns 1 if allowed, or no methods list
462 char *methods, *omethods, *method; local
538 list_starts_with(const char *methods, const char *method) argument
555 remove_method(char **methods, const char *method) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/ri/
H A Ddriver.rb137 A '.' matches either class or instance methods, while #method
138 matches only instance and ::method matches only class methods.
179 "look up methods with autocomplete.") do |interactive|
516 # Adds documentation for all methods in +klass+ to +out+
529 # Adds a list of +methods+ to +out+ with a heading of +name+
531 def add_method_list out, methods, name
532 return if methods.empty?
538 out.concat methods.map { |method|
542 out << RDoc::Markup::IndentedParagraph.new(2, methods.join(', '))
651 add_method_list out, class_methods, 'Class methods'
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/Cocoa/
H A DWKNSArray.mm42 #pragma mark NSArray primitive methods
H A DWKNSData.mm42 #pragma mark NSData primitive methods
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_notimp.rb6 assert_include(Process.methods, :fork)
13 assert_include(File.methods, :lchmod)
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/interp/
H A Dinterp.tcl61 proc ::interp::snitLink {path methods} {
62 foreach m $methods {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dsets_c.tcl44 static CONST char* methods [] = {
51 enum methods {
63 } else if (Tcl_GetIndexFromObj (interp, objv [1], methods, "option",
68 /* Dispatch to methods. They check the #args in detail before performing
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dmethod-accessor.m39 "nil has no methods");
112 Method* methods;
157 methods = class_copyMethodList(objc_class, &method_count);
158 if (methods == NULL) {
168 method_getName(methods[i]),
176 free(methods);
189 cls, method_getName(methods[i]),
190 method_getTypeEncoding(methods[i]),
193 free(methods);
202 free(methods);
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dmethod-accessor.m43 "nil has no methods");
121 Method* methods;
160 methods = class_copyMethodList(objc_class, &method_count);
161 if (methods == NULL) {
172 method_getName(methods[i]),
180 free(methods);
193 cls, method_getName(methods[i]),
194 method_getTypeEncoding(methods[i]),
197 free(methods);
206 free(methods);
[all...]
/macosx-10.10/CPANInternal-159.1/Class-Trigger-0.14/inc/
H A DSpiffy.pm30 # be confused with methods that can be inherited.
424 my %methods = spiffy_mixin_methods($mixin_class, @roles);
429 for (keys %methods) {
430 *{"$pseudo_class\::$_"} = $methods{$_};
437 my %methods = spiffy_all_methods($mixin_class);
439 $methods{$_}
440 ? ($_, \ &{"$methods{$_}\::$_"})
444 : (keys %methods);
465 my %methods = spiffy_all_methods($mixin_class);
466 unshift @roles, keys(%methods);
[all...]
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dclient.rb257 # XMLRPC::FaultException exception is raised, which has two accessor-methods
288 # Note, that you have to use Thread to call these methods concurrently.
289 # The following example calls two methods concurrently:
318 # You can use this method to execute several methods on a XMLRPC server
326 def multicall(*methods)
327 ok, params = multicall2(*methods)
339 def multicall2(*methods)
340 gen_multicall(methods, false)
348 # Note, that you have to use Thread to call these methods concurrently.
349 # The following example calls two methods concurrentl
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkCanvUtil.c595 * "-smooth" methods. It should only be called when the list installed
599 * Pointer to the start of the list of default smooth methods.
602 * A linked list of smooth methods is created and attached to the
612 SmoothAssocData *methods, *ptr;
614 methods = (SmoothAssocData *) ckalloc(sizeof(SmoothAssocData));
615 methods->smooth.name = tkRawSmoothMethod.name;
616 methods->smooth.coordProc = tkRawSmoothMethod.coordProc;
617 methods->smooth.postscriptProc = tkRawSmoothMethod.postscriptProc;
619 methods->nextPtr = (SmoothAssocData *) ckalloc(sizeof(SmoothAssocData));
621 ptr = methods
600 SmoothAssocData *methods, *ptr; local
643 SmoothAssocData *methods, *typePtr2, *prevPtr, *ptr; local
703 SmoothAssocData *ptr, *methods = (SmoothAssocData *) clientData; local
742 SmoothAssocData *methods; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DObjcRuntimeExtras.h80 Method* methods = class_copyMethodList(cls, &count); local
82 callback(methods[i]);
83 free(methods);
89 struct objc_method_description* methods = protocol_copyMethodDescriptionList(protocol, isRequiredMethod, isInstanceMethod, &count); local
91 callback(methods[i].name, methods[i].types);
92 free(methods);
235 // Forward declare some Objective-C runtime internal methods that are not API.
/macosx-10.10/ksh-23/ksh/src/lib/libast/cdt/
H A Dcdtlib.h74 Dtmethod_t** methods; /* method list */ member in struct:_dtlib_s
98 for (i = 0; cdt_lib_##m.methods[i]; i++) \
99 if (!strcmp(type, cdt_lib_##m.methods[i]->name + n)) \
100 return cdt_lib_##m.methods[i]; \
115 for (i = 0; cdt_lib_/**/m.methods[i]; i++) \
116 if (!strcmp(type, cdt_lib_/**/m.methods[i]->name + n)) \
117 return cdt_lib_/**/m.methods[i]; \
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djdsample.c47 upsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon13096
56 * recompute them each time. They are unused for other upsampling methods.
108 (*upsample->methods[ci]) (cinfo, compptr,
313 /* Verify we can handle the sampling factors, select per-component methods,
331 upsample->methods[ci] = noop_upsample;
335 upsample->methods[ci] = fullsize_upsample;
340 upsample->methods[ci] = h2v1_upsample;
344 upsample->methods[ci] = h2v2_upsample;
348 upsample->methods[ci] = int_upsample;
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Transport/
H A DTCP.pm48 my(@params, @methods);
49 while (@_) { $class->can($_[0]) ? push(@methods, shift() => shift) : push(@params, shift) }
51 while (@methods) { my($method, $params) = splice(@methods,0,2);
175 my(@params, @methods);
176 while (@_) { $class->can($_[0]) ? push(@methods, shift() => shift) : push(@params, shift) }
177 $self = $class->SUPER::new(@methods);
240 The classes provided by this module implement direct TCP/IP communications methods for both clients and servers.
244 Both of the following classes catch methods that are intended for the socket objects and pass them along, allowing calls such as $client->accept( ) without including the socket class in the inheritance tree.
250 The TCP client class defines only two relevant methods beyon
[all...]
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DScalar.pm6 # Template Toolkit plugin module which allows you to call object methods
119 Template::Plugin::Scalar - call object methods in scalar context
125 # TT2 calls object methods in array context by default
136 The Template Toolkit calls user-defined subroutines and object methods
138 for you to call subroutines and methods in scalar context.
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dsdbtest001.tcl8 # TEST Tests multiple access methods in one subdb
16 # TEST Make several subdb's of different access methods all in one DB.
17 # TEST Rotate methods and repeat [#762].
25 puts "Subdbtest001: many different subdb access methods in one"
37 # Set up various methods to rotate through
59 foreach methods $method_list {
61 puts "\tSubdbtest001.a: create subdbs of different access methods:"
62 puts "\tSubdbtest001.a: $methods"
63 set nsubdbs [llength $methods]
71 build_all_subdb $testfile $methods
[all...]
H A Dsdbtest002.tcl8 # TEST Tests multiple access methods in one subdb access by multiple
19 # TEST Make several subdb's of different access methods all in one DB.
29 puts "Subdbtest002: many different subdb access methods in one"
41 # Set up various methods to rotate through
42 set methods \
45 puts "\tSubdbtest002.a: create subdbs of different methods: $methods"
47 set nsubdbs [llength $methods]
62 build_all_subdb $testfile $methods $psize $duplist $newent
80 set method [lindex $methods
[all...]
/macosx-10.10/CPANInternal-159.1/Graph-0.94/lib/Graph/
H A DDirected.pm28 For the available methods, see L<Graph>.
H A DUndirected.pm28 For the available methods, see L<Graph>.
/macosx-10.10/CPANInternal-159.1/Graph-0.96/lib/Graph/
H A DDirected.pm28 For the available methods, see L<Graph>.
H A DUndirected.pm28 For the available methods, see L<Graph>.
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Drdatasetiter.h45 *\li The iterator methods ensure appropriate database locking.
99 dns_rdatasetitermethods_t * methods; member in struct:dns_rdatasetiter
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dfsref.m71 static PyMethodDef methods[] = {
80 m = Py_InitModule4("fsref", methods,

Completed in 303 milliseconds

1234567891011>>