/third_party/python/Lib/test/ |
D | test_userstring.py | 20 def checkequal(self, result, object, methodname, *args, **kwargs): argument 24 realresult = getattr(object, methodname)(*args, **kwargs) 30 def checkraises(self, exc, obj, methodname, *args): argument 34 getattr(obj, methodname)(*args) 37 def checkcall(self, object, methodname, *args): argument 40 getattr(object, methodname)(*args)
|
D | test_file.py | 119 for methodname, args in methods: 120 method = getattr(self.f, methodname) 272 for methodname, args in methods: 275 meth = getattr(f, methodname)
|
D | test_profile.py | 37 for methodname in cls.methodnames: 41 getattr(stats, methodname)()
|
D | string_tests.py | 59 def checkequal(self, result, obj, methodname, *args, **kwargs): argument 64 realresult = getattr(obj, methodname)(*args, **kwargs) 79 realresult = getattr(obj, methodname)(*args) 83 def checkraises(self, exc, obj, methodname, *args): argument 87 getattr(obj, methodname)(*args) 91 def checkcall(self, obj, methodname, *args): argument 94 getattr(obj, methodname)(*args)
|
D | test_fileio.py | 209 for methodname in methods: 210 method = getattr(self.f, methodname)
|
D | test_xmlrpc.py | 203 methodname = 'method\u20ac\xa4' 205 methodname=methodname) 207 self.assertEqual(xmlrpclib.loads(strg)[1], methodname)
|
D | test_unicode.py | 64 def checkequalnofix(self, result, object, methodname, *args): argument 65 method = getattr(object, methodname) 77 method = getattr(object, methodname)
|
D | test_socket.py | 355 methodname = self.id() 356 i = methodname.rfind('.') 357 methodname = methodname[i+1:] 358 test_method = getattr(self, '_' + methodname)
|
/third_party/python/Lib/idlelib/ |
D | rpc.py | 173 how, (oid, methodname, args, kwargs) = request 179 if methodname == "__methods__": 183 if methodname == "__attributes__": 187 if not hasattr(obj, methodname): 188 return ("ERROR", "Unsupported method name: %r" % (methodname,)) 189 method = getattr(obj, methodname) 216 def remotecall(self, oid, methodname, args, kwargs): argument 217 self.debug("remotecall:asynccall: ", oid, methodname) 218 seq = self.asynccall(oid, methodname, args, kwargs) 221 def remotequeue(self, oid, methodname, args, kwargs): argument [all …]
|
D | editor.py | 1139 methodname = vevent.replace("-", "_") 1140 while methodname[:1] == '<': 1141 methodname = methodname[1:] 1142 while methodname[-1:] == '>': 1143 methodname = methodname[:-1] 1144 methodname = methodname + "_event" 1145 if hasattr(ins, methodname): 1146 self.text.bind(vevent, getattr(ins, methodname))
|
D | debugger_r.py | 302 def call(self, methodname, /, *args, **kwargs): argument 304 value = self.conn.remotecall(self.oid, methodname, args, kwargs)
|
/third_party/python/Lib/tkinter/test/ |
D | widget_tests.py | 520 methodname = 'test_configure_' + option 521 if not hasattr(cls, methodname): 523 if hasattr(source_class, methodname): 524 setattr(cls, methodname, 525 getattr(source_class, methodname)) 533 test.__name__ = methodname 534 setattr(cls, methodname, test)
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jmorecfg.h | 188 #define JMETHOD(type, methodname, arglist) type (*methodname) arglist argument
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | jmorecfg.h | 223 #define JMETHOD(type, methodname, arglist) type (*methodname) arglist argument
|
/third_party/libjpeg-turbo/ |
D | jmorecfg.h | 225 #define JMETHOD(type, methodname, arglist) type (*methodname) arglist argument
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 85 def dispatch(c, id, methodname, args=(), kwds={}): argument 89 c.send((id, methodname, args, kwds)) 252 methodname = obj = None 254 ident, methodname, args, kwds = request 264 if methodname not in exposed: 267 (methodname, type(obj), exposed) 270 function = getattr(obj, methodname) 277 typeid = gettypeid and gettypeid.get(methodname, None) 286 if methodname is None: 290 fallback_func = self.fallback_mapping[methodname] [all …]
|
/third_party/python/Lib/unittest/ |
D | loader.py | 48 def _make_failed_test(methodname, exception, suiteClass, message): argument 49 test = _FailedTest(methodname, exception) 52 def _make_skipped_test(methodname, exception, suiteClass): argument 56 attrs = {methodname: testSkipped} 58 return suiteClass((TestClass(methodname),))
|
/third_party/flutter/skia/platform_tools/android/apps/skottie/src/main/cpp/ |
D | JavaInputStreamAdaptor.cpp | 28 const char methodname[], const char type[]) { in getMethodIDCheck() argument 29 jmethodID id = env->GetMethodID(clazz, methodname, type); in getMethodIDCheck()
|
/third_party/python/Lib/xmlrpc/ |
D | client.py | 944 def dumps(params, methodname=None, methodresponse=None, encoding=None, argument 989 if methodname: 994 "<methodName>", methodname, "</methodName>\n", 1458 def __request(self, methodname, params): argument 1461 request = dumps(params, methodname, encoding=self.__encoding,
|
/third_party/python/Lib/ |
D | turtle.py | 3836 for methodname in _tg_screen_functions: 3837 key = "_Screen."+methodname 3839 for methodname in _tg_turtle_functions: 3840 key = "Turtle."+methodname 3961 for methodname in functions: 3962 method = getattr(cls, methodname) 3967 defstr = __func_body.format(obj=obj, init=init, name=methodname, 3970 globals()[methodname].__doc__ = docrevise(method.__doc__)
|
D | pydoc.py | 532 methodname = 'repr_' + '_'.join(type(x).__name__.split()) 533 if hasattr(self, methodname): 534 return getattr(self, methodname)(x, level) 1135 methodname = 'repr_' + '_'.join(type(x).__name__.split()) 1136 if hasattr(self, methodname): 1137 return getattr(self, methodname)(x, level)
|
/third_party/python/Doc/library/ |
D | xmlrpc.client.rst | 528 .. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False) 542 methodname)``. *params* is a tuple of argument; *methodname* is a string, or
|
D | multiprocessing.rst | 2050 .. method:: _callmethod(methodname[, args[, kwds]]) 2056 proxy._callmethod(methodname, args, kwds) 2060 getattr(obj, methodname)(*args, **kwds) 2073 Note in particular that an exception will be raised if *methodname* has
|
/third_party/python/Doc/tutorial/ |
D | controlflow.rst | 516 ``obj.methodname``, where ``obj`` is some object (this may be an expression), 517 and ``methodname`` is the name of a method that is defined by the object's type.
|
/third_party/boost/tools/boostbook/doc/ |
D | reference.dtdxml | 153 <entity name="local.methodname.attrib" 2022 <element-name name="methodname"/> 2036 <element-name name="methodname"/>
|