Searched refs:property (Results 1 - 10 of 10) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/
H A DDocumentBuilderSetting.java23 * property name.
25 private final String property; field in class:DocumentBuilderSetting
28 * property value.
33 * strategy used to set or get property value.
202 * @param property property name, follows JAXP.
203 * @param value property value
207 String property,
210 if (property == null) {
211 throw new NullPointerException("property");
206 DocumentBuilderSetting( String property, boolean value, DocumentBuilderSettingStrategy strategy) argument
[all...]
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDocumentBuilderSetting.java23 * property name.
25 private final String property; field in class:DocumentBuilderSetting
28 * property value.
33 * strategy used to set or get property value.
202 * @param property property name, follows JAXP.
203 * @param value property value
207 String property,
210 if (property == null) {
211 throw new NullPointerException("property");
206 DocumentBuilderSetting( String property, boolean value, DocumentBuilderSettingStrategy strategy) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DXMLReaderFactory.java62 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderFactory
70 * <li>If the system property <code>org.xml.sax.driver</code>
85 * property will often be usable.) </li>
95 * setting a good value for that property ensures that calls to this
112 // 1. try the JVM-instance-wide system property
113 try { className = System.getProperty (property); }
119 String service = "META-INF/services/" + property;
157 + "is system property org.xml.sax.driver set?");
/libcore/luni/src/main/java/java/util/
H A DProperties.java50 * must be {@code String}s. Each property can have a default
147 * Searches for the property with the specified name. If the property is not
148 * found, the default {@code Properties} are checked. If the property is not
152 * the name of the property to find.
153 * @return the named property value, or {@code null} if it can't be found.
157 String property = result instanceof String ? (String) result : null;
158 if (property == null && defaults != null) {
159 property = defaults.getProperty(name);
161 return property;
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DFileHandler.java47 * initialization; if a property is not defined or has an invalid value, a
75 * specified by "user.home" system property</li>
330 // get boolean LogManager property, if invalid value got, using default
333 String property = manager.getProperty(key);
334 if (property == null) {
338 if ("true".equalsIgnoreCase(property)) {
340 } else if ("false".equalsIgnoreCase(property)) {
346 // get String LogManager property, if invalid value got, using default value
348 String property = manager.getProperty(key);
349 return property
[all...]
H A DLogManager.java45 * java.util.logging.manager system property, if the property is unavailable or
61 * "java" command line property definitions, or by system property definitions
70 * If "java.util.logging.config.class" property is not set, or it is invalid, or
72 * "java.util.logging.config.file" system property can be used to specify a
82 * <li>"handlers". This property's values should be a list of class names for
88 * <li>"config". The property defines a list of class names separated by
100 * specified in the property files. The names of these properties will start
111 * the property fil
[all...]
/libcore/luni/src/main/java/java/security/
H A DSecurity.java87 * the name of the property.
88 * @return value of the property.
330 * Returns the value of the security property named by the argument.
333 * the name of the requested security property.
334 * @return the value of the security property.
340 String property = secprops.getProperty(key);
341 if (property != null) {
342 property = property.trim();
344 return property;
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1791 public Object getProperty(String property) { argument
1792 if (property.equals(PROPERTY_XMLDECL_VERSION)) {
1794 } else if (property.equals(PROPERTY_XMLDECL_STANDALONE)) {
1796 } else if (property.equals(PROPERTY_LOCATION)) {
2104 public void setProperty(String property, Object value) throws XmlPullParserException { argument
2105 if (property.equals(PROPERTY_LOCATION)) {
2108 throw new XmlPullParserException("unsupported property: " + property);
/libcore/luni/src/main/java/java/util/zip/
H A DZipOutputStream.java431 private void checkSizeIsWithinShort(String property, byte[] bytes) { argument
433 throw new IllegalArgumentException(property + " too long in UTF-8:" + bytes.length +
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 211 milliseconds