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

/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_PlatformFile.java26 String property = System.getProperty("com.ibm.oti.configuration");
27 if (property == null) {
28 property = "JDK";
30 platformId = property
/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/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/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/java/util/
H A DProperties.java56 * 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...]
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DFileHandler.java50 * initialization; if a property is not defined or has an invalid value, a
78 * specified by "user.home" system property</li>
353 // get boolean LogManager property, if invalid value got, using default
356 String property = manager.getProperty(key);
357 if (null == property) {
361 if ("true".equalsIgnoreCase(property)) { //$NON-NLS-1$
363 } else if ("false".equalsIgnoreCase(property)) { //$NON-NLS-1$
369 // get String LogManager property, if invalid value got, using default value
371 String property = manager.getProperty(key);
372 return property
[all...]
H A DLogManager.java54 * java.util.logging.manager system property, if the property is unavailable or
70 * "java" command line property definitions, or by system property definitions
79 * If "java.util.logging.config.class" property is not set, or it is invalid, or
81 * "java.util.logging.config.file" system property can be used to specify a
91 * <li>"handlers". This property's values should be a list of class names for
97 * <li>"config". The property defines a list of class names separated by
109 * specified in the property files. The names of these properties will start
120 * the property fil
[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/tests/004-annotations/src/android/test/anno/
H A DTestAnnotations.java121 ExportedProperty property;
130 property = meth.getAnnotation(ExportedProperty.class);
131 mapping = property.mapping();
/dalvik/libcore/security/src/main/java/java/security/
H A DSecurity.java148 * the name of the property.
149 * @return value of the property.
434 * Returns the value of the security property named by the argument.
442 * the name of the requested security property.
443 * @return the value of the security property.
456 String property = secprops.getProperty(key);
457 if (property != null) {
458 property = property.trim();
460 return property;
[all...]
/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/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/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/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...]
/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/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

Completed in 367 milliseconds