/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | htmllib.py | 387 for attrname, value in attrs: 389 if attrname == 'href': 391 if attrname == 'name': 393 if attrname == 'type': 419 for attrname, value in attrs: 420 if attrname == 'align': 422 if attrname == 'alt': 424 if attrname == 'ismap': 426 if attrname == 'src': 428 if attrname == 'width': [all …]
|
D | xmllib.py | 535 for attrname in attrdict.keys(): 536 if not attrname in self.__xml_namespace_attributes: 537 self.syntax_error("unknown attribute `%s' in xml:namespace tag" % attrname) 562 attrname, attrvalue = res.group('name', 'value') 564 attrname = attrname.lower() 567 self.syntax_error("no value specified for attribute `%s'" % attrname) 568 attrvalue = attrname 573 self.syntax_error("attribute `%s' value not quoted" % attrname) 574 res = xmlns.match(attrname) 584 if attrname in attrdict: [all …]
|
D | sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 283 attrvalue = attrname 291 attrs.append((attrname.lower(), attrvalue))
|
D | HTMLParser.py | 246 attrname, rest, attrvalue = m.group(1, 2, 3) 253 attrs.append((attrname.lower(), attrvalue))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | xmllib.py | 535 for attrname in attrdict.keys(): 536 if not attrname in self.__xml_namespace_attributes: 537 self.syntax_error("unknown attribute `%s' in xml:namespace tag" % attrname) 562 attrname, attrvalue = res.group('name', 'value') 564 attrname = attrname.lower() 567 self.syntax_error("no value specified for attribute `%s'" % attrname) 568 attrvalue = attrname 573 self.syntax_error("attribute `%s' value not quoted" % attrname) 574 res = xmlns.match(attrname) 584 if attrname in attrdict: [all …]
|
D | HTMLParser.py | 301 attrname, rest, attrvalue = m.group(1, 2, 3) 309 attrs.append((attrname.lower(), attrvalue))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | ast.txt | 43 AssAttr: expr, attrname*, flags* 58 Getattr: expr, attrname*
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | loader.py | 134 def isTestMethod(attrname, testCaseClass=testCaseClass, argument 136 return attrname.startswith(prefix) and \ 137 hasattr(getattr(testCaseClass, attrname), '__call__')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | install.py | 472 attrname = 'install_' + key 473 if getattr(self, attrname) is None: 474 setattr(self, attrname, scheme[key])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | ast.py | 85 def __init__(self, expr, attrname, flags, lineno=None): argument 87 self.attrname = attrname 92 return self.expr, self.attrname, self.flags 98 return "AssAttr(%s, %s, %s)" % (repr(self.expr), repr(self.attrname), repr(self.flags)) 663 def __init__(self, expr, attrname, lineno=None): argument 665 self.attrname = attrname 669 return self.expr, self.attrname 675 return "Getattr(%s, %s)" % (repr(self.expr), repr(self.attrname))
|
D | pycodegen.py | 952 self.emit('LOAD_ATTR', self.mangle(node.attrname)) 979 self.emit('STORE_ATTR', self.mangle(node.attrname)) 981 self.emit('DELETE_ATTR', self.mangle(node.attrname)) 1037 self.emit('LOAD_ATTR', self.mangle(node.attrname)) 1040 self.emit('STORE_ATTR', self.mangle(node.attrname))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | codecs.c | 225 const char *attrname) in codec_getincrementalcodec() argument 232 inccodec = PyObject_GetAttrString(codecs, attrname); in codec_getincrementalcodec()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | codecs.c | 225 const char *attrname) in codec_getincrementalcodec() argument 232 inccodec = PyObject_GetAttrString(codecs, attrname); in codec_getincrementalcodec()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | object.c | 1740 merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname) in merge_list_attr() argument 1747 assert(attrname); in merge_list_attr() 1749 list = PyObject_GetAttrString(obj, attrname); in merge_list_attr() 1764 (strcmp(attrname, "__members__") == 0 || in merge_list_attr() 1765 strcmp(attrname, "__methods__") == 0)) { in merge_list_attr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | object.c | 1747 merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname) in merge_list_attr() argument 1754 assert(attrname); in merge_list_attr() 1756 list = PyObject_GetAttrString(obj, attrname); in merge_list_attr() 1771 (strcmp(attrname, "__members__") == 0 || in merge_list_attr() 1772 strcmp(attrname, "__methods__") == 0)) { in merge_list_attr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
D | minidom.py | 721 def getAttributeNode(self, attrname): argument 722 return self._attrs.get(attrname)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/ |
D | minidom.py | 723 def getAttributeNode(self, attrname): argument 724 return self._attrs.get(attrname)
|