Searched defs:copyFrom (Results 1 - 3 of 3) sorted by relevance

/dalvik/libcore/json/src/main/java/org/json/
H A DJSONArray.java62 * @param copyFrom a collection whose values are of supported types.
67 public JSONArray(Collection copyFrom) { argument
69 Collection<?> copyFromTyped = (Collection<?>) copyFrom;
H A DJSONObject.java119 * @param copyFrom a map whose keys are of type {@link String} and whose
124 public JSONObject(Map copyFrom) { argument
126 Map<?, ?> contentsTyped = (Map<?, ?>) copyFrom;
176 * from the given object. Names that aren't present in {@code copyFrom} will
179 public JSONObject(JSONObject copyFrom, String[] names) throws JSONException { argument
182 Object value = copyFrom.opt(name);
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java326 copyFrom(savedProps, false);
577 public void copyFrom(Properties src) method in class:OutputProperties
579 copyFrom(src, true);
592 public void copyFrom(Properties src, boolean shouldResetDefaults) method in class:OutputProperties
631 public void copyFrom(OutputProperties opsrc) method in class:OutputProperties
636 copyFrom(opsrc.getProperties());

Completed in 193 milliseconds