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

/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DXMLReaderFactory.java60 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderFactory
68 * <li>If the system property <code>org.xml.sax.driver</code>
83 * property will often be usable.) </li>
93 * setting a good value for that property ensures that calls to this
110 // 1. try the JVM-instance-wide system property
111 try { className = System.getProperty (property); }
117 String service = "META-INF/services/" + property;
158 + "is system property org.xml.sax.driver set?");
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DPriviAction.java48 * Creates a PrivilegedAction to get the security property with the given
51 * @param property
52 * the name of the property
56 public static PrivilegedAction<String> getSecurityProperty(String property) { argument
57 return new PriviAction<String>(GET_SECURITY_PROPERTY, property);
90 * Creates a PrivilegedAction to return the value of the system property
93 * @param property
94 * the key of the system property
98 public PriviAction(String property) { argument
100 arg1 = property;
114 PriviAction(String property, String defaultAnswer) argument
[all...]
/dalvik/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...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DProxySelectorImpl.java290 * gets system property, privileged operation. If the value of the property
293 private String getSystemProperty(final String property) { argument
294 return getSystemProperty(property, null);
298 * gets system property, privileged operation. If the value of the property
301 private String getSystemProperty(final String property, argument
304 property));
307 ? netProps.getProperty(property, defaultValue)
314 * gets system property, privilege
[all...]
/dalvik/libcore/xml/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...]
/dalvik/libcore/luni/src/main/java/java/lang/
H A DSecurityManager.java413 * property.
415 private static boolean checkPackageProperty(final String property, argument
418 .getSecurityProperty(property));
454 * system property.
457 * the name of the property to access.
460 * key} system property.
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java1270 * it exists. Otherwise this property has no value.
1300 * no external subset or if it has no public identifier, this property
1745 * @param property a <code>String</code> value
1748 public void setProperty(String property, Object value) argument
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1174 public Object getProperty(String property) { argument
1175 if (isProp(property, true, "xmldecl-version"))
1177 if (isProp(property, true, "xmldecl-standalone"))
1179 if (isProp(property, true, "location"))
1466 public void setProperty(String property, Object value) argument
1468 if(isProp(property, true, "location"))
1471 throw new XmlPullParserException("unsupported property: " + property);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java1625 private String getSystemProperty(final String property) { argument
1626 return AccessController.doPrivileged(new PriviAction<String>(property));
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java183 * Set a run time property for this DTM instance.
185 * @param property a <code>String</code> value
188 public void setProperty(String property, Object value); argument
572 * standard input, for example), the value of this property is unknown.
587 * it is not known, the value of this property is null.
605 * either "yes" or "no". This property is derived from the optional
617 * property is derived from the XML declaration optionally present at the
642 * it exists. Otherwise this property has no value.
651 * no external subset or if it has no public identifier, this property
757 * declarations processed] property o
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java689 * it exists. Otherwise this property has no value.
1208 * no external subset or if it has no public identifier, this property
2466 * Set a run time property for this DTM instance.
2471 * @param property a <code>String</code> value
2474 public void setProperty(String property, Object value) argument
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDocumentImpl.java1770 * standard input, for example), the value of this property is unknown.
1793 * it is not known, the value of this property is unknown.
1811 * either "yes" or "no". This property is derived from the optional
1823 * property is derived from the XML declaration optionally present at the
1849 * it exists. Otherwise this property has no value.
1858 * no external subset or if it has no public identifier, this property
1957 * declaration for the containing element, this property has no value for
1959 * declarations processed] property of the document information item is
1961 * property is unknown for white space characters. It is always false for
1971 * 10. [all declarations processed] This property i
2365 setProperty(String property, Object value) argument
[all...]

Completed in 607 milliseconds