Searched defs:clone (Results 276 - 300 of 842) sorted by relevance

<<11121314151617181920>>

/external/apache-http/src/org/apache/http/message/
H A DHeaderGroup.java289 HeaderGroup clone = new HeaderGroup();
290 clone.headers.addAll(this.headers);
291 return clone;
294 public Object clone() throws CloneNotSupportedException { method in class:HeaderGroup
295 HeaderGroup clone = (HeaderGroup) super.clone();
296 clone.headers = new ArrayList(this.headers);
297 return clone;
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java136 BasicHttpParams clone = new BasicHttpParams();
137 copyParams(clone);
138 return clone;
141 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpParams
142 BasicHttpParams clone = (BasicHttpParams) super.clone();
143 copyParams(clone);
144 return clone;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DBoolStack.java196 public Object clone() method in class:BoolStack
199 return super.clone();
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DContextNodeList.java104 * @return A clone of this iteration that has been reset.
111 * Get a clone of this iterator. Be aware that this operation may be
115 * @return A clone of this object.
119 public Object clone() throws CloneNotSupportedException; method in interface:ContextNodeList
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DSHA1.java40 public Object clone() method in class:SHA1.Digest
43 Digest d = (Digest)super.clone();
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js46 * @param {mat2} a matrix to clone
49 mat2.clone = function(a) {
H A Dmat2d.js63 * @param {mat2d} a matrix to clone
66 mat2d.clone = function(a) {
/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_namespace_impl.cc61 DOMStorageSession* clone)
62 : session_(clone) {
60 SessionStorageNamespaceImpl( DOMStorageSession* clone) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Dprototype-1.7.js303 function clone(object) { function
354 clone: clone,
1150 function clone() {
1207 clone: clone,
1208 toArray: clone,
1228 this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
1257 return Object.clone(this._object);
1278 return this.clone()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DStringKeyframe.cpp42 PassRefPtrWillBeRawPtr<Keyframe> StringKeyframe::clone() const function in class:blink::StringKeyframe
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueKeyframe.cpp29 PassRefPtrWillBeRawPtr<Keyframe> AnimatableValueKeyframe::clone() const function in class:blink::AnimatableValueKeyframe
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextAttributes.cpp66 PassRefPtrWillBeRawPtr<WebGLContextAttributes> WebGLContextAttributes::clone() const function in class:blink::WebGLContextAttributes
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGInteger.cpp44 PassRefPtr<SVGInteger> SVGInteger::clone() const function in class:blink::SVGInteger
H A DSVGNumber.cpp44 PassRefPtr<SVGNumber> SVGNumber::clone() const function in class:blink::SVGNumber
115 PassRefPtr<SVGNumber> SVGNumberAcceptPercentage::clone() const function in class:blink::SVGNumberAcceptPercentage
H A DSVGNumberOptionalNumber.cpp46 PassRefPtr<SVGNumberOptionalNumber> SVGNumberOptionalNumber::clone() const function in class:blink::SVGNumberOptionalNumber
48 return SVGNumberOptionalNumber::create(m_firstNumber->clone(), m_secondNumber->clone());
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DResponse.cpp213 Response* Response::clone() const function in class:blink::Response
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayerDebugInfo.cpp52 GraphicsLayerDebugInfo* GraphicsLayerDebugInfo::clone() const function in class:blink::GraphicsLayerDebugInfo
/external/chromium_org/third_party/icu/source/i18n/
H A Dbrktrans.cpp64 bi = o.bi->clone();
75 Transliterator* BreakTransliterator::clone(void) const { function in class:BreakTransliterator
H A Dcoptccal.cpp42 CopticCalendar::clone() const function in class:CopticCalendar
H A Ddangical.cpp67 DangiCalendar::clone() const function in class:DangiCalendar
H A Ddtrule.cpp64 DateTimeRule::clone() const { function in class:DateTimeRule
H A Dfuncrepl.cpp45 translit = other.translit->clone();
46 replacer = other.replacer->clone();
60 UnicodeFunctor* FunctionReplacer::clone() const { function in class:FunctionReplacer
H A Dnortrans.cpp93 Transliterator* NormalizationTransliterator::clone(void) const { function in class:NormalizationTransliterator
H A Dquant.cpp35 matcher(o.matcher->clone()),
48 UnicodeFunctor* Quantifier::clone() const { function in class:Quantifier
H A Drbt.cpp193 RuleBasedTransliterator::clone(void) const { function in class:RuleBasedTransliterator

Completed in 612 milliseconds

<<11121314151617181920>>