Searched refs:methodname (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/ruby-106/ruby/
H A Dprobes_helper.h15 const char * methodname; \
39 methodname = rb_id2name(_id); \
41 if (classname && methodname && filename) { \
44 methodname, \
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djmorecfg.h207 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
209 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
/macosx-10.10/ruby-106/ruby/lib/
H A Derb.rb869 def def_method(mod, methodname, fname='(ERB)')
873 eval(magic_comment + "def #{methodname}\n" + src + "\nend\n", binding, fname, -2)
887 def def_module(methodname='erb')
889 def_method(mod, methodname, @filename || '(ERB)')
906 def def_class(superklass=Object, methodname='result')
908 def_method(cls, methodname, @filename || '(ERB)')
996 def def_erb_method(methodname, erb_or_fname)
1000 erb.def_method(self, methodname, fname)
1003 erb.def_method(self, methodname, erb.filename || '(ERB)')
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dserver.rb294 def dispatch(methodname, *args)
297 next unless methodname == name
299 next unless methodname =~ /^#{name}(.+)$/
314 raise XMLRPC::FaultException.new(ERR_METHOD_MISSING, "Method #{methodname} missing or wrong number of parameters!")
316 @default_handler.call(methodname, *args)
334 def call_method(methodname, *args)
336 [true, dispatch(methodname, *args)]
340 [false, XMLRPC::FaultException.new(ERR_UNCAUGHT_EXCEPTION, "Uncaught exception #{e.message} in method #{methodname}")]
344 def handle(methodname, *args)
345 create().methodResponse(*call_method(methodname, *arg
[all...]
/macosx-10.10/swig-12/Lib/java/
H A Dboost_shared_ptr.i168 %typemap(javadestruct, methodname="delete", methodmodifiers="public synchronized") TYPE {
178 %typemap(javadestruct_derived, methodname="delete", methodmodifiers="public synchronized") TYPE {
H A Djava.swg1150 %typemap(javadestruct, methodname="delete", methodmodifiers="public synchronized") SWIGTYPE {
1160 %typemap(javadestruct_derived, methodname="delete", methodmodifiers="public synchronized") SWIGTYPE {
1171 %typemap(directordisconnect, methodname="swigDirectorDisconnect") SWIGTYPE %{
1172 protected void $methodname() {
1178 %typemap(directorowner_release, methodname="swigReleaseOwnership") SWIGTYPE %{
1179 public void $methodname() {
1185 %typemap(directorowner_take, methodname="swigTakeOwnership") SWIGTYPE %{
1186 public void $methodname() {
H A Dboost_intrusive_ptr.i282 %typemap(javadestruct, methodname="delete", methodmodifiers="public synchronized") TYPE {
290 %typemap(javadestruct_derived, methodname="delete", methodmodifiers="public synchronized") TYPE {
432 %typemap(javadestruct, methodname="delete", methodmodifiers="public synchronized") TYPE {
442 %typemap(javadestruct_derived, methodname="delete", methodmodifiers="public synchronized") TYPE {
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotconfig.tcl215 # methodname Name of the method
225 # $p methodname ...
238 proc ::Plotchart::plotmethod {charttype methodname plotproc} {
245 set methodProc($charttype,$methodname) [list $fullname $charttype]
/macosx-10.10/swig-12/Source/Modules/
H A Dphp.cxx1024 const char *methodname = 0; local
1036 methodname = "__construct";
1040 methodname = GetChar(n, "constructorHandler:sym:name");
1043 methodname = Char(Getattr(n, "memberfunctionHandler:sym:name"));
1045 methodname = Char(Getattr(n, "staticmemberfunctionHandler:sym:name"));
1048 methodname = Char(Getattr(n, "staticmembervariableHandler:sym:name"));
1050 methodname = Char(iname);
1593 Printf(output, "\t%sfunction %s(%s) {\n", acc, methodname, args);
1599 Printf(output, "\t%sfunction %s(%s) {\n", acc, methodname, args);
1610 Printf(output, "\tstatic function %s() {\n", methodname);
[all...]
H A Dmodula3.cxx2263 // Note that the method name is specified in a typemap attribute called methodname
2270 destruct_methodname = Getattr(attributes, "tmap:m3destruct_derived:methodname");
2273 destruct_methodname = Getattr(attributes, "tmap:m3destruct:methodname");
2276 Swig_error(input_file, line_number, "No methodname attribute defined in m3destruct%s typemap for %s\n", (derived ? "_derived" : ""), proxy_class_name);
2592 String *methodname = Getattr(n, "sym:name"); local
2594 if (methodname==NIL) {
2595 methodname = Getattr(n,"name");
2608 methodname, arguments,
2616 Printf(overrides, "%s := %s;\n", methodname, fname);
H A Djava.cxx1634 // Note that the method name is specified in a typemap attribute called methodname
1642 destruct_methodname = Getattr(attributes, "tmap:javadestruct_derived:methodname");
1646 destruct_methodname = Getattr(attributes, "tmap:javadestruct:methodname");
1652 "No methodname attribute defined in javadestruct%s typemap for %s\n", (derived ? "_derived" : ""), proxy_class_name);
1684 emitCodeTypemap(n, false, typemap_lookup_type, "directordisconnect", "methodname", destruct_jnicall);
1685 emitCodeTypemap(n, false, typemap_lookup_type, "directorowner_release", "methodname", release_jnicall);
1686 emitCodeTypemap(n, false, typemap_lookup_type, "directorowner_take", "methodname", take_jnicall);
3200 * Output a code typemap that uses $methodname and $jnicall, as used
3205 void emitCodeTypemap(Node *n, bool derived, SwigType *lookup_type, const String *typemap, const String *methodname, const String *jnicall) { argument
3217 method_attr_name = NewStringf("tmap:%s:%s", lookup_tmname, methodname);
[all...]
H A Dlang.cxx2459 String *methodname = Getattr(method, "sym:name"); local
2460 String *wrapname = NewStringf("%s_%s", symname, methodname);
/macosx-10.10/swig-12/Lib/csharp/
H A Dcsharp.swg899 %typemap(csdestruct, methodname="Dispose", methodmodifiers="public") SWIGTYPE {
912 %typemap(csdestruct_derived, methodname="Dispose", methodmodifiers="public") SWIGTYPE {
926 %typemap(directordisconnect, methodname="swigDirectorDisconnect") SWIGTYPE %{
927 protected void $methodname() {
H A Dboost_shared_ptr.i200 %typemap(csdestruct, methodname="Dispose", methodmodifiers="public") TYPE {
213 %typemap(csdestruct_derived, methodname="Dispose", methodmodifiers="public") TYPE {
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DLogger.pm399 my $methodname = lc($level);
410 $logger->$methodname(@_); # send the message
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/interop/
H A Dsilab.tcl336 proc perform {toolkit procname {methodname {}} {prefix dump}} {
342 if {$methodname != {}} {set name $methodname}
/macosx-10.10/swig-12/Lib/modula3/
H A Dmodula3.swg711 %typemap(m3destruct, methodname="Dispose") SWIGTYPE {
720 %typemap(m3destruct_derived, methodname="Dispose") SWIGTYPE {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/snit/
H A Dmain1.tcl1815 # methodname The desired method name for the component's command, or ""
1817 proc ::snit::Comp.statement.expose {component {"as" ""} {methodname ""}} {
1826 if {[string equal $methodname ""]} {
1827 set methodname $component
1830 Comp.statement.method $methodname args [Expand {
H A Dmain1_83.tcl1826 # methodname The desired method name for the component's command, or ""
1828 proc ::snit::Comp.statement.expose {component {"as" ""} {methodname ""}} {
1837 if {[string equal $methodname ""]} {
1838 set methodname $component
1841 Comp.statement.method $methodname args [Expand {
H A Dmain2.tcl1643 # methodname The desired method name for the component's command, or ""
1645 proc ::snit::Comp.statement.expose {component {"as" ""} {methodname ""}} {
1654 if {[string equal $methodname ""]} {
1655 set methodname $component
1658 Comp.statement.method $methodname args [Expand {
/macosx-10.10/vim-55/runtime/autoload/
H A Dphpcomplete.vim1207 \ 'classkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
1209 \ 'classkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
1210 \ 'classkit_method_remove(': 'string classname, string methodname | bool',
1211 \ 'classkit_method_rename(': 'string classname, string methodname, string newname | bool',
4006 \ 'runkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
4008 \ 'runkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
4009 \ 'runkit_method_remove(': 'string classname, string methodname | bool',
4010 \ 'runkit_method_rename(': 'string classname, string methodname, string newname | bool',

Completed in 392 milliseconds