Home
last modified time | relevance | path

Searched refs:methname (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_shlex.py183 for methname in dir(ShlexTest):
184 if methname.startswith("test") and methname != "testCompat":
185 delattr(ShlexTest, methname)
Dtest_trace.py177 for methname in ['inst_method_linear',]:
180 method = getattr(traced_obj, methname)
Dtest_set.py1578 for methname in ('update', 'intersection_update',
1583 getattr(s, methname)(list(g(data)))
1584 getattr(t, methname)(g(data))
1587 self.assertRaises(TypeError, getattr(set('january'), methname), X(data))
1588 self.assertRaises(TypeError, getattr(set('january'), methname), N(data))
1589 self.assertRaises(ZeroDivisionError, getattr(set('january'), methname), E(data))
Dtest_bytes.py990 for methname in ('zfill', 'rjust', 'ljust', 'center'):
991 method = getattr(val, methname)
995 methname+' returned self on a mutable object')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dasdl.py321 methname = "visit" + klass.__name__
323 meth = getattr(self, methname, None)
325 meth = getattr(self, methname)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Ddatetimemodule.c780 call_tzinfo_method(PyObject *tzinfo, char *methname, PyObject *tzinfoarg) in call_tzinfo_method() argument
784 assert(tzinfo && methname && tzinfoarg); in call_tzinfo_method()
791 result = PyObject_CallMethod(tzinfo, methname, "O", tzinfoarg); in call_tzinfo_method()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Ddatetimemodule.c780 call_tzinfo_method(PyObject *tzinfo, char *methname, PyObject *tzinfoarg) in call_tzinfo_method() argument
784 assert(tzinfo && methname && tzinfoarg); in call_tzinfo_method()
791 result = PyObject_CallMethod(tzinfo, methname, "O", tzinfoarg); in call_tzinfo_method()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddictobject.c1402 dict_update_common(PyObject *self, PyObject *args, PyObject *kwds, char *methname) in dict_update_common() argument
1407 if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) in dict_update_common()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddictobject.c1436 dict_update_common(PyObject *self, PyObject *args, PyObject *kwds, char *methname) in dict_update_common() argument
1441 if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) in dict_update_common()