Searched refs:clone (Results 51 - 75 of 1562) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/client/methods/
H A DHttpRequestBase.java176 public Object clone() throws CloneNotSupportedException { method in class:HttpRequestBase
177 HttpRequestBase clone = (HttpRequestBase) super.clone();
178 clone.abortLock = new ReentrantLock();
179 clone.aborted = false;
180 clone.releaseTrigger = null;
181 clone.connRequest = null;
182 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup);
183 clone
[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/apache-xml/src/main/java/org/apache/xpath/axes/
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/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.java136 BasicHttpParams clone = new BasicHttpParams();
137 copyParams(clone);
138 return clone;
141 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpParams
142 BasicHttpParams clone = (BasicHttpParams) super.clone();
143 copyParams(clone);
144 return clone;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DFieldData.java191 public final FieldData clone() { method in class:FieldData
192 FieldData clone = new FieldData();
194 clone.cachedExtension = cachedExtension;
196 clone.unknownFieldData = null;
198 clone.unknownFieldData.addAll(unknownFieldData);
201 // Whether we need to deep clone value depends on its type. Primitive reference types
202 // (e.g. Integer, Long etc.) are ok, since they're immutable. We need to clone arrays
207 clone.value = ((MessageNano) value).clone();
209 clone
[all...]
/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;
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java137 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
143 FileEntry clone = new FileEntry(path);
144 clone.setLastModified(getLastModified());
145 clone.setOwner(getOwner());
146 clone.setGroup(getGroup());
147 clone.setPermissions(getPermissions());
148 clone.setContents(getCurrentBytes());
149 return clone;
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java137 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
143 FileEntry clone = new FileEntry(path);
144 clone.setLastModified(getLastModified());
145 clone.setOwner(getOwner());
146 clone.setGroup(getGroup());
147 clone.setPermissions(getPermissions());
148 clone.setContents(bytes);
149 return clone;
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java138 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
144 FileEntry clone = new FileEntry(path);
145 clone.setLastModified(getLastModified());
146 clone.setOwner(getOwner());
147 clone.setGroup(getGroup());
148 clone.setPermissions(getPermissions());
149 clone.setContents(bytes);
150 return clone;
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java137 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
143 FileEntry clone = new FileEntry(path);
144 clone.setLastModified(getLastModified());
145 clone.setOwner(getOwner());
146 clone.setGroup(getGroup());
147 clone.setPermissions(getPermissions());
148 clone.setContents(bytes);
149 return clone;
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java141 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
147 FileEntry clone = new FileEntry(path);
148 clone.setLastModified(getLastModified());
149 clone.setOwner(getOwner());
150 clone.setGroup(getGroup());
151 clone.setPermissions(getPermissions());
152 clone.setContents(getCurrentBytes());
153 return clone;
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketFactoryImpl.java41 this.sslParameters = (SSLParametersImpl) sslParameters.clone();
57 return new OpenSSLServerSocketImpl((SSLParametersImpl) sslParameters.clone());
62 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone());
70 (SSLParametersImpl) sslParameters.clone());
80 (SSLParametersImpl) sslParameters.clone());
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DSharedObject.java20 * Java subclasses are mutable and must implement clone().
30 * public clone() { ... }
42 * // If there are multiple owners, then s is replaced with a clone,
47 * public U clone() {
49 * c.s = s.clone();
60 * // If there are multiple owners, then s is replaced with a clone,
64 * S ownedS = s.clone();
71 * public U clone() {
109 public Reference<T> clone() { method in class:SharedObject.Reference
112 c = (Reference<T>)super.clone();
161 public SharedObject clone() { method in class:SharedObject
[all...]

Completed in 1913 milliseconds

1234567891011>>