HomeSort by relevance Sort by last modified time
    Searched refs:Properties (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /libcore/luni/src/main/java/javax/xml/transform/
Templates.java 22 import java.util.Properties;
44 * Get the properties corresponding to the effective xsl:output element.
50 * <p>The properties returned should contain properties set by the stylesheet,
51 * and these properties are "defaulted" by default properties specified by
53 * XSL Transformations (XSLT) W3C Recommendation</a>. The properties that
55 * Properties list, while the XSLT default properties that were not
56 * specifically set should be in the "default" Properties list. Thus
    [all...]
Transformer.java 22 import java.util.Properties;
39 * output properties are preserved across transformations.</p>
141 * <code>Properties</code> <code>Object</code> which limits the parameter
188 * Set the output properties for the transformation. These
189 * properties will override properties set in the Templates
192 * <p>If argument to this function is null, any properties
209 * @param oformat A set of output properties that will be
210 * used to override any of the same properties in affect
214 * @see java.util.Properties
    [all...]
  /libcore/luni/src/main/java/java/sql/
Driver.java 20 import java.util.Properties;
61 * some properties that should be used in establishing the
62 * connection. The properties consist of name/value pairs of
64 * least two properties - for {@code "user"} and {@code
70 public Connection connect(String url, Properties info) throws SQLException;
87 * Gets information about possible properties for this driver.
89 * This method is intended to provide a listing of possible properties that
91 * to a database. Note that the returned array of properties may change
103 * details on which additional properties are required (in addition
109 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
OutputPropertyUtils.java 23 import java.util.Properties;
32 * @see java.util.Properties
45 * @param props the list of properties that will be searched.
49 public static boolean getBooleanProperty(String key, Properties props)
68 * @param props the list of properties that will be searched.
72 public static int getIntProperty(String key, Properties props)
Serializer.java 25 import java.util.Properties;
33 * <li>configure the serializer with key/value properties
40 * java.util.Properties props =
67 * java.util.Properties props =
98 * The encoding specified in the output {@link Properties} is used, or
121 * The encoding specified for the output {@link Properties} must be
169 public void setOutputFormat(Properties format);
172 * Returns the output format properties for this serializer.
176 public Properties getOutputFormat();
OutputPropertiesFactory.java 29 import java.util.Properties;
38 * This class is a factory to generate a set of default properties
41 * The properties generated by this factory
50 * that can be used to set non-standard property values on a java.util.Properties object
56 * properties value is a the number of whitespaces to indent by per
190 /** property file for default XML properties */
191 private static final String PROP_FILE_XML = "output_xml.properties";
192 /** property file for default TEXT properties */
193 private static final String PROP_FILE_TEXT = "output_text.properties";
194 /** property file for default HTML properties */
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
ISettingsPage.java 20 import java.util.Properties;
62 /** Loads settings from the given {@link Properties} container and update the page UI. */
63 public abstract void loadSettings(Properties in_settings);
66 * the given {@link Properties} container. */
67 public abstract void retrieveSettings(Properties out_settings);
82 * applied. The application will call {@link ISettingsPage#retrieveSettings(Properties)}
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 34 enum Properties {
102 public void setProperty(final Properties p, final int value) {
144 public void setProperty(final Properties p, final String value) {
197 config.setProperty(Properties.LANGUAGE, "xx");
204 config.setProperty(Properties.LANGUAGE, "xx");
205 config.setProperty(Properties.COUNTRY, "YY");
212 config.setProperty(Properties.MCC, 111);
219 config.setProperty(Properties.MNC, 222);
226 config.setProperty(Properties.TOUCHSCREEN, Configuration.TOUCHSCREEN_NOTOUCH);
233 config.setProperty(Properties.TOUCHSCREEN, Configuration.TOUCHSCREEN_STYLUS)
    [all...]
  /cts/tools/dx-tests/src/util/
CompileAllJasmin.java 21 import java.util.Properties;
29 * path to the (properties) file containing line by line
35 Properties p = new Properties();
  /external/emma/core/java12/com/vladium/util/
Property.java 20 import java.util.Properties;
56 public static Properties combine (final Properties overrides, final Properties base)
74 final Properties result = new XProperties (base);
91 * Creates a set of properties for an application with a given namespace.
97 * @return application properties [never null, a new instance is created
100 public static Properties getAppProperties (final String namespace, final ClassLoader loader)
103 throw new IllegalArgumentException ("null properties: appNameLC");
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader)
    [all...]
XProperties.java 15 import java.util.Properties;
24 class XProperties extends Properties
33 public XProperties (final Properties base)
  /external/nist-sip/java/gov/nist/core/
StackLogger.java 3 import java.util.Properties;
116 * Stack creation properties.
120 public void setStackProperties(Properties stackProperties);
LogWriter.java 30 import java.util.Properties;
94 public void setStackProperties(Properties stackProperties) {
158 // private Properties configurationProperties;
358 // public void setStackProperties(Properties configurationProperties) {
435 // * properties then we try to create the appender.
ServerLogger.java 19 import java.util.Properties;
44 public void setStackProperties(Properties stackProperties);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
intersect.h 51 if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true))
53 uint64 props1 = fst1.Properties(kFstProperties, false);
54 uint64 props2 = fst2.Properties(kFstProperties, false);
63 if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true))
65 uint64 props1 = fst1.Properties(kFstProperties, false);
66 uint64 props2 = fst2.Properties(kFstProperties, false);
difference.h 57 if (!fst1.Properties(kAcceptor, true))
59 uint64 props1 = fst1.Properties(kFstProperties, false);
60 uint64 props2 = fst2.Properties(kFstProperties, false);
71 if (!fst1.Properties(kAcceptor, true))
73 uint64 props1 = fst1.Properties(kFstProperties, false);
74 uint64 props2 = fst2.Properties(kFstProperties, false);
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 25 import java.util.Properties;
71 // Getting the output properties this way won't cause a clone of
72 // the properties.
73 Properties prevProperties = transformer.getOutputFormat().getProperties();
75 // We have to make sure we get an output properties with the proper
81 Properties htmlProperties = htmlOutputProperties.getProperties();
120 * Get the value of a property, without using the default properties. This
131 private static String getOutputPropertyNoDefault(String qnameString, Properties props)
150 String ns, String localName, Properties props, Serializer oldSerializer)
164 // Getting the output properties this way won't cause a clone of
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/internal/repository/
MockPlatformPackage.java 23 import java.util.Properties;
57 private MockPlatformPackage(IAndroidTarget target, Properties props) {
62 private static Properties createProps(int min_tools_rev) {
63 Properties props = new Properties();
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 25 import java.util.Properties;
28 * A pool of OAuthConsumers that are constructed from Properties. Each consumer
29 * has a name, which is a property of the OAuthConsumer. Other properties come
30 * from Properties whose names are prefixed with the consumer's name. For
31 * example, a consumer's credentials come from properties named
48 public static Properties getProperties(URL source) throws IOException {
51 Properties p = new Properties();
64 public ConsumerProperties(Properties consumerProperties) {
68 private final Properties consumerProperties
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 25 import java.util.Properties;
72 Properties properties = System.getProperties(); local
74 properties.remove(key);
76 properties.setProperty(key, value);
78 System.setProperties(properties);
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
ScriptRunner.java 12 import java.util.Properties;
53 Properties props = new Properties();
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 27 * resource per line (see Properties).
30 * @see Properties
35 Properties resources;
39 * properties file from the specified {@code InputStream}.
51 resources = new Properties();
56 * Constructs a new resource bundle with properties read from {@code reader}.
63 resources = new Properties();
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 25 import java.util.Properties;
76 public Connection connect(String url, Properties info) throws SQLException {
95 } // end method connect(String, Properties)
105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
MinToolsPackage.java 26 import java.util.Properties;
59 * Properties from props are used first when possible, e.g. if props is non null.
65 Properties props,
89 void saveProperties(Properties props) {
  /libcore/luni/src/main/java/org/apache/xalan/templates/
OutputProperties.java 24 import java.util.Properties;
39 * a wrapper for {@link java.util.Properties}, but can not extend that class
66 public OutputProperties(Properties defaults)
68 m_properties = new Properties(defaults);
74 * the form output_[method].properties (for instance, output_html.properties).
75 * The output_xml.properties file is always used as the base.
77 * use the output_xml.properties file.</p>
83 m_properties = new Properties(
88 * Clone this OutputProperties, including a clone of the wrapped Properties
    [all...]

Completed in 276 milliseconds

1 2 3 4 5 6 7 8