HomeSort by relevance Sort by last modified time
    Searched full:clone (Results 151 - 175 of 2333) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
MacSpiTest.java 77 mSpi.clone();
83 mSpi1.clone();
110 mSpi2.clone();
126 public Object clone() throws CloneNotSupportedException { method in class:MyMacSpi1
  /external/chromium/chrome/browser/
browsing_data_appcache_helper.cc 111 CannedBrowsingDataAppCacheHelper* CannedBrowsingDataAppCacheHelper::Clone() {
113 CannedBrowsingDataAppCacheHelper* clone = local
116 clone->info_collection_->infos_by_origin = info_collection_->infos_by_origin;
117 return clone;
  /external/chromium/webkit/glue/media/
web_data_source_factory.h 30 virtual media::DataSourceFactory* Clone() const;
  /external/guava/src/com/google/common/collect/
Platform.java 56 * Clone the given array using {@link Object#clone()}. It is factored out so
59 static <T> T[] clone(T[] array) { method in class:Platform
60 return array.clone();
  /external/icu4c/common/
dtintrv.cpp 49 DateInterval::clone() const { function in class:DateInterval
  /external/icu4c/i18n/
curramt.cpp 39 UObject* CurrencyAmount::clone() const { function in class:CurrencyAmount
tolowtrn.cpp 59 Transliterator* LowercaseTransliterator::clone(void) const { function in class:LowercaseTransliterator
tolowtrn.h 51 virtual Transliterator* clone(void) const;
toupptrn.cpp 59 Transliterator* UppercaseTransliterator::clone(void) const { function in class:UppercaseTransliterator
toupptrn.h 51 virtual Transliterator* clone(void) const;
  /external/icu4c/i18n/unicode/
tmutamt.h 80 * Clone.
81 * @return a polymorphic clone of this object. The result will have the same class as returned by getDynamicClassID().
84 virtual UObject* clone() const;
129 * compilers support genuine RTTI. Polymorphic operator==() and clone()
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANoopCommand.java 17 public Object clone() method in class:ANoopCommand
ANoopExpression.java 17 public Object clone() method in class:ANoopExpression
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParametersHeader.java 82 * @see gov.nist.javax.sip.header.AddressParameters#clone()
84 public Object clone() { method in class:AddressParametersHeader
85 AddressParametersHeader retval = (AddressParametersHeader) super.clone();
87 retval.address = (AddressImpl) this.address.clone();
  /external/v8/test/test262/
README 11 hg clone -r 62 http://hg.ecmascript.org/tests/test262 data
  /external/webkit/LayoutTests/dom/html/level1/core/
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/
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/events/
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/
HTMLBaseElement01.html 394 var clone = null;
399 clone = doc.createElement(srcNode.nodeName.toLowerCase());
403 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
409 clone.appendChild(cloneChild);
416 clone = doc.createTextNode(srcNode.nodeValue);
420 clone = doc.createCDATASection(srcNode.nodeValue);
424 clone = doc.createProcessingInstruction(srcNode.nodeValue);
428 clone = doc.createComment(srcNode.nodeValue);
431 return clone;
446 var clone = null
    [all...]
HTMLBaseElement02.html 395 var clone = null;
400 clone = doc.createElement(srcNode.nodeName.toLowerCase());
404 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
410 clone.appendChild(cloneChild);
417 clone = doc.createTextNode(srcNode.nodeValue);
421 clone = doc.createCDATASection(srcNode.nodeValue);
425 clone = doc.createProcessingInstruction(srcNode.nodeValue);
429 clone = doc.createComment(srcNode.nodeValue);
432 return clone;
447 var clone = null
    [all...]
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...]
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 107 public RoundRectShape clone() throws CloneNotSupportedException { method in class:RoundRectShape
108 RoundRectShape shape = (RoundRectShape) super.clone();
109 shape.mOuterRadii = mOuterRadii != null ? mOuterRadii.clone() : null;
110 shape.mInnerRadii = mInnerRadii != null ? mInnerRadii.clone() : null;
  /libcore/luni/src/main/java/javax/net/ssl/
SSLParameters.java 74 return cipherSuites.clone();
83 : cipherSuites.clone());
94 return protocols.clone();
103 : protocols.clone());
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
Types.java 24 return types.getResolvedTypes().clone();
  /packages/apps/Email/src/com/android/email/service/
EasAuthenticatorServiceAlternate.java 22 * <p>Functionality wise, it's a 100% clone of {@link EasAuthenticatorService}, but in order to

Completed in 1120 milliseconds

1 2 3 4 5 67 8 91011>>