Searched refs:copyFrom (Results 1 - 7 of 7) sorted by relevance

/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());
H A DStylesheetRoot.java502 m_outputProperties.copyFrom(oprops);
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
H A DSerializerSwitcher.java80 htmlOutputProperties.copyFrom(prevProperties, true);
173 htmlOutputProperties.copyFrom(prevProperties, true);
H A DTransformerIdentityImpl.java664 m_outputFormat.copyFrom(oformat);
H A DTransformerImpl.java885 m_outputFormat.copyFrom(oformat);
886 // copyFrom does not set properties that have been already set, so
889 m_outputFormat.copyFrom(m_stylesheetRoot.getOutputProperties());
/dalvik/libcore/json/src/main/java/org/json/
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);
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;

Completed in 77 milliseconds