Searched refs:clone (Results 226 - 250 of 1562) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAlertInfo.java119 public Object clone() { method in class:AlertInfo
120 AlertInfo retval = (AlertInfo) super.clone();
122 retval.uri = (GenericURI) this.uri.clone();
H A DCallID.java141 public Object clone() { method in class:CallID
142 CallID retval = (CallID) super.clone();
144 retval.callIdentifier = (CallIdentifier) this.callIdentifier.clone();
H A DCallInfo.java117 public Object clone() { method in class:CallInfo
118 CallInfo retval = (CallInfo) super.clone();
120 retval.info = (GenericURI) this.info.clone();
H A DCredentials.java129 public Object clone() { method in class:Credentials
130 Credentials retval = (Credentials) super.clone();
132 retval.parameters = (NameValueList) this.parameters.clone();
H A DErrorInfo.java133 public Object clone() { method in class:ErrorInfo
134 ErrorInfo retval = (ErrorInfo) super.clone();
136 retval.errorInfo = (GenericURI) this.errorInfo.clone();
/external/protobuf/python/google/protobuf/
H A Dmessage.py71 clone = type(self)()
72 clone.MergeFrom(self)
73 return clone
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLightList.java204 tlist = list.clone();
291 public LightList clone(){ method in class:LightList
293 LightList clone = (LightList) super.clone();
295 clone.owner = null;
296 clone.list = list.clone();
297 clone.distToOwner = distToOwner.clone();
298 clone
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DLodControl.java136 LodControl clone = (LodControl) super.clone();
137 clone.lastDistance = 0;
138 clone.lastLevel = 0;
139 clone.numTris = numTris != null ? numTris.clone() : null;
140 return clone;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DFieldArray.java278 public final FieldArray clone() { method in class:FieldArray
281 FieldArray clone = new FieldArray(size);
282 System.arraycopy(mFieldNumbers, 0, clone.mFieldNumbers, 0, size);
285 clone.mData[i] = mData[i].clone();
288 clone.mSize = size;
289 return clone;
/external/mesa3d/src/mesa/program/
H A Dprogram.c489 struct gl_program *clone; local
491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id);
492 if (!clone)
495 assert(clone->Target == prog->Target);
496 assert(clone->RefCount == 1);
498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String);
499 clone->Format = prog->Format;
500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions);
501 if (!clone->Instructions) {
502 _mesa_reference_program(ctx, &clone, NUL
[all...]
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp37 T *clone(T *V1) { function in class:__anon11329::CloneInstruction
38 Value *V2 = V1->clone();
68 BinaryOperator *AddClone = this->clone(Add);
69 BinaryOperator *SubClone = this->clone(Sub);
70 BinaryOperator *MulClone = this->clone(Mul);
85 AddClone = this->clone(Add);
86 SubClone = this->clone(Sub);
87 MulClone = this->clone(Mul);
102 AddClone = this->clone(Add);
103 SubClone = this->clone(Su
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DPKIXCertPathBuilderResultTest.java205 PKIXCertPathBuilderResult clone = (PKIXCertPathBuilderResult) init
206 .clone();
207 assertSame(init.getCertPath(), clone.getCertPath());
208 assertSame(init.getPolicyTree(), clone.getPolicyTree());
209 assertSame(init.getPublicKey(), clone.getPublicKey());
210 assertSame(init.getTrustAnchor(), clone.getTrustAnchor());
/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 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/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Enumerated.java151 return new ASN1Enumerated(Arrays.clone(enc));
162 return new ASN1Enumerated(Arrays.clone(enc));
169 possibleMatch = cache[value] = new ASN1Enumerated(Arrays.clone(enc));
H A DASN1Integer.java90 ASN1Integer(byte[] bytes, boolean clone) argument
92 this.bytes = (clone) ? Arrays.clone(bytes) : bytes;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp13 virtual invoker_base* clone() = 0;
21 functor_invoker* clone() { return new functor_invoker(f); } function in class:functor_invoker
34 invoker = other.invoker->clone();
/external/emma/core/java12/com/vladium/jcd/cls/
H A DFieldCollection.java63 public Object clone () method in class:FieldCollection
67 final FieldCollection _clone = (FieldCollection) super.clone ();
69 // deep clone:
74 _clone.m_fields.add (((Field_info) m_fields.get (f)).clone ());
H A DField_info.java153 public Object clone () method in class:Field_info
157 final Field_info _clone = (Field_info) super.clone ();
160 _clone.m_attributes = (IAttributeCollection) m_attributes.clone ();
H A DMethodCollection.java63 public Object clone () method in class:MethodCollection
67 final MethodCollection _clone = (MethodCollection) super.clone ();
69 // deep clone:
74 _clone.m_methods.add (((Method_info) m_methods.get (m)).clone ());
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DInnerClassesAttribute_info.java102 public Object clone () method in class:InnerClassesAttribute_info
104 final InnerClassesAttribute_info _clone = (InnerClassesAttribute_info) super.clone ();
113 _clone.m_classes.add (((InnerClass_info) classes.get (e)).clone ());
H A DLineNumberTableAttribute_info.java129 public Object clone () method in class:LineNumberTableAttribute_info
131 final LineNumberTableAttribute_info _clone = (LineNumberTableAttribute_info) super.clone ();
138 _clone.m_lines.add (((LineNumber_info) m_lines.get (e)).clone ());
/external/emma/core/java12/com/vladium/util/
H A DIntVector.java72 public Object clone () method in class:IntVector
76 final IntVector _clone = (IntVector) super.clone ();
78 // deep clone:
87 _clone.m_values = (int []) m_values.clone ();
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DComparatorDelegationOverheadBenchmark.java53 Integer[] copy = inputArrays[i & 0xFF].clone();
63 Integer[] copy = inputArrays[i & 0xFF].clone();
80 Integer[] copy = inputArrays[i & 0xFF].clone();
/external/icu/icu4c/source/i18n/
H A Dfuncrepl.cpp45 translit = other.translit->clone();
46 replacer = other.replacer->clone();
60 UnicodeFunctor* FunctionReplacer::clone() const { function in class:FunctionReplacer

Completed in 768 milliseconds

1234567891011>>