Searched refs:_methods (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Twisted/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py91 '_methods',
117 self._methods = []
240 aMessage = "Displaying information about %d methods." % len(self._methods)
264 self._methods = []
309 def receivedMethods(self, _methods, _server, _methodPrefix):
311 self._methods = _methods
314 self._methods.sort()
317 "Retrieving information about %d methods." % (len(self._methods),)
323 for index, aMethod in enumerate(self._methods)
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/Twisted/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py91 '_methods',
117 self._methods = []
240 aMessage = "Displaying information about %d methods." % len(self._methods)
264 self._methods = []
309 def receivedMethods(self, _methods, _server, _methodPrefix):
311 self._methods = _methods
314 self._methods.sort()
317 "Retrieving information about %d methods." % (len(self._methods),)
323 for index, aMethod in enumerate(self._methods)
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/Twisted/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py91 '_methods',
117 self._methods = []
240 aMessage = "Displaying information about %d methods." % len(self._methods)
264 self._methods = []
309 def receivedMethods(self, _methods, _server, _methodPrefix):
311 self._methods = _methods
314 self._methods.sort()
317 "Retrieving information about %d methods." % (len(self._methods),)
323 for index, aMethod in enumerate(self._methods)
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py120 '_methods',
150 self._methods = []
286 aMessage = "Displaying information about %d methods." % len(self._methods)
320 self._methods = []
340 self._methods = self._server.listMethods()
344 self._methods = self._server.system.listMethods()
365 self._methods.sort(lambda x, y: cmp(x, y))
367 self.setStatusTextFieldMessage_("Retrieving information about %d methods." % len(self._methods))
370 for aMethod in self._methods:
377 self.setStatusTextFieldMessage_("Retrieving signature for method %s (%d of %d)." % (aMethod , index, len(self._methods)))
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py120 '_methods',
150 self._methods = []
286 aMessage = "Displaying information about %d methods." % len(self._methods)
320 self._methods = []
340 self._methods = self._server.listMethods()
344 self._methods = self._server.system.listMethods()
365 self._methods.sort(lambda x, y: cmp(x, y))
367 self.setStatusTextFieldMessage_("Retrieving information about %d methods." % len(self._methods))
370 for aMethod in self._methods:
377 self.setStatusTextFieldMessage_("Retrieving signature for method %s (%d of %d)." % (aMethod , index, len(self._methods)))
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/WebServicesTool/
H A DWSTConnectionWindowControllerClass.py120 '_methods',
150 self._methods = []
286 aMessage = "Displaying information about %d methods." % len(self._methods)
320 self._methods = []
340 self._methods = self._server.listMethods()
344 self._methods = self._server.system.listMethods()
365 self._methods.sort(lambda x, y: cmp(x, y))
367 self.setStatusTextFieldMessage_("Retrieving information about %d methods." % len(self._methods))
370 for aMethod in self._methods:
377 self.setStatusTextFieldMessage_("Retrieving signature for method %s (%d of %d)." % (aMethod , index, len(self._methods)))
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_Foundation_netservice.m152 static PyMethodDef _methods[] = {
159 PyObject* m = Py_InitModule4("_netservice", _methods, "", NULL,
H A D_Foundation_string.m126 static PyMethodDef _methods[] = {
133 PyObject* m = Py_InitModule4("_string", _methods, "", NULL, PYTHON_API_VERSION);
H A D_Foundation_data.m223 static PyMethodDef _methods[] = {
230 PyObject* m = Py_InitModule4("_data", _methods, "", NULL, PYTHON_API_VERSION);
H A D_Foundation_NSDecimal.m862 static PyMethodDef _methods[] = {
1085 m = Py_InitModule4("_NSDecimal", _methods, _NSDecimal_doc,
/macosx-10.10/OpenSSH-189/openssh/
H A Dauth2.c460 auth2_methods_valid(const char *_methods, int need_enable) argument
466 if (*_methods == '\0') {
470 omethods = methods = xstrdup(_methods);
480 method, _methods);
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDResourceUserClient.h133 static const IOExternalMethodDispatch _methods[kIOHIDResourceDeviceUserClientMethodCount]; member in class:IOHIDResourceDeviceUserClient
H A DIOHIDResourceUserClient.cpp44 // IOHIDResourceDeviceUserClient::_methods
46 const IOExternalMethodDispatch IOHIDResourceDeviceUserClient::_methods[kIOHIDResourceDeviceUserClientMethodCount] = { member in class:IOHIDResourceDeviceUserClient
288 arguments->dispatch = (IOExternalMethodDispatch *) &_methods[arguments->selector];
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Twisted/WebServicesTool-CocoaBindings/
H A DWSTConnectionWindowControllerClass.py285 def receivedMethods(self, _methods, _server, _methodPrefix):
289 for aMethod in _methods:
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/Twisted/WebServicesTool-CocoaBindings/
H A DWSTConnectionWindowControllerClass.py285 def receivedMethods(self, _methods, _server, _methodPrefix):
289 for aMethod in _methods:
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/Twisted/WebServicesTool-CocoaBindings/
H A DWSTConnectionWindowControllerClass.py285 def receivedMethods(self, _methods, _server, _methodPrefix):
289 for aMethod in _methods:

Completed in 169 milliseconds