Searched defs:clone (Results 376 - 400 of 842) sorted by path

<<11121314151617181920>>

/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DSourceFileAttribute_info.java65 public Object clone () method in class:SourceFileAttribute_info
67 return super.clone ();
H A DSyntheticAttribute_info.java72 public Object clone () method in class:SyntheticAttribute_info
74 return super.clone ();
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_info.java111 * Chains to super.clone() and removes CloneNotSupportedException
114 public Object clone () method in class:CONSTANT_info
118 return super.clone ();
/external/emma/core/java12/com/vladium/util/
H A DIntVector.java72 public Object clone () method in class:IntVector
76 final IntVector _clone = (IntVector) super.clone ();
78 // deep clone:
87 _clone.m_values = (int []) m_values.clone ();
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
H A Dprotobuf-java-2.2.0-lite.jar ... abstract com.google.protobuf.MessageLite$Builder clone () public abstract boolean isInitialized () public abstract com.google. ...
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONObject.java100 * so the clone method returns itself.
103 protected final Object clone() { method in class:JSONObject.Null
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h122 ParamIteratorInterface<T>* clone = impl_->Clone(); local
124 return ParamIterator(clone);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGwtPlatform.java37 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
38 return (T[]) Array.clone(array);
H A DPlatform.java28 static <T> T[] clone(T[] array) { method in class:Platform
29 return GwtPlatform.clone(array);
/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/guava/guava/src/com/google/common/collect/
H A DPlatform.java32 * Clone the given array using {@link Object#clone()}. It is factored out so
35 static <T> T[] clone(T[] array) { method in class:Platform
36 return array.clone();
/external/icu/icu4c/source/common/
H A Ddtintrv.cpp49 DateInterval::clone() const { function in class:DateInterval
H A Dlocid.cpp440 Locale::clone() const { function in class:Locale
922 virtual StringEnumeration * clone() const function in class:KeywordEnumeration
H A Dnormlzr.cpp52 text(iter.clone()),
61 text(copy.text->clone()),
90 Normalizer::clone() const function in class:Normalizer
425 CharacterIterator *newIter = newText.clone();
H A Dparsepos.cpp17 ParsePosition::clone() const { function in class:ParsePosition
H A Drbbi.cpp236 // TODO: clone fLanguageBreakEngines from "that"
249 fCharIter = that.fCharIter->clone();
308 // clone - Returns a newly-constructed RuleBasedBreakIterator with the same
314 RuleBasedBreakIterator::clone(void) const { function in class:RuleBasedBreakIterator
503 // Shallow read-only clone of the new UText into the existing input UText
1530 BreakIterator *clonedBI = clone();
H A Dresbund.cpp247 ResourceBundle::clone() const { function in class:ResourceBundle
H A Dschriter.cpp103 StringCharacterIterator::clone() const { function in class:StringCharacterIterator
H A Dservls.cpp182 _ids.addElement(((UnicodeString *)other._ids.elementAt(i))->clone(), status);
204 virtual StringEnumeration *clone() const { function in class:ServiceEnumeration
H A Duchriter.cpp91 UCharCharacterIterator::clone() const { function in class:UCharCharacterIterator
H A Ducnv.c195 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "clone converter %s at %p into stackBuffer %p",
489 UConverter *clone; local
495 clone = ucnv_safeClone(cnv, cloneBuffer, &cloneSize, err);
496 ucnv_setFromUCallBack(clone, UCNV_FROM_U_CALLBACK_STOP, NULL, NULL, NULL, err);
497 length8 = ucnv_fromUChars(clone, chars, (int32_t)sizeof(chars), s, length, err);
498 ucnv_close(clone);
H A Duniset.cpp326 UnicodeFunctor* UnicodeSet::clone() const { function in class:UnicodeSet
/external/icu/icu4c/source/common/unicode/
H A Dutext.h316 * A deep clone will copy both the UText data structures and the underlying text.
319 * required to support deep clones. The user of clone() must check the status return
325 * The UText returned from a deep clone will be writable, assuming that the text
329 * A shallow clone replicates only the UText data structures; it does not make
334 * A shallow clone operation will not fail, barring truly exceptional conditions such
343 * A shallow clone made with the readOnly parameter == FALSE will preserve the
348 * A UText and its clone may be safely concurrently accessed by separate threads.
354 * @param dest A UText struct to be filled in with the result of the clone operation,
355 * or NULL if the clone function should heap-allocate a new UText struct.
357 * be reset to become the clone
1240 UTextClone *clone; member in struct:UTextFuncs
[all...]

Completed in 410 milliseconds

<<11121314151617181920>>