Searched refs:clone (Results 1 - 25 of 1232) 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.cpp18 New *clone() { function in class:New
26 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/libvpx/libvpx/third_party/googletest/src/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/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;
H A DEmitterPointShape.java54 EmitterPointShape clone = (EmitterPointShape) super.clone();
55 clone.point = point.clone();
56 return clone;

Completed in 620 milliseconds

1234567891011>>