Home
last modified time | relevance | path

Searched refs:defaultVal (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/action/
DGetPropertyAction.java52 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()
DGetIntegerAction.java69 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/
DGetIntegerAction.java36 public GetIntegerAction(java.lang.String theProp, int defaultVal) { in GetIntegerAction() argument
46 private int defaultVal; field in GetIntegerAction
DGetPropertyAction.java37 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/
DFileSystem.java236 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/
DDefaultProxySelector.java131 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/
Dsimple_ns.dtd28 <!ATTLIST emp:employee defaultAttr CDATA 'defaultVal'>
/libcore/dom/src/test/resources/
DstaffNS.dtd28 <!ATTLIST emp:employee defaultAttr CDATA 'defaultVal'>
/libcore/ojluni/annotations/hiddenapi/java/io/
DFileSystem.java118 private static boolean getBooleanProperty(java.lang.String prop, boolean defaultVal) { in getBooleanProperty() argument
/libcore/ojluni/src/main/java/java/util/
DTreeMap.java2488 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 …]