Searched refs:propName (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/sun/misc/ |
D | MessageUtils.java | 81 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/ |
D | MessageUtils.java | 58 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/ |
D | KeyStoreTest.java | 187 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/ |
D | CertPathValidator1Test.java | 102 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()
|
D | CertPathValidator2Test.java | 83 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/time/chrono/ |
D | HijrahChronology.java | 363 String propName = PROP_PREFIX + id + PROP_TYPE_SUFFIX; in HijrahChronology() local 364 String calType = calendarProperties.getProperty(propName); in HijrahChronology() 366 throw new DateTimeException("calendarType is missing or empty for: " + propName); in HijrahChronology()
|
/libcore/ojluni/src/main/java/java/security/ |
D | Security.java | 233 String propName) { in getAlgorithmProperty() argument 234 ProviderProperty entry = getProviderProperty("Alg." + propName in getAlgorithmProperty()
|