/external/mesa3d/src/glsl/ |
D | ir_clone.cpp | 40 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable 60 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone() 70 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle 72 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone() 76 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return 81 new_value = this->value->clone(mem_ctx, ht); in clone() 87 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard 92 new_condition = this->condition->clone(mem_ctx, ht); in clone() 98 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_loop_jump 106 ir_if::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_if [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | ReverseAxesWalker.java | 138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getProximityPosition() local 140 clone.setRoot(this.getRoot()); in getProximityPosition() 142 clone.setPredicateCount(predicateIndex); in getProximityPosition() 144 clone.setPrevWalker(null); in getProximityPosition() 145 clone.setNextWalker(null); in getProximityPosition() 146 wi().setLastUsedWalker(clone); in getProximityPosition() 152 while (DTM.NULL != (next = clone.nextNode())) in getProximityPosition() 201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getLastPos() local 203 clone.setRoot(this.getRoot()); in getLastPos() 205 clone.setPredicateCount(m_predicateIndex); in getLastPos() [all …]
|
D | OneStepIterator.java | 135 public Object clone() throws CloneNotSupportedException in clone() method in OneStepIterator 139 OneStepIterator clone = (OneStepIterator) super.clone(); in clone() local 143 clone.m_iterator = m_iterator.cloneIterator(); in clone() 145 return clone; in clone() 159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset(); in cloneWithReset() local 160 clone.m_iterator = m_iterator; in cloneWithReset() 162 return clone; in cloneWithReset() 204 OneStepIterator clone = (OneStepIterator) this.clone(); in getProximityPosition() local 208 clone.setRoot(root, xctxt); in getProximityPosition() 211 clone.m_predCount = predicateIndex; in getProximityPosition() [all …]
|
D | AxesWalker.java | 87 public Object clone() throws CloneNotSupportedException in clone() method in AxesWalker 91 AxesWalker clone = (AxesWalker) super.clone(); in clone() local 97 return clone; in clone() 116 AxesWalker clone = findClone(this, cloneList); in cloneDeep() local 117 if(null != clone) in cloneDeep() 118 return clone; in cloneDeep() 119 clone = (AxesWalker)this.clone(); in cloneDeep() 120 clone.setLocPathIterator(cloneOwner); in cloneDeep() 124 cloneList.addElement(clone); in cloneDeep() 128 cloneOwner.m_lastUsedWalker = clone; in cloneDeep() [all …]
|
D | LocPathIterator.java | 236 LocPathIterator clone = (LocPathIterator)m_clones.getInstance(); in executeCharsToContentHandler() local 239 clone.setRoot(current, xctxt); in executeCharsToContentHandler() 241 int node = clone.nextNode(); in executeCharsToContentHandler() 242 DTM dtm = clone.getDTM(node); in executeCharsToContentHandler() 243 clone.detach(); in executeCharsToContentHandler() 531 LocPathIterator clone; in getLength() local 535 clone = (LocPathIterator) clone(); in getLength() 548 clone.m_predCount = m_predicateIndex; in getLength() 556 while (DTM.NULL != (next = clone.nextNode())) in getLength() 713 LocPathIterator clone; in cloneWithReset() local [all …]
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 28 T *clone(T *V1) { in clone() function in __anon53220e3a0111::CloneInstruction 29 Value *V2 = V1->clone(); in clone() 60 BinaryOperator *AddClone = this->clone(Add); in TEST_F() 61 BinaryOperator *SubClone = this->clone(Sub); in TEST_F() 62 BinaryOperator *MulClone = this->clone(Mul); in TEST_F() 77 AddClone = this->clone(Add); in TEST_F() 78 SubClone = this->clone(Sub); in TEST_F() 79 MulClone = this->clone(Mul); in TEST_F() 94 AddClone = this->clone(Add); in TEST_F() 95 SubClone = this->clone(Sub); in TEST_F() [all …]
|
/external/stlport/test/unit/ |
D | exception_test.cpp | 144 std::runtime_error clone(""); in exception_emission() local 145 clone = e; in exception_emission() 146 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission() 157 std::runtime_error clone(""); in exception_emission() local 158 clone = e; in exception_emission() 159 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission() 171 std::runtime_error clone(""); in exception_emission() local 172 clone = e; in exception_emission() 173 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission() 184 std::runtime_error clone(""); in exception_emission() local [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | JDKMessageDigest.java | 61 public Object clone() in clone() method in JDKMessageDigest.SHA1 64 SHA1 d = (SHA1)super.clone(); in clone() 101 public Object clone() in clone() method in JDKMessageDigest.SHA256 104 SHA256 d = (SHA256)super.clone(); in clone() 120 public Object clone() in clone() method in JDKMessageDigest.SHA384 123 SHA384 d = (SHA384)super.clone(); in clone() 139 public Object clone() in clone() method in JDKMessageDigest.SHA512 142 SHA512 d = (SHA512)super.clone(); in clone() 198 public Object clone() in clone() method in JDKMessageDigest.MD5 201 MD5 d = (MD5)super.clone(); in clone()
|
/external/apache-http/src/org/apache/http/client/methods/ |
D | HttpRequestBase.java | 171 public Object clone() throws CloneNotSupportedException { in clone() method in HttpRequestBase 172 HttpRequestBase clone = (HttpRequestBase) super.clone(); in clone() local 173 clone.abortLock = new ReentrantLock(); in clone() 174 clone.aborted = false; in clone() 175 clone.releaseTrigger = null; in clone() 176 clone.connRequest = null; in clone() 177 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup); in clone() 178 clone.params = (HttpParams) CloneUtils.clone(this.params); in clone() 179 return clone; in clone()
|
D | HttpEntityEnclosingRequestBase.java | 72 public Object clone() throws CloneNotSupportedException { in clone() method in HttpEntityEnclosingRequestBase 73 HttpEntityEnclosingRequestBase clone = in clone() local 74 (HttpEntityEnclosingRequestBase) super.clone(); in clone() 76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity); in clone() 78 return clone; in clone()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
D | Mesh.java | 199 public Mesh clone() { in clone() method in Mesh 201 Mesh clone = (Mesh) super.clone(); in clone() local 202 clone.meshBound = meshBound.clone(); in clone() 203 clone.collisionTree = collisionTree != null ? collisionTree : null; in clone() 204 clone.buffers = buffers.clone(); in clone() 205 clone.buffersList = new SafeArrayList<VertexBuffer>(VertexBuffer.class,buffersList); in clone() 206 clone.vertexArrayID = -1; in clone() 208 clone.elementLengths = elementLengths.clone(); in clone() 211 clone.modeStart = modeStart.clone(); in clone() 213 return clone; in clone() [all …]
|
D | Spatial.java | 1118 public Spatial clone(boolean cloneMaterial) { in clone() method in Spatial 1120 Spatial clone = (Spatial) super.clone(); in clone() local 1122 clone.worldBound = worldBound.clone(); in clone() 1124 clone.worldLights = worldLights.clone(); in clone() 1125 clone.localLights = localLights.clone(); in clone() 1128 clone.localLights.setOwner(clone); in clone() 1129 clone.worldLights.setOwner(clone); in clone() 1134 clone.worldTransform = worldTransform.clone(); in clone() 1135 clone.localTransform = localTransform.clone(); in clone() 1137 if (clone instanceof Node) { in clone() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | NamespaceMappings.java | 331 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings 332 NamespaceMappings clone = new NamespaceMappings(); in clone() local 333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone(); in clone() 334 clone.count = this.count; in clone() 335 clone.m_namespaces = (Hashtable) m_namespaces.clone(); in clone() 337 clone.count = count; in clone() 338 return clone; in clone() 379 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings.Stack 380 NamespaceMappings.Stack clone = new NamespaceMappings.Stack(); in clone() local 381 clone.max = this.max; in clone() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/ |
D | ParticleEmitter.java | 153 public ParticleEmitter clone() { in clone() method in ParticleEmitter 154 return clone(true); in clone() 158 public ParticleEmitter clone(boolean cloneMaterial) { in clone() method in ParticleEmitter 159 ParticleEmitter clone = (ParticleEmitter) super.clone(cloneMaterial); in clone() local 160 clone.shape = shape.deepClone(); in clone() 163 clone.setNumParticles(particles.length); in clone() 165 clone.faceNormal = faceNormal.clone(); in clone() 166 clone.startColor = startColor.clone(); in clone() 167 clone.endColor = endColor.clone(); in clone() 168 clone.particleInfluencer = particleInfluencer.clone(); in clone() [all …]
|
/external/srec/portable/src/ |
D | PFileSystem.c | 445 LCHAR clone[P_PATH_MAX]; in PFileSystemGetParentDirectory() local 455 LSTRCPY(clone, path); in PFileSystemGetParentDirectory() 456 lstrtrim(clone); in PFileSystemGetParentDirectory() 458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2)); in PFileSystemGetParentDirectory() 461 lastSlash = LSTRRCHR(clone, L('/')); in PFileSystemGetParentDirectory() 468 else if (lastSlash < clone + LSTRLEN(clone) - 1) in PFileSystemGetParentDirectory() 472 if (LSTRLEN(clone) > *len) in PFileSystemGetParentDirectory() 474 *len = LSTRLEN(clone); in PFileSystemGetParentDirectory() 478 LSTRCPY(path, clone); in PFileSystemGetParentDirectory() 484 if (lastSlash -clone + 2 == 3 && LSTRNCMP(clone, L("../"), 3) == 0) in PFileSystemGetParentDirectory() [all …]
|
/external/apache-http/src/org/apache/http/params/ |
D | BasicHttpParams.java | 131 BasicHttpParams clone = new BasicHttpParams(); in copy() local 132 copyParams(clone); in copy() 133 return clone; in copy() 136 public Object clone() throws CloneNotSupportedException { in clone() method in BasicHttpParams 137 BasicHttpParams clone = (BasicHttpParams) super.clone(); in clone() local 138 copyParams(clone); in clone() 139 return clone; in clone()
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | SIPRequest.java | 480 public Object clone() { in clone() method in SIPRequest 481 SIPRequest retval = (SIPRequest) super.clone(); in clone() 486 retval.requestLine = (RequestLine) this.requestLine.clone(); in clone() 713 newResponse.attachHeader((SIPHeader) nextHeader.clone(), false); in createResponse() 775 cancel.setRequestLine((RequestLine) this.requestLine.clone()); in createCancelRequest() 777 cancel.setHeader((Header) this.callIdHeader.clone()); in createCancelRequest() 778 cancel.setHeader((Header) this.toHeader.clone()); in createCancelRequest() 779 cancel.setHeader((Header) cSeqHeader.clone()); in createCancelRequest() 785 cancel.setHeader((Header) this.fromHeader.clone()); in createCancelRequest() 787 cancel.addFirst((Header) this.getTopmostVia().clone()); in createCancelRequest() [all …]
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
D | BasicClientCookie2.java | 94 public Object clone() throws CloneNotSupportedException { in clone() method in BasicClientCookie2 95 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); in clone() local 96 clone.ports = this.ports.clone(); in clone() 97 return clone; in clone()
|
/external/webkit/LayoutTests/dom/html/level2/events/ |
D | selfhtml.js | 379 var clone = null; 384 clone = doc.createElement(srcNode.nodeName.toLowerCase()); 388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue); 394 clone.appendChild(cloneChild); 401 clone = doc.createTextNode(srcNode.nodeValue); 405 clone = doc.createCDATASection(srcNode.nodeValue); 409 clone = doc.createProcessingInstruction(srcNode.nodeValue); 413 clone = doc.createComment(srcNode.nodeValue); 416 return clone; 432 var clone = null; [all …]
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
D | selfhtml.js | 379 var clone = null; 384 clone = doc.createElement(srcNode.nodeName.toLowerCase()); 388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue); 394 clone.appendChild(cloneChild); 401 clone = doc.createTextNode(srcNode.nodeValue); 405 clone = doc.createCDATASection(srcNode.nodeValue); 409 clone = doc.createProcessingInstruction(srcNode.nodeValue); 413 clone = doc.createComment(srcNode.nodeValue); 416 return clone; 432 var clone = null; [all …]
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
D | selfhtml.js | 379 var clone = null; 384 clone = doc.createElement(srcNode.nodeName.toLowerCase()); 388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue); 394 clone.appendChild(cloneChild); 401 clone = doc.createTextNode(srcNode.nodeValue); 405 clone = doc.createCDATASection(srcNode.nodeValue); 409 clone = doc.createProcessingInstruction(srcNode.nodeValue); 413 clone = doc.createComment(srcNode.nodeValue); 416 return clone; 432 var clone = null; [all …]
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
D | selfhtml.js | 379 var clone = null; 384 clone = doc.createElement(srcNode.nodeName.toLowerCase()); 388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue); 394 clone.appendChild(cloneChild); 401 clone = doc.createTextNode(srcNode.nodeValue); 405 clone = doc.createCDATASection(srcNode.nodeValue); 409 clone = doc.createProcessingInstruction(srcNode.nodeValue); 413 clone = doc.createComment(srcNode.nodeValue); 416 return clone; 432 var clone = null; [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
D | BoundingVolume.java | 189 public abstract BoundingVolume clone(BoundingVolume store); in clone() method in BoundingVolume 310 public BoundingVolume clone() { in clone() method in BoundingVolume 312 BoundingVolume clone = (BoundingVolume) super.clone(); in clone() local 313 clone.center = center.clone(); in clone() 314 return clone; in clone() 325 center = (Vector3f) e.getCapsule(this).readSavable("center", Vector3f.ZERO.clone()); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Rectangle.java | 180 a = (Vector3f) capsule.readSavable("a", Vector3f.ZERO.clone()); in read() 181 b = (Vector3f) capsule.readSavable("b", Vector3f.ZERO.clone()); in read() 182 c = (Vector3f) capsule.readSavable("c", Vector3f.ZERO.clone()); in read() 186 public Rectangle clone() { in clone() method in Rectangle 188 Rectangle r = (Rectangle) super.clone(); in clone() 189 r.a = a.clone(); in clone() 190 r.b = b.clone(); in clone() 191 r.c = c.clone(); in clone()
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
D | selfxhtml.js | 387 var clone = null; 392 clone = doc.createElementNS(srcNode.namespaceURI, srcNode.nodeName); 396 clone.setAttributeNS(srcAttr.namespaceURI, srcAttr.nodeName, srcAttr.nodeValue); 402 clone.appendChild(cloneChild); 409 clone = doc.createTextNode(srcNode.nodeValue); 413 clone = doc.createCDATASection(srcNode.nodeValue); 417 clone = doc.createEntityReference(srcNode.nodeName); 421 clone = doc.createProcessingInstruction(srcNode.target, srcNode.data); 425 clone = doc.createComment(srcNode.nodeValue); 428 return clone; [all …]
|