/libcore/luni/src/main/java/java/util/ |
HashSet.java | 118 public Object clone() { method in class:HashSet 120 HashSet<E> clone = (HashSet<E>) super.clone(); local 121 clone.backingMap = (HashMap<E, HashSet<E>>) backingMap.clone(); 122 return clone;
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLServerSocketImpl.java | 89 return enabledProtocols.clone(); 113 return enabledCipherSuites.clone(); 134 return enabledCompressionMethods.clone(); 187 enabledProtocols.clone(), 188 enabledCipherSuites.clone(), 189 enabledCompressionMethods.clone());
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldDecimalFormatSymbolsTest.java | 85 DecimalFormatSymbols dfs2 = (DecimalFormatSymbols) dfs1.clone(); 96 DecimalFormatSymbols fsc = (DecimalFormatSymbols) fs.clone(); 101 DecimalFormatSymbols fsc2 = (DecimalFormatSymbols) (fs.clone()); 103 assertTrue("Object's clone isn't equal!", fs.equals(fsc2)); 106 // change the content of the clone and make sure it's not equal 110 assertTrue("Object's changed clone should not be equal!", !fs.equals(fsc2));
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignatureSpiTest.java | 44 MySignatureSpi1 ssc1 = (MySignatureSpi1) ss1.clone(); 52 ss2.clone(); 152 public Object clone() throws CloneNotSupportedException { method in class:SignatureSpiTest.MySignatureSpi1 153 return super.clone(); 186 public Object clone() throws CloneNotSupportedException { method in class:SignatureSpiTest.MySignatureSpi2 187 return super.clone();
|
/libcore/luni/src/test/java/tests/security/cert/ |
PKIXCertPathBuilderResultTest.java | 195 PKIXCertPathBuilderResult clone = (PKIXCertPathBuilderResult) init local 196 .clone(); 197 assertSame(init.getCertPath(), clone.getCertPath()); 198 assertSame(init.getPolicyTree(), clone.getPolicyTree()); 199 assertSame(init.getPublicKey(), clone.getPublicKey()); 200 assertSame(init.getTrustAnchor(), clone.getTrustAnchor());
|
/external/chromium/third_party/libjingle/source/talk/ |
main.scons | 12 # To add a new platform clone and modify the root_env object. Remember to add 78 win_env = root_env.Clone( 183 win_dbg_env = win_env.Clone( 201 win_coverage_env = win_dbg_env.Clone( 216 win_opt_env = win_env.Clone( 241 posix_env = root_env.Clone() 268 mac_env = posix_env.Clone( 310 mac_dbg_env = mac_env.Clone( 323 mac_opt_env = mac_env.Clone( 342 linux_common_env = posix_env.Clone( [all...] |
/libcore/luni/src/main/java/java/text/ |
DateFormatSymbols.java | 176 public Object clone() { method in class:DateFormatSymbols 178 return super.clone(); 249 return ampms.clone(); 260 return eras.clone(); 281 return months.clone(); 292 return shortMonths.clone(); 303 return shortWeekdays.clone(); 314 return weekdays.clone(); 340 result[i] = array[i].clone(); 387 ampms = data.clone(); [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
Spatial.java | 1118 public Spatial clone(boolean cloneMaterial) { method in class:Spatial 1120 Spatial clone = (Spatial) super.clone(); local 1181 public Spatial clone() { method in class:Spatial [all...] |
Geometry.java | 282 worldBound = mesh.getBound().clone(worldBound); 472 * This version of clone is a shallow clone, in other words, the 479 public Geometry clone(boolean cloneMaterial) { method in class:Geometry 480 Geometry geomClone = (Geometry) super.clone(cloneMaterial); 481 geomClone.cachedWorldMat = cachedWorldMat.clone(); 484 geomClone.material = material.clone(); 498 * This version of clone is a shallow clone, in other words, the 505 public Geometry clone() { method in class:Geometry [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
LocPathIterator.java | 195 * Execute this iterator, meaning create a clone that can 236 LocPathIterator clone = (LocPathIterator)m_clones.getInstance(); local 239 clone.setRoot(current, xctxt); 241 int node = clone.nextNode(); 242 DTM dtm = clone.getDTM(node); 243 clone.detach(); 289 * value without having to do a clone operation. 526 // Create a clone, and count from the current position to the end 531 LocPathIterator clone; local 535 clone = (LocPathIterator) clone(); 713 LocPathIterator clone; local [all...] |
FilterExprWalker.java | 144 public Object clone() throws CloneNotSupportedException method in class:FilterExprWalker 147 FilterExprWalker clone = (FilterExprWalker) super.clone(); local 150 clone.m_exprObj = (XNodeSet) m_exprObj.clone(); 152 return clone; 221 /** The result of executing m_expr. Needs to be deep cloned on clone op. */
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
TerrainPatch.java | 915 public TerrainPatch clone() { method in class:TerrainPatch 916 TerrainPatch clone = new TerrainPatch(); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPRequest.java | 474 * Make a clone (deep copy) of this object. You can use this if you want to modify a request 480 public Object clone() { method in class:SIPRequest 481 SIPRequest retval = (SIPRequest) super.clone(); 486 retval.requestLine = (RequestLine) this.requestLine.clone(); 647 * tags to outgoing responses if need be. For efficiency, this method does not clone the 648 * incoming request. If you want to modify the outgoing response, be sure to clone the 669 * tags to outgoing responses if need be. For efficiency, this method does not clone the 670 * incoming request. If you want to modify the outgoing response, be sure to clone the 713 newResponse.attachHeader((SIPHeader) nextHeader.clone(), false); 775 cancel.setRequestLine((RequestLine) this.requestLine.clone()); [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporterVisitor.h | 34 /// default implementation of the clone() method. 36 /// default implementation of clone() will NOT do the right thing, and you 49 /// default implementation of clone() will NOT do the right thing, and you 51 virtual BugReporterVisitor *clone() const = 0; 82 /// This class provides a convenience implementation for clone() using the 88 /// default implementation of clone() will NOT do the right thing, and you 92 virtual BugReporterVisitor *clone() const { function in class:clang::ento::BugReporterVisitorImpl
|
/external/icu4c/test/intltest/ |
sdtfmtts.cpp | 118 // ======= Test clone(), assignment, and equality 120 logln("Testing clone(), assignment and equality operators"); 131 Format *clone = def.clone(); local 132 if( ! (*clone == def) ) { 133 errln("ERROR: Clone() (or ==) failed"); 135 delete clone;
|
reptest.cpp | 72 virtual Replaceable *clone() const { function in class:TestReplaceable 245 if((p=noop.clone())!=NULL) { 246 errln("Replaceable::clone() does not return NULL"); 258 if((p=noop2.clone())!=NULL) { 259 errln("noop2.Replaceable::clone() does not return NULL"); 266 if((p=noop3.clone())!=NULL) { 267 errln("noop3.Replaceable::clone() does not return NULL"); 289 // test clone() 290 TestReplaceable *tr2 = (TestReplaceable *)tr->clone();
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
LodControl.java | 136 LodControl clone = (LodControl) super.clone(); local 137 clone.lastDistance = 0; 138 clone.lastLevel = 0; 139 clone.numTris = numTris != null ? numTris.clone() : null; 140 return clone;
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1_MessageDigestImpl.java | 29 * it overrides the "Object clone()" and "int engineGetDigestLength()" methods. <BR> 139 * The method overrides "clone()" in class Object. <BR> 142 * a clone of this object 144 public Object clone() throws CloneNotSupportedException { method in class:SHA1_MessageDigestImpl 145 SHA1_MessageDigestImpl cloneObj = (SHA1_MessageDigestImpl) super.clone(); 146 cloneObj.buffer = buffer.clone(); 147 cloneObj.oneByte = oneByte.clone();
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapText.java | 75 public BitmapText clone() {
method in class:BitmapText 76 BitmapText clone = (BitmapText) super.clone();
local 78 clone.textPages[i] = textPages[i].clone();
80 clone.block = block.clone();
81 clone.needRefresh = true;
82 return clone;
|
BitmapTextPage.java | 115 public BitmapTextPage clone() {
method in class:BitmapTextPage 116 BitmapTextPage clone = (BitmapTextPage) super.clone();
local 117 clone.mesh = mesh.deepClone();
118 return clone;
|
/external/srec/portable/include/ |
ArrayList.h | 144 * Returns a clone of the ArrayList. 147 * @param clone [out] Clone of the ArrayList (created externally, populated internally) 151 ESR_ReturnCode(*clone)(struct ArrayList_t* self, struct ArrayList_t* clone); member in struct:ArrayList_t 274 * Returns a clone of the ArrayList. 277 * @param clone [out] Clone of the ArrayList (created externally, populated internally) 281 PORTABLE_API ESR_ReturnCode ArrayListClone(ArrayList* self, ArrayList* clone);
|
/external/chromium/chrome/browser/ |
browsing_data_database_helper.cc | 164 CannedBrowsingDataDatabaseHelper* CannedBrowsingDataDatabaseHelper::Clone() { 166 CannedBrowsingDataDatabaseHelper* clone = local 170 clone->pending_database_info_ = pending_database_info_; 171 clone->database_info_ = database_info_; 172 return clone;
|
browsing_data_local_storage_helper.cc | 155 CannedBrowsingDataLocalStorageHelper::Clone() { 157 CannedBrowsingDataLocalStorageHelper* clone = local 161 clone->pending_local_storage_info_ = pending_local_storage_info_; 162 clone->local_storage_info_ = local_storage_info_; 163 return clone;
|
/external/icu4c/samples/citer/ |
citer.cpp | 51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone(); 56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n"); 64 u_fprintf(out, "iter.getText() != clone.getText()\n"); 118 StringCharacterIterator* test2 = (StringCharacterIterator*)iter.clone(); 121 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
NativeObject.java | 137 * This should create a deep clone. For a shallow clone, use 141 protected NativeObject clone(){ method in class:NativeObject 143 NativeObject obj = (NativeObject) super.clone(); 168 * Creates a shallow clone of this GL Object. The deleteObject method
|