Searched refs:clone (Results 101 - 125 of 1617) sorted by relevance

1234567891011>>

/external/srec/portable/src/
H A DPFileSystem.c445 LCHAR clone[P_PATH_MAX]; local
455 LSTRCPY(clone, path);
456 lstrtrim(clone);
458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2));
461 lastSlash = LSTRRCHR(clone, L('/'));
468 else if (lastSlash < clone + LSTRLEN(clone) - 1)
472 if (LSTRLEN(clone) > *len)
474 *len = LSTRLEN(clone);
478 LSTRCPY(path, clone);
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPath.java77 return encoding.clone();
90 return this.encoding.clone();
/external/apache-http/src/org/apache/http/entity/
H A DFileEntity.java105 public Object clone() throws CloneNotSupportedException { method in class:FileEntity
108 return super.clone();
/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 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 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 DDefaultedHttpParams.java69 HttpParams clone = this.local.copy();
70 return new DefaultedHttpParams(clone, this.defaults);
/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();
H A DIntStack.java202 * Returns clone of current IntStack
204 * @return clone of current IntStack
206 public Object clone() method in class:IntStack
209 return (IntStack) super.clone();
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DIteratorPool.java70 return (DTMIterator)m_orig.clone();
94 return (DTMIterator)m_orig.clone();
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/chromium_org/third_party/icu/source/test/intltest/
H A Dtstnrapi.cpp37 // test clone(), ==, and hashCode()
38 Normalizer *clone=copy.clone(); local
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
42 // clone must have the same hashCode()
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
46 if(clone->next()!=0x4e3d) {
47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DLineNumber_info.java62 public Object clone () method in class:LineNumber_info
66 return super.clone ();
H A DSourceFileAttribute_info.java65 public Object clone () method in class:SourceFileAttribute_info
67 return super.clone ();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DPlatform.java40 static <T> T[] clone(T[] array) { method in class:Platform
41 return array.clone();
/external/icu/icu4c/source/i18n/
H A Dcurrfmt.cpp30 fmt = (NumberFormat*) other.fmt->clone();
37 Format* CurrencyFormat::clone() const { function in class:CurrencyFormat
H A Dmeasure.cpp44 unit = (MeasureUnit*) other.unit->clone();
49 UObject *Measure::clone() const { function in class:Measure
/external/icu/icu4c/source/test/intltest/
H A Dtstnrapi.cpp37 // test clone(), ==, and hashCode()
38 Normalizer *clone=copy.clone(); local
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
42 // clone must have the same hashCode()
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
46 if(clone->next()!=0x4e3d) {
47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DFrameNode.java165 public AbstractInsnNode clone(final Map labels) { method in class:FrameNode
166 FrameNode clone = new FrameNode();
167 clone.type = type;
169 clone.local = new ArrayList();
175 clone.local.add(l);
179 clone.stack = new ArrayList();
185 clone.stack.add(s);
188 return clone;
/external/mockito/
H A Dupdate_source.sh27 git clone $SOURCE $working_dir/source
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DCertPathTrustManagerParametersTest.java43 public Object clone() { method in class:MyCertPathParameters
/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/third_party/WebKit/Source/core/rendering/style/
H A DCounterDirectives.cpp36 PassOwnPtr<CounterDirectiveMap> clone(const CounterDirectiveMap& counterDirectives) function in namespace:blink
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationValue.h55 virtual PassOwnPtr<AnimationValue> clone() const = 0;
70 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FloatAnimationValue(*this)); }
87 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new TransformAnimationValue(*this)); }
104 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FilterAnimationValue(*this)); }

Completed in 529 milliseconds

1234567891011>>