/libcore/ojluni/src/main/java/sun/security/action/ |
D | GetPropertyAction.java | 52 private String defaultVal; field in GetPropertyAction 71 public GetPropertyAction(String theProp, String defaultVal) { in GetPropertyAction() argument 73 this.defaultVal = defaultVal; in GetPropertyAction() 85 return (value == null) ? defaultVal : value; in run()
|
D | GetIntegerAction.java | 69 private int defaultVal; field in GetIntegerAction 89 public GetIntegerAction(String theProp, int defaultVal) { in GetIntegerAction() argument 91 this.defaultVal = defaultVal; in GetIntegerAction() 110 return new Integer(defaultVal); in run()
|
/libcore/ojluni/annotations/hiddenapi/sun/security/action/ |
D | GetIntegerAction.java | 36 public GetIntegerAction(java.lang.String theProp, int defaultVal) { in GetIntegerAction() argument 46 private int defaultVal; field in GetIntegerAction
|
D | GetPropertyAction.java | 37 public GetPropertyAction(java.lang.String theProp, java.lang.String defaultVal) { in GetPropertyAction() argument 45 private java.lang.String defaultVal; field in GetPropertyAction
|
/libcore/ojluni/src/main/java/java/io/ |
D | FileSystem.java | 236 private static boolean getBooleanProperty(String prop, boolean defaultVal) { in getBooleanProperty() argument 238 if (val == null) return defaultVal; in getBooleanProperty()
|
/libcore/ojluni/src/main/java/sun/net/spi/ |
D | DefaultProxySelector.java | 131 final String defaultVal; field in DefaultProxySelector.NonProxyInfo 142 defaultVal = d; in NonProxyInfo() 268 if (nprop.defaultVal != null) { in select() 269 nphosts = nprop.defaultVal; in select()
|
/libcore/luni/src/test/resources/ |
D | simple_ns.dtd | 28 <!ATTLIST emp:employee defaultAttr CDATA 'defaultVal'>
|
/libcore/dom/src/test/resources/ |
D | staffNS.dtd | 28 <!ATTLIST emp:employee defaultAttr CDATA 'defaultVal'>
|
/libcore/ojluni/annotations/hiddenapi/java/io/ |
D | FileSystem.java | 118 private static boolean getBooleanProperty(java.lang.String prop, boolean defaultVal) { in getBooleanProperty() argument
|
/libcore/ojluni/src/main/java/java/util/ |
D | TreeMap.java | 2488 void readTreeSet(int size, java.io.ObjectInputStream s, V defaultVal) in readTreeSet() argument 2490 buildFromSorted(size, null, s, defaultVal); in readTreeSet() 2494 void addAllForTreeSet(SortedSet<? extends K> set, V defaultVal) { in addAllForTreeSet() argument 2496 buildFromSorted(set.size(), set.iterator(), null, defaultVal); in addAllForTreeSet() local 2535 V defaultVal) in buildFromSorted() argument 2539 it, str, defaultVal); in buildFromSorted() 2561 V defaultVal) in buildFromSorted() argument 2582 it, str, defaultVal); in buildFromSorted() 2588 if (defaultVal==null) { in buildFromSorted() 2594 value = defaultVal; in buildFromSorted() [all …]
|