Searched defs:prop (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DAudioFileFormat.java30 private HashMap<String, Object> prop; field in class:AudioFileFormat
57 prop = new HashMap<String, Object>();
58 prop.putAll(properties);
78 if (prop == null) {
81 return Collections.unmodifiableMap(prop);
85 if (prop == null) {
88 return prop.get(key);
H A DAudioFormat.java80 private HashMap<String, Object> prop; field in class:AudioFormat
116 prop = new HashMap<String, Object>();
117 prop.putAll(properties);
170 if (prop != null) {
171 return Collections.unmodifiableMap(prop);
178 if (prop == null) {
181 return prop.get(key);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DSystem.java402 * @param prop
411 public static String getProperty(String prop) { argument
412 return getProperty(prop, null);
419 * @param prop
431 public static String getProperty(String prop, String defaultValue) { argument
432 if (prop.length() == 0) {
437 secMgr.checkPropertyAccess(prop);
440 return internalGetProperties().getProperty(prop, defaultValue);
446 * @param prop
449 * the value to associate with the given property {@code prop}
457 setProperty(String prop, String value) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java125 private final boolean isProp(String n1, boolean prop, String n2) { argument
128 if (prop)

Completed in 132 milliseconds