Searched refs:method_name (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_dict.py | 60 method_name = method.value 61 isiter = method_name.startswith(u"iter") 62 isview = method_name.startswith(u"view") 64 method_name = method_name[4:] 65 assert method_name in (u"keys", u"items", u"values"), repr(method) 71 Name(method_name,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | DocXMLRPCServer.py | 177 for method_name in self.system_listMethods(): 178 if method_name in self.funcs: 179 method = self.funcs[method_name] 183 method_info[0] = self.instance._get_method_argstring(method_name) 185 method_info[1] = self.instance._methodHelp(method_name) 194 method_name 204 methods[method_name] = method
|
D | SimpleXMLRPCServer.py | 301 def system_methodSignature(self, method_name): argument 314 def system_methodHelp(self, method_name): argument 320 if method_name in self.funcs: 321 method = self.funcs[method_name] 325 return self.instance._methodHelp(method_name) 332 method_name, 358 method_name = call['methodName'] 364 results.append([self._dispatch(method_name, params)])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/ |
D | connection.c | 1527 char* method_name; in pysqlite_connection_exit() local 1535 method_name = "commit"; in pysqlite_connection_exit() 1537 method_name = "rollback"; in pysqlite_connection_exit() 1540 result = PyObject_CallMethod((PyObject*)self, method_name, ""); in pysqlite_connection_exit()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | dist.py | 153 method_name = "get_" + basename 154 setattr(self, method_name, getattr(self.metadata, method_name))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_urllib2.py | 553 handler, method_name, args = expected 554 self.assertEqual((handler, method_name), got[:2])
|