Home
last modified time | relevance | path

Searched refs:systemProperties (Results 1 – 3 of 3) sorted by relevance

/external/testng/
Dbuild.gradle156 systemProperties = System.getProperties()
157 systemProperties['test.resources.dir'] = 'build/resources/test/'
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLogManagerTest.java793 Properties systemProperties = System.getProperties(); in testValidConfigClass() local
795 systemProperties.setProperty(CONFIG_CLASS, oldPropertyValue); in testValidConfigClass()
797 systemProperties.remove(CONFIG_CLASS); in testValidConfigClass()
811 Properties systemProperties = System.getProperties(); in testNotExistConfigFile() local
813 systemProperties.setProperty(CONFIG_FILE, oldPropertyValue); in testNotExistConfigFile()
815 systemProperties.remove(CONFIG_FILE); in testNotExistConfigFile()
/external/r8/src/test/java/com/android/tools/r8/
DToolHelper.java98 private Map<String, String> systemProperties = new LinkedHashMap<>(); field in ToolHelper.CommandBuilder
110 systemProperties.put(key, value); in appendArtSystemProperty()
147 for (Map.Entry<String, String> entry : systemProperties.entrySet()) { in command()