Searched refs:clone (Results 1 - 25 of 1183) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreParameters.java35 public Object clone() { method in class:MyCertStoreParameters
37 return super.clone();
/external/clang/test/PCH/
H A Dcxx-exprs.cpp16 New *clone() { function in class:New
24 return n->clone();
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DReverseAxesWalker.java138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone();
140 clone.setRoot(this.getRoot());
142 clone.setPredicateCount(predicateIndex);
144 clone.setPrevWalker(null);
145 clone.setNextWalker(null);
146 wi().setLastUsedWalker(clone);
152 while (DTM.NULL != (next = clone.nextNode()))
201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone();
[all...]
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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java8 Object clone(); method in interface:Selector
/external/icu4c/common/
H A Dparsepos.cpp17 ParsePosition::clone() const { function in class:ParsePosition
/external/chromium/testing/gtest/samples/
H A Dsample2.cc43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
/external/gtest/samples/
H A Dsample2.cc43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
/external/protobuf/gtest/samples/
H A Dsample2.cc43 char * const clone = new char[ len + 1 ]; local
44 memcpy(clone, c_string, len + 1);
46 return clone;
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpEntityEnclosingRequestBase.java72 public Object clone() throws CloneNotSupportedException { method in class:HttpEntityEnclosingRequestBase
73 HttpEntityEnclosingRequestBase clone =
74 (HttpEntityEnclosingRequestBase) super.clone();
76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
78 return clone;
H A DHttpRequestBase.java171 public Object clone() throws CloneNotSupportedException { method in class:HttpRequestBase
172 HttpRequestBase clone = (HttpRequestBase) super.clone();
173 clone.abortLock = new ReentrantLock();
174 clone.aborted = false;
175 clone.releaseTrigger = null;
176 clone.connRequest = null;
177 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup);
178 clone
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie2.java94 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2
95 BasicClientCookie2 clone = (BasicClientCookie2) super.clone();
96 clone.ports = this.ports.clone();
97 return clone;
/external/jmdns/src/javax/jmdns/
H A DServiceEvent.java62 * @see java.lang.Object#clone()
65 public ServiceEvent clone() { method in class:ServiceEvent
67 return (ServiceEvent) super.clone();
69 // clone is supported
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java58 public Rectangle clone(){ method in class:Rectangle
60 return (Rectangle) super.clone();
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp29 T *clone(T *V1) { function in class:__anon9281::CloneInstruction
30 Value *V2 = V1->clone();
60 BinaryOperator *AddClone = this->clone(Add);
61 BinaryOperator *SubClone = this->clone(Sub);
62 BinaryOperator *MulClone = this->clone(Mul);
77 AddClone = this->clone(Add);
78 SubClone = this->clone(Sub);
79 MulClone = this->clone(Mul);
94 AddClone = this->clone(Add);
95 SubClone = this->clone(Su
[all...]
/external/mesa3d/src/glsl/
H A Dir_clone.cpp40 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_variable
60 var->constant_value = this->constant_value->clone(mem_ctx, ht);
70 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_swizzle
72 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
76 ir_return::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_return
81 new_value = this->value->clone(mem_ctx, ht);
87 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_discard
92 new_condition = this->condition->clone(mem_ctx, ht);
98 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop_jump
106 ir_if::clone(voi function in class:ir_if
124 ir_loop::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop
146 ir_call::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_call
162 ir_expression::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_expression
176 ir_dereference_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_variable
192 ir_dereference_array::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_array
200 ir_dereference_record::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_record
207 ir_texture::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_texture
243 ir_assignment::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_assignment
257 ir_function::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function
277 ir_function_signature::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function_signature
319 ir_constant::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_constant
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DAddressHeaderIms.java75 public Object clone() { method in class:AddressHeaderIms
76 AddressHeaderIms retval = (AddressHeaderIms) super.clone();
78 retval.address = (AddressImpl) this.address.clone();
/external/stlport/test/unit/
H A Dexception_test.cpp144 std::runtime_error clone("");
145 clone = e;
146 CPPUNIT_ASSERT(foo == clone.what() );
157 std::runtime_error clone("");
158 clone = e;
159 CPPUNIT_ASSERT(foo == clone.what() );
171 std::runtime_error clone("");
172 clone = e;
173 CPPUNIT_ASSERT(msg == clone.what() );
184 std::runtime_error clone("");
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodThreshold.java53 public LodThreshold clone(); method in interface:LodThreshold
H A DLodDistanceCalculatorFactory.java81 public LodDistanceCalculatorFactory clone() { method in class:LodDistanceCalculatorFactory
82 LodDistanceCalculatorFactory clone = new LodDistanceCalculatorFactory();
83 clone.lodThreshold = lodThreshold.clone();
84 clone.lodThresholdSize = lodThresholdSize;
85 return clone;
/external/nist-sip/java/javax/sip/address/
H A DURI.java9 Object clone(); method in interface:URI
/external/nist-sip/java/javax/sip/header/
H A DHeader.java8 Object clone(); method in interface:Header
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java131 BasicHttpParams clone = new BasicHttpParams();
132 copyParams(clone);
133 return clone;
136 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpParams
137 BasicHttpParams clone = (BasicHttpParams) super.clone();
138 copyParams(clone);
139 return clone;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DDefaultParticleInfluencer.java58 startVelocity = (Vector3f) ic.readSavable("startVelocity", Vector3f.ZERO.clone());
63 public ParticleInfluencer clone() { method in class:DefaultParticleInfluencer
65 DefaultParticleInfluencer clone = (DefaultParticleInfluencer) super.clone();
66 clone.startVelocity = startVelocity.clone();
67 return clone;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterBoxShape.java80 EmitterBoxShape clone = (EmitterBoxShape) super.clone();
81 clone.min = min.clone();
82 clone.len = len.clone();
83 return clone;

Completed in 473 milliseconds

1234567891011>>