Searched defs:clone (Results 376 - 400 of 842) sorted by relevance

<<11121314151617181920>>

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipelinedMsgParser.java154 protected Object clone() { method in class:PipelinedMsgParser
/external/nist-sip/java/javax/sip/address/
H A DAddress.java25 Object clone(); method in interface:Address
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DMessageLite.java164 * working with the builder after calling {@code build()}, {@code clone()}
179 * {@code buildPartial()}, {@code clone()} it first.
185 * @see Object#clone()
187 Builder clone(); method in interface:MessageLite.Builder
/external/replicaisland/src/com/replica/replicaisland/
H A DInputXY.java89 public void clone(InputXY other) { method in class:InputXY
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseBooleanArray.java76 public SparseBooleanArray clone() { method in class:ShadowSparseBooleanArray
77 SparseBooleanArray clone = new SparseBooleanArray();
79 clone.put(keyAt(i), valueAt(i));
81 return clone;
/external/srec/shared/src/
H A DInt8ArrayListImpl.c47 impl->Interface.clone = &Int8ArrayList_Clone;
185 ESR_ReturnCode Int8ArrayList_Clone(Int8ArrayList* self, Int8ArrayList* clone) argument
191 CHK(rc, clone->removeAll(clone));
196 CHK(rc, clone->add(clone, element));
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-tree-3.3.jar ... abstract org.objectweb.asm.tree.AbstractInsnNode clone (java.util.Map) static org.objectweb. ...
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertPathValidator1Test.java410 public Object clone() { method in class:invalidParams
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java82 * This constructor does <i>not</i> clone the proxy chain array,
441 // default implementation of clone() is sufficient
443 public Object clone() throws CloneNotSupportedException { method in class:HttpRoute
444 return super.clone();
H A DRouteTracker.java437 // default implementation of clone() is sufficient
439 public Object clone() throws CloneNotSupportedException { method in class:RouteTracker
440 return super.clone();
/external/apache-http/src/org/apache/http/protocol/
H A DBasicHttpProcessor.java331 BasicHttpProcessor clone = new BasicHttpProcessor();
332 copyInterceptors(clone);
333 return clone;
336 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpProcessor
337 BasicHttpProcessor clone = (BasicHttpProcessor) super.clone();
338 copyInterceptors(clone);
339 return clone;
/external/apache-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();
/external/apache-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
/external/apache-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
/external/apache-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;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateHolder.java103 .clone(objectDigest)));
262 public Object clone() method in class:AttributeCertificateHolder
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java129 public Object clone() method in class:PKIXPolicyNode
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java439 public static byte[] clone(byte[] data) method in class:Arrays
452 public static byte[] clone(byte[] data, byte[] existing) method in class:Arrays
460 return clone(data);
466 public static byte[][] clone(byte[][] data) method in class:Arrays
477 copy[i] = clone(data[i]);
483 public static byte[][][] clone(byte[][][] data) method in class:Arrays
494 copy[i] = clone(data[i]);
500 public static int[] clone(int[] data) method in class:Arrays
513 public static long[] clone(long[] data) method in class:Arrays
526 public static long[] clone(lon method in class:Arrays
540 public static short[] clone(short[] data) method in class:Arrays
553 public static BigInteger[] clone(BigInteger[] data) method in class:Arrays
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateHolder.java130 .clone(objectDigest)));
322 public Object clone() method in class:AttributeCertificateHolder
H A DX509CRLStoreSelector.java228 public Object clone() method in class:X509CRLStoreSelector
236 sel.issuingDistributionPoint = Arrays.clone(issuingDistributionPoint);
305 return Arrays.clone(issuingDistributionPoint);
328 this.issuingDistributionPoint = Arrays.clone(issuingDistributionPoint);

Completed in 544 milliseconds

<<11121314151617181920>>