Lines Matching refs:name
74 # notice appear in supporting documentation, and that the name of
128 name (None if not present).
606 write("<name>%s</name>\n" % escape(k))
771 dispatch["name"] = end_string # struct keys are always strings
836 def __init__(self, call_list, name):
838 self.__name = name
839 def __getattr__(self, name):
840 return _MultiCallMethod(self.__call_list, "%s.%s" % (self.__name, name))
884 def __getattr__(self, name):
885 return _MultiCallMethod(self.__call_list, name)
889 for name, args in self.__call_list:
890 marshalled_list.append({'methodName' : name, 'params' : args})
937 # this method name.
954 methodname: the method name for a methodCall packet
1015 # @return A tuple containing the unpacked data, and the method name
1020 """data -> unmarshalled data, method name
1023 name (None if not present).
1116 def __init__(self, send, name):
1118 self.__name = name
1119 def __getattr__(self, name):
1120 return _Method(self.__send, "%s.%s" % (self.__name, name))
1482 def __getattr__(self, name):
1484 return _Method(self.__request, name)
1486 # note: to call a remote object with a non-standard name, use
1487 # result getattr(server, "strange-python-name")(args)