/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Line.java | 224 origin = (Vector3f) capsule.readSavable("origin", Vector3f.ZERO.clone());
225 direction = (Vector3f) capsule.readSavable("direction", Vector3f.ZERO.clone());
229 public Line clone() {
method in class:Line 231 Line line = (Line) super.clone();
232 line.direction = direction.clone();
233 line.origin = origin.clone();
|
/external/mesa3d/src/glsl/ |
link_functions.cpp | 123 /* Create an in-place clone of the function definition. This multistep 126 * The clone of the parameter list is used to prime the hashtable used 142 ir_instruction *copy = original->clone(linked, ht); 151 ir_instruction *copy = original->clone(linked, ht); 178 /* Clone the ir_variable that the dereference already has and add 181 var = ir->var->clone(linked, NULL);
|
/external/srec/shared/src/ |
HashMapImpl.c | 89 /* Not found, clone the key and insert it. */ 90 LCHAR *clone = (LCHAR *) MALLOC(sizeof(LCHAR) * (LSTRLEN(key) + 1), MTAG); local 91 if (clone == NULL) return ESR_OUT_OF_MEMORY; 92 LSTRCPY(clone, key); 93 if ((rc = PHashTablePutValue(impl->table, clone, value, NULL)) != ESR_SUCCESS) 95 FREE(clone);
|
/external/webkit/Source/WebCore/editing/ |
BreakBlockquoteCommand.cpp | 133 // Insert a clone of the top blockquote after the break. 137 // Clone startNode's ancestors into the cloned blockquote. 139 // that was cloned (i.e. the clone of either ancestors.last() 170 // Throughout this loop, clonedParent is the clone of ancestor's parent. 171 // This is so we can clone ancestor's siblings and place the clones 172 // into the clone corresponding to the ancestor's parent.
|
/libcore/luni/src/test/java/tests/api/java/util/ |
HashSetTest.java | 119 Set orgSet = (Set) hs.clone(); 128 * java.util.HashSet#clone() 131 // Test for method java.lang.Object java.util.HashSet.clone() 132 HashSet hs2 = (HashSet) hs.clone(); 133 assertTrue("clone returned an equivalent HashSet", hs != hs2); 134 assertTrue("clone did not return an equal HashSet", hs.equals(hs2));
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertStore2Test.java | 282 public Object clone() { method in class:CertStore2Test.MyCertStoreParameters 288 public Object clone() { method in class:CertStore2Test.MyOtherCertStoreParameters 299 public Object clone() { method in class:CertStore2Test.MyCRLSelector 309 public Object clone() { method in class:CertStore2Test.MyOtherCRLSelector 321 public Object clone() { method in class:CertStore2Test.MyCertSelector 332 public Object clone() { method in class:CertStore2Test.MyOtherCertSelector
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertStoreSpiTest.java | 86 public Object clone() { method in class:CertStoreSpiTest.tmpCRLSelector 94 public Object clone() { method in class:CertStoreSpiTest.tmpCertSelector
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
MyCertPath.java | 78 return encoding.clone(); 91 return this.encoding.clone();
|
/external/apache-http/src/org/apache/http/message/ |
HeaderGroup.java | 284 HeaderGroup clone = new HeaderGroup(); local 285 clone.headers.addAll(this.headers); 286 return clone; 289 public Object clone() throws CloneNotSupportedException { method in class:HeaderGroup 290 HeaderGroup clone = (HeaderGroup) super.clone(); local 291 clone.headers = new ArrayList(this.headers); 292 return clone;
|
/external/apache-http/src/org/apache/http/protocol/ |
BasicHttpProcessor.java | 326 BasicHttpProcessor clone = new BasicHttpProcessor(); local 327 copyInterceptors(clone); 328 return clone; 331 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpProcessor 332 BasicHttpProcessor clone = (BasicHttpProcessor) super.clone(); local 333 copyInterceptors(clone); 334 return clone;
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
IteratorPool.java | 70 return (DTMIterator)m_orig.clone(); 94 return (DTMIterator)m_orig.clone();
|
/external/chromium-trace/src/shared/js/cr/ui/table/ |
table_column.js | 39 * @return {cr.ui.table.TableColumn} Clone of the given column. 41 clone: function() {
|
/external/e2fsprogs/tests/f_dup2/ |
expect.1 | 17 Clone multiply-claimed blocks? yes 23 Clone multiply-claimed blocks? yes
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
Platform.java | 40 static <T> T[] clone(T[] array) { method in class:Platform 41 return array.clone();
|
/external/icu4c/i18n/ |
quant.cpp | 35 matcher(o.matcher->clone()), 48 UnicodeFunctor* Quantifier::clone() const { function in class:Quantifier
|
/external/icu4c/i18n/unicode/ |
currunit.h | 60 * Return a polymorphic clone of this object. The result will 64 virtual UObject* clone() const;
|
tmunit.h | 62 * Override clone. 65 virtual UObject* clone() const;
|
/external/jmdns/src/javax/jmdns/impl/ |
ServiceEventImpl.java | 116 * @see javax.jmdns.ServiceEvent#clone() 119 public ServiceEventImpl clone() { method in class:ServiceEventImpl
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterShape.java | 60 * This method creates a deep clone of the current instance of the emitter shape. 61 * @return deep clone of the current instance of the emitter shape
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
Rectangle.java | 58 public Rectangle clone(){ method in class:Rectangle 60 return (Rectangle) super.clone();
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/ |
LodPerspectiveCalculatorFactory.java | 73 public LodCalculatorFactory clone() { method in class:LodPerspectiveCalculatorFactory 75 return (LodCalculatorFactory) super.clone();
|
/external/libsepol/src/ |
boolean_record.c | 145 /* Deep copy clone */ 164 ERR(handle, "could not clone boolean record");
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PAssertedIdentity.java | 92 public Object clone() { method in class:PAssertedIdentity 93 PAssertedIdentity retval = (PAssertedIdentity) super.clone();
|
PAssertedService.java | 109 public Object clone() { method in class:PAssertedService 110 PAssertedService retval = (PAssertedService) super.clone();
|
PPreferredService.java | 110 public Object clone() { method in class:PPreferredService 111 PPreferredService retval = (PPreferredService) super.clone();
|