/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/ |
LodDistanceCalculatorFactory.java | 81 public LodDistanceCalculatorFactory clone() { method in class:LodDistanceCalculatorFactory 82 LodDistanceCalculatorFactory clone = new LodDistanceCalculatorFactory(); local 83 clone.lodThreshold = lodThreshold.clone(); 84 clone.lodThresholdSize = lodThresholdSize; 85 return clone;
|
/external/srec/portable/src/ |
PFileSystem.c | 445 LCHAR clone[P_PATH_MAX]; local 455 LSTRCPY(clone, path); 456 lstrtrim(clone); 458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2)); 461 lastSlash = LSTRRCHR(clone, L('/')); 468 else if (lastSlash < clone + LSTRLEN(clone) - 1) 472 if (LSTRLEN(clone) > *len) 474 *len = LSTRLEN(clone); 478 LSTRCPY(path, clone); [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSocketFactoryImpl.java | 60 return new OpenSSLSocketImpl((SSLParametersImpl) sslParameters.clone()); 64 return new OpenSSLSocketImpl(host, port, (SSLParametersImpl) sslParameters.clone()); 73 (SSLParametersImpl) sslParameters.clone()); 77 return new OpenSSLSocketImpl(host, port, (SSLParametersImpl) sslParameters.clone()); 89 (SSLParametersImpl) sslParameters.clone()); 98 (SSLParametersImpl) sslParameters.clone());
|
SSLServerSocketFactoryImpl.java | 53 this.sslParameters = (SSLParametersImpl) sslParameters.clone(); 87 return new SSLServerSocketImpl((SSLParametersImpl) sslParameters.clone()); 100 (SSLParametersImpl) sslParameters.clone()); 113 (SSLParametersImpl) sslParameters.clone()); 126 (SSLParametersImpl) sslParameters.clone());
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
ClonerToResultTree.java | 31 * Class used to clone a node, possibly including its children to 39 // * Clone an element with or without children. 40 // * TODO: Fix or figure out node clone failure! 43 // * @param node The node to clone 45 // * clone children attributes 67 // // Can't clone a document, but refrain from throwing an error 122 * Clone an element with or without children. 123 * TODO: Fix or figure out node clone failure! 126 * @param node The node to clone 128 * clone children attribute [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
AxesWalker.java | 87 public Object clone() throws CloneNotSupportedException method in class:AxesWalker 91 AxesWalker clone = (AxesWalker) super.clone(); local 93 //clone.setCurrentNode(clone.m_root); 95 // clone.m_isFresh = true; 97 return clone; 101 * Do a deep clone of this walker, including next and previous walkers. 102 * If the this AxesWalker is on the clone list, don't clone but 116 AxesWalker clone = findClone(this, cloneList); local [all...] |
/external/iptables/extensions/ |
libxt_TEE.man | 1 The \fBTEE\fP target will clone a packet and redirect this clone to another
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/ |
EmptyParticleInfluencer.java | 48 public ParticleInfluencer clone() { method in class:EmptyParticleInfluencer 50 return (ParticleInfluencer) super.clone();
|
/external/icu4c/test/perf/usetperf/ |
bitset.h | 14 * A simple, limited clone of the java.util.BitSet.
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
MaterialKey.java | 27 return mat.clone();
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
EOF.java | 23 public Object clone() method in class:EOF
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
clone_test.S | 22 clone: label 23 mov $56,%rax # clone syscall 25 # Note, clone syscall is different than the glibc implementation 27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
clone_test.S | 22 clone: label 23 mov $120,%eax # clone syscall 25 # Note, clone syscall is different than the glibc implementation 27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
|
/libcore/luni/src/main/java/java/net/ |
PasswordAuthentication.java | 43 this.password = password.clone(); 47 * Gets a clone of the password stored by this instance. The user is 48 * responsible to finalize the returned array if the password clone is no 54 return password.clone();
|
/external/apache-http/src/org/apache/http/client/methods/ |
HttpRequestBase.java | 171 public Object clone() throws CloneNotSupportedException { method in class:HttpRequestBase 172 HttpRequestBase clone = (HttpRequestBase) super.clone(); local 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.params = (HttpParams) CloneUtils.clone(this.params) [all...] |
HttpEntityEnclosingRequestBase.java | 72 public Object clone() throws CloneNotSupportedException { method in class:HttpEntityEnclosingRequestBase 73 HttpEntityEnclosingRequestBase clone = local 74 (HttpEntityEnclosingRequestBase) super.clone(); 76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity); 78 return clone;
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
PoseTrack.java | 64 * This method creates a clone of the current object. 65 * @return a clone of the current object 68 public PoseFrame clone() { method in class:PoseTrack.PoseFrame 70 PoseFrame result = (PoseFrame) super.clone(); 71 result.weights = this.weights.clone(); 75 result.poses[i] = this.poses[i].clone(); 151 * This method creates a clone of the current object. 152 * @return a clone of the current object 155 public PoseTrack clone() { method in class:PoseTrack 157 PoseTrack result = (PoseTrack) super.clone(); [all...] |
Pose.java | 92 * This method creates a clone of the current object. 93 * @return a clone of the current object 95 public Pose clone() { method in class:Pose 97 Pose result = (Pose) super.clone(); 98 result.indices = this.indices.clone(); 102 result.offsets[i] = this.offsets[i].clone();
|
/external/qemu/distrib/ |
make-distrib.sh | 24 # clone the current source tree to $TMPDIR/qemu 27 cd $TMPDIR && git clone file://$TOPDIR $QEMUDIR && rm -rf $QEMUDIR/.git 29 echo "Could not clone sources"
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterPointShape.java | 54 EmitterPointShape clone = (EmitterPointShape) super.clone(); local 55 clone.point = point.clone(); 56 return clone;
|
EmitterBoxShape.java | 80 EmitterBoxShape clone = (EmitterBoxShape) super.clone(); local 81 clone.min = min.clone(); 82 clone.len = len.clone(); 83 return clone;
|
/external/qemu/android/skin/ |
image.h | 77 /* create a skin image clone. the clone is not part of the cache and will 79 * if you need to modify the content of the clone (e.g. blending) 83 /* create a skin image clone, the clone is a rotated version of a source image 89 /* apply blending to a source skin image and copy the result to a target clone image */ 90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldObjectTest.java | 44 assertFalse(mco.equals(mco.clone())); 45 assertEquals(mco.getClass(), mco.clone().getClass()); 52 mo.clone(); 60 public Object clone() throws CloneNotSupportedException { method in class:OldObjectTest.MockCloneableObject 61 return super.clone(); 74 public Object clone() throws CloneNotSupportedException { method in class:OldObjectTest.MockObject 75 return super.clone();
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
MirrorModifier.java | 103 Mesh clone = mesh.deepClone();
local 109 FloatBuffer clonePosition = clone.getFloatBuffer(Type.Position);
110 FloatBuffer cloneBindPosePosition = clone.getFloatBuffer(Type.BindPosePosition);
111 FloatBuffer cloneNormals = clone.getFloatBuffer(Type.Normal);
112 FloatBuffer cloneBindPoseNormals = clone.getFloatBuffer(Type.BindPoseNormal);
113 IntBuffer cloneIndexes = (IntBuffer) clone.getBuffer(Type.Index).getData();
132 //modifying clone indexes
142 FloatBuffer cloneUVs = (FloatBuffer) clone.getBuffer(Type.TexCoord).getData();
148 FloatBuffer cloneUVs = (FloatBuffer) clone.getBuffer(Type.TexCoord).getData();
154 Geometry geometry = new Geometry(null, clone);
[all...] |
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicClientCookie2.java | 94 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2 95 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); local 96 clone.ports = this.ports.clone(); 97 return clone;
|