Searched defs:property (Results 1 - 6 of 6) sorted by relevance

/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;
160 + "is system property org.xml.sax.driver set?");
/libcore/ojluni/src/main/java/sun/net/spi/
H A DDefaultProxySelector.java94 * basis, and change it only when the "source", i.e. the system property,
105 final String property; field in class:DefaultProxySelector.NonProxyInfo
112 property = p;
167 // HTTPS uses the same property as HTTP, for backward
204 * property.
212 * No system property defined for that
221 // Let's get the NonProxyHosts property
223 nphosts = NetProperties.get(nprop.property);
234 // but only if property no set. If it
298 * If no specific property wa
[all...]
/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/ojluni/src/main/java/javax/sql/
H A DRowSetMetaData.java64 * @param property <code>true</code> if the column is automatically
69 void setAutoIncrement(int columnIndex, boolean property) throws SQLException; argument
76 * @param property <code>true</code> if the column is case sensitive;
81 void setCaseSensitive(int columnIndex, boolean property) throws SQLException; argument
88 * @param property <code>true</code> if the column can be used in a
93 void setSearchable(int columnIndex, boolean property) throws SQLException; argument
100 * @param property <code>true</code> if the column is a cash value;
105 void setCurrency(int columnIndex, boolean property) throws SQLException; argument
113 * @param property one of the following constants:
120 void setNullable(int columnIndex, int property) throw argument
132 setSigned(int columnIndex, boolean property) argument
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1793 public Object getProperty(String property) { argument
1794 if (property.equals(PROPERTY_XMLDECL_VERSION)) {
1796 } else if (property.equals(PROPERTY_XMLDECL_STANDALONE)) {
1798 } else if (property.equals(PROPERTY_LOCATION)) {
2106 public void setProperty(String property, Object value) throws XmlPullParserException { argument
2107 if (property.equals(PROPERTY_LOCATION)) {
2110 throw new XmlPullParserException("unsupported property: " + property);

Completed in 289 milliseconds