Searched defs:property (Results 1 - 10 of 10) 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.java291 * gets system property, privileged operation. If the value of the property
294 private String getSystemProperty(final String property) { argument
295 return getSystemProperty(property, null);
299 * gets system property, privileged operation. If the value of the property
302 private String getSystemProperty(final String property, argument
305 property));
308 ? netProps.getProperty(property, defaultValue)
315 * 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.java431 * property.
433 private static boolean checkPackageProperty(final String property, argument
436 .getSecurityProperty(property));
474 * system property.
477 * the name of the property to access.
480 * key} system property.
/dalvik/libcore/xml/src/main/java/org/kxml2/wap/
H A DWbxmlSerializer.java249 public void setProperty(String property, Object value) { argument
250 throw new IllegalArgumentException ("unknown property "+property);
H A DWbxmlParser.java113 public Object getProperty(String property) { argument
479 public void setProperty(String property, Object value) argument
481 throw new XmlPullParserException("unsupported property: " + property);
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1119 public Object getProperty(String property) { argument
1120 if (isProp(property, true, "xmldecl-version"))
1122 if (isProp(property, true, "xmldecl-standalone"))
1124 if (isProp(property, true, "location"))
1411 public void setProperty(String property, Object value) argument
1413 if(isProp(property, true, "location"))
1416 throw new XmlPullParserException("unsupported property: " + property);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnection.java1523 private String getSystemProperty(final String property) { argument
1524 return AccessController.doPrivileged(new PriviAction<String>(property));

Completed in 519 milliseconds