Home
last modified time | relevance | path

Searched refs:xml_name (Results 1 – 2 of 2) sorted by relevance

/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Functions/
DtFunction_Export_Import_Domains.py564 xml_name="Uncompliant_OutboundParameter.xml"
565 log.I("Import %s with initial settings"%(xml_name))
566 …out, err = self.pfw.sendCmd("importDomainsWithSettingsXML",xml_path+xml_name, "", expectSuccess=Fa…
567 …assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(xml_path+xml_name,err))
568 assert out != "Done", log.F("Error not detected when imported %s]"%(xml_path+xml_name))
569 log.I("Test OK : %s is not imported"%(xml_name))
571 xml_name="Uncompliant_UndeclaredConfigurableElement.xml"
572 log.I("Import %s with initial settings"%(xml_name))
573 …out, err = self.pfw.sendCmd("importDomainsWithSettingsXML",xml_path+xml_name, "", expectSuccess=Fa…
574 …assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(xml_path+xml_name,err))
[all …]
/external/mesa3d/src/broadcom/clif/
Dv3dx_dump.c41 clif_name(const char *xml_name) in clif_name() argument
43 char *name = malloc(strlen(xml_name) + 1); in clif_name()
46 for (int i = 0; i < strlen(xml_name); i++) { in clif_name()
47 if (xml_name[i] == ' ') { in clif_name()
49 } else if (xml_name[i] == '(' || xml_name[i] == ')') { in clif_name()
52 name[j++] = toupper(xml_name[i]); in clif_name()