Searched defs:clone (Results 76 - 100 of 842) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/message/
H A DBasicHeader.java144 public Object clone() throws CloneNotSupportedException { method in class:BasicHeader
145 return super.clone();
H A DBasicNameValuePair.java190 public Object clone() throws CloneNotSupportedException { method in class:BasicNameValuePair
191 return super.clone();
H A DBasicRequestLine.java100 public Object clone() throws CloneNotSupportedException { method in class:BasicRequestLine
101 return super.clone();
H A DBasicStatusLine.java125 public Object clone() throws CloneNotSupportedException { method in class:BasicStatusLine
126 return super.clone();
H A DBufferedHeader.java132 public Object clone() throws CloneNotSupportedException { method in class:BufferedHeader
135 return super.clone();
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java85 public Object clone() method in class:AttributeCertificateIssuer
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DMD5.java49 public Object clone() method in class:MD5.Digest
52 Digest d = (Digest)super.clone();
H A DSHA224.java28 public Object clone() method in class:SHA224.Digest
31 Digest d = (Digest)super.clone();
H A DSHA256.java29 public Object clone() method in class:SHA256.Digest
32 Digest d = (Digest)super.clone();
H A DSHA384.java31 public Object clone() method in class:SHA384.Digest
34 Digest d = (Digest)super.clone();
H A DSHA512.java34 public Object clone() method in class:SHA512.Digest
37 Digest d = (Digest)super.clone();
54 // public Object clone()
57 // DigestT d = (DigestT)super.clone();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DPKIXAttrCertChecker.java51 * Returns a clone of this object.
55 public abstract Object clone(); method in class:PKIXAttrCertChecker
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcursor.js36 cvox.Cursor.prototype.clone = function() {
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dcountdown.js36 * Constructs a new clone of this timer, while overriding its callback.
38 * @return {!Countdown} new clone.
40 Countdown.prototype.clone = function(cb) {};
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DContentData.cpp55 PassOwnPtr<ContentData> ContentData::clone() const function in class:blink::ContentData
/external/chromium_org/third_party/WebKit/Source/platform/
H A DSharedBufferTest.cpp113 RefPtr<SharedBuffer> clone = sharedBuffer->copy(); local
114 ASSERT_EQ(length * 4, clone->size());
115 ASSERT_EQ(0, memcmp(clone->data(), sharedBuffer->data(), clone->size()));
117 clone->append(testData.data(), length);
118 ASSERT_EQ(length * 5, clone->size());
/external/chromium_org/third_party/flot/
H A Djquery.colorhelpers.min.js21 */(function(e){e.color={},e.color.make=function(t,n,r,i){var s={};return s.r=t||0,s.g=n||0,s.b=r||0,s.a=i!=null?i:1,s.add=function(e,t){for(var n=0;n<e.length;++n)s[e.charAt(n)]+=t;return s.normalize()},s.scale=function(e,t){for(var n=0;n<e.length;++n)s[e.charAt(n)]*=t;return s.normalize()},s.toString=function(){return s.a>=1?"rgb("+[s.r,s.g,s.b].join(",")+")":"rgba("+[s.r,s.g,s.b,s.a].join(",")+")"},s.normalize=function(){function e(e,t,n){return t<e?e:t>n?n:t}return s.r=e(0,parseInt(s.r),255),s.g=e(0,parseInt(s.g),255),s.b=e(0,parseInt(s.b),255),s.a=e(0,s.a,1),s},s.clone=function(){return e.color.make(s.r,s.b,s.g,s.a)},s.normalize()},e.color.extract=function(t,n){var (…) function
/external/chromium_org/third_party/icu/source/i18n/
H A Dcurrunit.cpp45 UObject* CurrencyUnit::clone() const { function in class:CurrencyUnit
H A Dremtrans.cpp49 Transliterator* RemoveTransliterator::clone(void) const { function in class:RemoveTransliterator
52 result->adoptFilter((UnicodeFilter*)(getFilter()->clone()));
H A Dtmunit.cpp29 * Also, Measure can clone and destruct the "unit" pointer.
34 * 3. clone and destructor need to check upon this flag to distinguish on how
83 TimeUnit::clone() const { function in class:TimeUnit
H A Dtmutamt.cpp52 TimeUnitAmount::clone() const { function in class:TimeUnitAmount
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLInterface.cpp80 GrGLInterface* clone = SkNEW(GrGLInterface); local
81 clone->fStandard = interface->fStandard;
82 clone->fExtensions = interface->fExtensions;
83 clone->fFunctions = interface->fFunctions;
85 clone->fCallback = interface->fCallback;
86 clone->fCallbackData = interface->fCallbackData;
88 return clone;
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIInterfaceCollection.java48 // Cloneable: adjust the access level of Object.clone():
49 Object clone (); method in interface:IInterfaceCollection
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DBridgeAttribute_info.java55 public Object clone () method in class:BridgeAttribute_info
57 return super.clone ();
H A DIDeclaredExceptionTable.java53 // Cloneable: adjust the access level of Object.clone():
54 Object clone (); method in interface:IDeclaredExceptionTable

Completed in 3732 milliseconds

1234567891011>>