Searched refs:xml_data (Results 1 – 5 of 5) sorted by relevance
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 1867 def _detectEncoding(self, xml_data, isHTML=False): argument 1871 if xml_data[:4] == '\x4c\x6f\xa7\x94': 1873 xml_data = self._ebcdic_to_ascii(xml_data) 1874 elif xml_data[:4] == '\x00\x3c\x00\x3f': 1877 xml_data = unicode(xml_data, 'utf-16be').encode('utf-8') 1878 elif (len(xml_data) >= 4) and (xml_data[:2] == '\xfe\xff') \ 1879 and (xml_data[2:4] != '\x00\x00'): 1882 xml_data = unicode(xml_data[2:], 'utf-16be').encode('utf-8') 1883 elif xml_data[:4] == '\x3c\x00\x3f\x00': 1886 xml_data = unicode(xml_data, 'utf-16le').encode('utf-8') [all …]
|
/external/mesa3d/src/mapi/ |
D | mapi_abi.py | 48 def __init__(self, cols, attrs, xml_data = None): argument 55 self.xml_data = xml_data 698 if ent.xml_data is None: 701 ent.xml_data.entry_points_for_api_version('es1')) \ 722 if ent.xml_data is None: 725 ent.xml_data.entry_points_for_api_version('es2')) \
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | runtest.py | 141 xml_data = [ET.tostring(x).decode('us-ascii') for x in xml_list] 143 xml_data = None 144 return result + (xml_data,)
|
D | main.py | 109 ok, test_time, xml_data = result 128 if xml_data: 130 for e in xml_data: 134 print(xml_data, file=sys.__stderr__)
|
D | runtest_mp.py | 199 ok, test_time, xml_data = result
|