Home
last modified time | relevance | path

Searched refs:attrname (Results 1 – 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dhtmllib.py387 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 …]
Dxmllib.py535 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 …]
Dsgmllib.py281 attrname, rest, attrvalue = match.group(1, 2, 3)
283 attrvalue = attrname
291 attrs.append((attrname.lower(), attrvalue))
DHTMLParser.py246 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/
Dxmllib.py535 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 …]
DHTMLParser.py301 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/
Dast.txt43 AssAttr: expr, attrname*, flags*
58 Getattr: expr, attrname*
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dloader.py134 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/
Dinstall.py472 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/
Dast.py85 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))
Dpycodegen.py952 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/
Dcodecs.c225 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/
Dcodecs.c225 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/
Dobject.c1740 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/
Dobject.c1747 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/
Dminidom.py721 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/
Dminidom.py723 def getAttributeNode(self, attrname): argument
724 return self._attrs.get(attrname)