Home
last modified time | relevance | path

Searched refs:XmlUtils (Results 1 – 6 of 6) sorted by relevance

/external/testng/src/main/java/org/testng/xml/
DXmlSuite.java466 XmlUtils.setProperty(p, "verbose", getVerbose().toString(), DEFAULT_VERBOSE.toString()); in toXml()
472 XmlUtils.setProperty(p, "group-by-instances", String.valueOf(getGroupByInstances()), in toXml()
474 XmlUtils.setProperty(p, "configfailurepolicy", getConfigFailurePolicy(), in toXml()
476 XmlUtils.setProperty(p, "thread-count", String.valueOf(getThreadCount()), in toXml()
478XmlUtils.setProperty(p, "data-provider-thread-count", String.valueOf(getDataProviderThreadCount()), in toXml()
483 XmlUtils.setProperty(p, "skipfailedinvocationcounts", m_skipFailedInvocationCounts.toString(), in toXml()
494 XmlUtils.setProperty(p, "allow-return-values", String.valueOf(getAllowReturnValues()), in toXml()
498 XmlUtils.dumpParameters(xsb, m_parameters); in toXml()
DXmlTest.java462 XmlUtils.setProperty(p, "junit", m_isJUnit.toString(), XmlSuite.DEFAULT_JUNIT.toString()); in toXml()
465XmlUtils.setProperty(p, "parallel", m_parallel.toString(), XmlSuite.DEFAULT_PARALLEL.toString()); in toXml()
468 XmlUtils.setProperty(p, "verbose", m_verbose.toString(), XmlSuite.DEFAULT_VERBOSE.toString()); in toXml()
480 XmlUtils.setProperty(p, "group-by-instances", String.valueOf(getGroupByInstances()), in toXml()
496 XmlUtils.dumpParameters(xsb, m_parameters); in toXml()
DXmlUtils.java9 public class XmlUtils { class
DXmlInclude.java73 XmlUtils.dumpParameters(xsb, m_parameters); in toXml()
DXmlClass.java165 XmlUtils.dumpParameters(xsb, m_parameters); in toXml()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
DXmlResourceParserImpl.java8 import com.android.internal.util.XmlUtils;
640 return XmlUtils.convertValueToInt(this.getAttributeValue(namespace, attribute), defaultValue); in getAttributeIntValue()