Home
last modified time | relevance | path

Searched refs:propName (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
DMessageUtils.java81 public static String substProp(String propName, String arg) { in substProp() argument
82 return subst(System.getProperty(propName), arg); in substProp()
85 public static String substProp(String propName, String arg1, String arg2) { in substProp() argument
86 return subst(System.getProperty(propName), arg1, arg2); in substProp()
89 public static String substProp(String propName, String arg1, String arg2, in substProp() argument
91 return subst(System.getProperty(propName), arg1, arg2, arg3); in substProp()
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DMessageUtils.java58 public static java.lang.String substProp(java.lang.String propName, java.lang.String arg) { in substProp() argument
63 java.lang.String propName, java.lang.String arg1, java.lang.String arg2) { in substProp() argument
68 java.lang.String propName, in substProp() argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStoreTest.java187 String propName = "keystore.type"; in testKeyStore01() local
188 String defKSType = Security.getProperty(propName); in testKeyStore01()
198 Security.setProperty(propName, defaultType); in testKeyStore01()
200 resType = Security.getProperty(propName); in testKeyStore01()
/libcore/luni/src/test/java/tests/security/cert/
DCertPathValidator1Test.java102 String propName = "certpathvalidator.type"; in testCertPathValidator01() local
103 String defCPV = Security.getProperty(propName); in testCertPathValidator01()
114 Security.setProperty(propName, defaultType); in testCertPathValidator01()
116 resType = Security.getProperty(propName); in testCertPathValidator01()
DCertPathValidator2Test.java83 String propName = "certpathvalidator.type"; in checkResult() local
85 Security.setProperty(propName, invalidValues[i]); in checkResult()
89 Security.setProperty(propName, dt); in checkResult()
/libcore/ojluni/src/main/java/java/security/
DSecurity.java233 String propName) { in getAlgorithmProperty() argument
234 ProviderProperty entry = getProviderProperty("Alg." + propName in getAlgorithmProperty()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DDocumentBuilderFactoryTest.java704 String propName = SchemaFactory.class.getName() + ":" + language; in test_setSchemaLjavax_xml_validation_Schema() local
711 System.setProperty(propName, className); in test_setSchemaLjavax_xml_validation_Schema()