Searched refs:register_function (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | simplexmlrpcserver.rst | 78 .. method:: SimpleXMLRPCServer.register_function(function[, name]) 90 registered using :meth:`register_function`. If *instance* contains a 169 server.register_function(pow) 174 server.register_function(adder_function, 'add') 204 server.register_function(pow) 205 server.register_function(lambda x,y: x+y, 'add') 240 .. method:: CGIXMLRPCRequestHandler.register_function(function[, name]) 252 registered using :meth:`register_function`. If instance contains a 286 handler.register_function(pow) 287 handler.register_function(lambda x,y: x+y, 'add')
|
D | xmlrpclib.rst | 242 server.register_function(is_even, "is_even") 291 server.register_function(today, "today") 356 server.register_function(python_logo, 'python_logo') 400 server.register_function(add, 'add') 506 server.register_function(add, 'add') 507 server.register_function(subtract, 'subtract') 508 server.register_function(multiply, 'multiply') 509 server.register_function(divide, 'divide')
|
/external/python/cpython2/Lib/test/ |
D | test_docxmlrpc.py | 50 serv.register_function(add) 51 serv.register_function(lambda x, y: x-y)
|
D | test_xmlrpc.py | 354 serv.register_function(pow) 355 serv.register_function(lambda x,y: x+y, 'add') 356 serv.register_function(lambda x: x, test_support.u(r't\xea\u0161t')) 357 serv.register_function(my_function) 417 serv.get_dispatcher(paths[0]).register_function(pow) 418 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
|
/external/python/cpython2/Lib/ |
D | SimpleXMLRPCServer.py | 211 def register_function(self, function, name = None): member in SimpleXMLRPCDispatcher 705 server.register_function(pow) 706 server.register_function(lambda x,y: x+y, 'add')
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 3593 def register_function(lib, item, ignore_errors): function 3622 return register_function(lib, item, ignore_errors)
|