Searched defs:clone (Results 51 - 75 of 129) sorted by relevance

123456

/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DBreakIterator.java113 public abstract Object clone(); method in class:BreakIterator
H A DCollator.java263 public abstract Object clone() throws CloneNotSupportedException; method in class:Collator
H A DRuleBasedCollator.java350 * @return a copy of this object if data clone is a success, otherwise null
353 public Object clone() method in class:RuleBasedCollator
/dalvik/libcore/luni/src/main/java/java/util/
H A DEnumSet.java320 public EnumSet<E> clone() { method in class:EnumSet
322 return (EnumSet<E>) super.clone();
H A DHugeEnumSet.java210 public HugeEnumSet<E> clone() { method in class:HugeEnumSet
211 HugeEnumSet<E> set = (HugeEnumSet<E>) super.clone();
212 set.bits = bits.clone();
H A DTreeSet.java153 public Object clone() { method in class:TreeSet
155 TreeSet<E> clone = (TreeSet<E>) super.clone();
157 clone.backingMap = (SortedMap<E, Object>) ((TreeMap<E, Object>) backingMap)
158 .clone();
160 clone.backingMap = new TreeMap<E, Object>(backingMap);
162 return clone;
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DObjectTest.java117 method = "clone",
123 assertFalse(mco.equals(mco.clone()));
124 assertEquals(mco.getClass(), mco.clone().getClass());
131 mo.clone();
138 public Object clone() throws CloneNotSupportedException { method in class:ObjectTest.MockCloneableObject
139 return super.clone();
152 public Object clone() throws CloneNotSupportedException { method in class:ObjectTest.MockObject
153 return super.clone();
/dalvik/libcore/security/src/main/java/java/security/
H A DMessageDigest.java343 MessageDigest md = (MessageDigest) clone();
351 public Object clone() throws CloneNotSupportedException { method in class:MessageDigest
353 return super.clone();
416 // Returns a clone if the spiImpl is cloneable
418 public Object clone() throws CloneNotSupportedException { method in class:MessageDigest.MessageDigestImpl
420 MessageDigestSpi spi = (MessageDigestSpi) spiImpl.clone();
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DX509CRLSelector.java452 public Object clone() { method in class:X509CRLSelector
456 result = (X509CRLSelector) super.clone();
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java129 public Object clone() method in class:PKIXPolicyNode
/dalvik/libcore/security/src/test/java/tests/security/cert/
H A DCertPathValidator1Test.java547 public Object clone() { method in class:invalidParams
H A DCertStore2Test.java312 public Object clone() { method in class:CertStore2Test.MyCertStoreParameters
318 public Object clone() { method in class:CertStore2Test.MyOtherCertStoreParameters
329 public Object clone() { method in class:CertStore2Test.MyCRLSelector
339 public Object clone() { method in class:CertStore2Test.MyOtherCRLSelector
351 public Object clone() { method in class:CertStore2Test.MyCertSelector
362 public Object clone() { method in class:CertStore2Test.MyOtherCertSelector
/dalvik/libcore/text/src/main/java/java/text/
H A DBreakIterator.java458 * of the returned iterator, it is recommended to first create a clone of
521 public Object clone() { method in class:BreakIterator
523 BreakIterator cloned = (BreakIterator) super.clone();
524 cloned.wrapped = (com.ibm.icu4jni.text.BreakIterator) wrapped.clone();
H A DChoiceFormat.java193 public Object clone() { method in class:ChoiceFormat
194 ChoiceFormat clone = (ChoiceFormat) super.clone();
195 clone.choiceLimits = choiceLimits.clone();
196 clone.choiceFormats = choiceFormats.clone();
197 return clone;
H A DDateFormatSymbols.java162 public Object clone() { method in class:DateFormatSymbols
165 return super.clone();
259 return ampms.clone();
270 return eras.clone();
291 return months.clone();
302 return shortMonths.clone();
313 return shortWeekdays.clone();
324 return weekdays.clone();
386 ampms = data.clone();
398 eras = data.clone();
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java88 * Clone this OutputProperties, including a clone of the wrapped Properties
94 public Object clone() method in class:OutputProperties
99 OutputProperties cloned = (OutputProperties) super.clone();
101 cloned.m_properties = (Properties) cloned.m_properties.clone();
H A DTemplateSubPatternAssociation.java81 public Object clone() throws CloneNotSupportedException method in class:TemplateSubPatternAssociation
85 (TemplateSubPatternAssociation) super.clone();
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java311 * @return A clone of this iteration that has been reset.
318 * Get a clone of this iterator, but don't reset the iteration in the
321 * @return A clone of this object.
325 public Object clone() throws CloneNotSupportedException; method in interface:DTMIterator
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DIntVector.java409 * Returns clone of current IntVector
411 * @return clone of current IntVector
413 public Object clone() method in class:IntVector
H A DObjectVector.java422 * Returns clone of current ObjectVector
424 * @return clone of current ObjectVector
426 public Object clone() method in class:ObjectVector
/dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
H A DFilterExprWalker.java144 public Object clone() throws CloneNotSupportedException method in class:FilterExprWalker
147 FilterExprWalker clone = (FilterExprWalker) super.clone();
150 clone.m_exprObj = (XNodeSet) m_exprObj.clone();
152 return clone;
221 /** The result of executing m_expr. Needs to be deep cloned on clone op. */
H A DOneStepIterator.java135 public Object clone() throws CloneNotSupportedException method in class:OneStepIterator
139 OneStepIterator clone = (OneStepIterator) super.clone();
143 clone.m_iterator = m_iterator.cloneIterator();
145 return clone;
159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset();
160 clone.m_iterator = m_iterator;
162 return clone;
204 OneStepIterator clone = (OneStepIterator) this.clone();
[all...]
H A DUnionPathIterator.java275 * @return A clone of this iterator that holds the same node position.
279 public Object clone() throws CloneNotSupportedException method in class:UnionPathIterator
282 UnionPathIterator clone = (UnionPathIterator) super.clone();
287 clone.m_iterators = new DTMIterator[n];
291 clone.m_iterators[i] = (DTMIterator)m_iterators[i].clone();
295 return clone;
H A DWalkingIterator.java107 * @return A clone of this iterator that holds the same node position.
111 public Object clone() throws CloneNotSupportedException method in class:WalkingIterator
114 WalkingIterator clone = (WalkingIterator) super.clone();
116 // clone.m_varStackPos = this.m_varStackPos;
117 // clone.m_varStackContext = this.m_varStackContext;
120 clone.m_firstWalker = m_firstWalker.cloneDeep(clone, null);
123 return clone;
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
H A DDocumentBuilderTest.java121 public Object clone() throws CloneNotSupportedException { method in class:DocumentBuilderTest.MockDocumentBuilder
122 return super.clone();

Completed in 327 milliseconds

123456