Searched defs:properties (Results 1 - 11 of 11) sorted by relevance

/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
H A DMockFilter.java41 private Map<String, Object> properties = new HashMap<String, Object>(); field in class:MockFilter
57 return properties.get(name);
73 properties.remove(name);
75 properties.put(name, value);
H A DMockReader.java53 private Map<String, Object> properties = new HashMap<String, Object>(); field in class:MockReader
84 return properties.get(name);
122 properties.remove(name);
124 properties.put(name, value);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMidiFileFormat.java37 private HashMap<String, Object> properties; field in class:MidiFileFormat
46 this.properties = new HashMap<String, Object>();
50 long microseconds, Map<String, Object> properties) {
57 this.properties = new HashMap<String, Object>();
58 this.properties.putAll(properties);
74 return properties.get(key);
85 public Map<String, Object> properties() { method in class:MidiFileFormat
86 return Collections.unmodifiableMap(properties);
49 MidiFileFormat(int type, float divisionType, int resolution, int bytes, long microseconds, Map<String, Object> properties) argument
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DPack200PackerTest.java43 Map properties; field in class:Pack200PackerTest
48 method = "properties",
53 assertTrue(properties.size()>0);
77 properties.put(Packer.EFFORT, "0");
82 properties.put(Packer.EFFORT, "1");
87 properties.put(Packer.EFFORT, "9");
117 properties.put(Packer.EFFORT, "0");
121 properties.put(Packer.EFFORT, "1");
125 properties.put(Packer.EFFORT, "9");
156 properties
[all...]
H A DPack200UnpackerTest.java44 Map properties; field in class:Pack200UnpackerTest
49 method = "properties",
54 assertTrue(properties.size()>0);
79 properties.put(Packer.EFFORT, "0");
85 properties.put(Packer.EFFORT, "1");
90 properties.put(Packer.EFFORT, "9");
140 properties.put(Packer.EFFORT, "0");
146 properties.put(Packer.EFFORT, "1");
151 properties.put(Packer.EFFORT, "9");
205 properties
[all...]
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DPack200.java204 * Returns a sorted map of the properties of this packer.
206 * @return the properties of the packer.
208 SortedMap<String, String> properties(); method in interface:Pack200.Packer
285 * Returns a sorted map of the properties of this unpacker.
287 * @return the properties of unpacker.
289 SortedMap<String, String> properties(); method in interface:Pack200.Unpacker
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DAudioFileFormat.java53 Map<String,Object> properties) {
58 prop.putAll(properties);
77 public Map<String,Object> properties() { method in class:AudioFileFormat
50 AudioFileFormat(AudioFileFormat.Type type, AudioFormat format, int frameLength, Map<String,Object> properties) argument
H A DAudioFormat.java107 Map<String,Object> properties) {
117 prop.putAll(properties);
169 public Map<String,Object> properties() { method in class:AudioFormat
100 AudioFormat(AudioFormat.Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian, Map<String,Object> properties) argument
/dalvik/libcore/luni/src/main/java/java/util/
H A DProperties.java70 private static final String PROP_DTD_NAME = "http://java.sun.com/dtd/properties.dtd";
73 + " <!ELEMENT properties (comment?, entry*) >"
74 + " <!ATTLIST properties version CDATA #FIXED \"1.0\" >"
99 * @param properties
102 public Properties(Properties properties) { argument
103 defaults = properties;
261 * Loads properties from the specified {@code InputStream}. The encoding is
461 * @return an {@code Enumeration} containing the names of all properties
565 * Loads the properties from an {@code InputStream} containing the
566 * properties i
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
H A DPolicyUtils.java83 * Auxiliary action for accessing system properties in a bundle.
88 * Returns system properties.
185 * in security properties or if an Exception has occurred
249 * @param properties available key-value mappings
253 public static String expand(String str, Properties properties) argument
266 String value = properties.getProperty(key);
281 * <code>expand(str, properties).replace(File.separatorChar, '/')</code>.
284 public static String expandURL(String str, Properties properties) argument
286 return expand(str, properties).replace(File.separatorChar, '/');
397 * A key to security properties, decidin
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java2029 // We are interested in these properties, but they don't have a simple
2046 * @param properties DOMConfiguraiton properties that were set and which are
2049 protected void initProperties(Properties properties) { argument
2051 for (Enumeration keys = properties.keys(); keys.hasMoreElements();) {
2063 // A quick lookup for the given set of properties (cdata-sections ...)
2080 if ((properties.getProperty(key).endsWith("yes"))) {
2092 // format-pretty-print; set internally on the serializers via xsl:output properties in LSSerializer
2093 if ((properties.getProperty(key).endsWith("yes"))) {
2102 // omit-xml-declaration; set internally on the serializers via xsl:output properties i
[all...]

Completed in 401 milliseconds