Searched defs:clone (Results 226 - 250 of 842) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java54 // Cloneable: adjust the access level of Object.clone():
55 Object clone (); method in interface:IAttributeCollection
H A DIFieldCollection.java59 // Cloneable: adjust the access level of Object.clone():
60 Object clone (); method in interface:IFieldCollection
H A DIMethodCollection.java57 // Cloneable: adjust the access level of Object.clone():
58 Object clone (); method in interface:IMethodCollection
H A DInterfaceCollection.java41 public Object clone () method in class:InterfaceCollection
45 final InterfaceCollection _clone = (InterfaceCollection) super.clone ();
47 // deep clone:
48 _clone.m_interfaces = (IntVector) m_interfaces.clone ();
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DDeclaredExceptionTable.java46 public Object clone () method in class:DeclaredExceptionTable
50 final DeclaredExceptionTable _clone = (DeclaredExceptionTable) super.clone ();
52 // deep clone:
53 _clone.m_exceptions = (IntVector) m_exceptions.clone ();
H A DExceptionHandlerTable.java47 public Object clone () method in class:ExceptionHandlerTable
51 final ExceptionHandlerTable _clone = (ExceptionHandlerTable) super.clone ();
53 // deep clone:
58 _clone.m_exceptions.add (((Exception_info) m_exceptions.get (e)).clone ());
H A DException_info.java87 public Object clone () method in class:Exception_info
91 return super.clone ();
H A DExceptionsAttribute_info.java87 public Object clone () method in class:ExceptionsAttribute_info
89 final ExceptionsAttribute_info _clone = (ExceptionsAttribute_info) super.clone ();
92 _clone.m_exceptions = (IDeclaredExceptionTable) m_exceptions.clone ();
H A DGenericAttribute_info.java64 public Object clone () method in class:GenericAttribute_info
66 final GenericAttribute_info _clone = (GenericAttribute_info) super.clone ();
69 _clone.m_info = (m_info.length == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_info.clone ());
H A DInnerClass_info.java52 public Object clone () method in class:InnerClass_info
56 return super.clone ();
H A DSourceFileAttribute_info.java65 public Object clone () method in class:SourceFileAttribute_info
67 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/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/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DPlatform.java28 static <T> T[] clone(T[] array) { method in class:Platform
29 return GwtPlatform.clone(array);
/external/icu/icu4c/source/common/
H A Dschriter.cpp103 StringCharacterIterator::clone() const { function in class:StringCharacterIterator
/external/icu/icu4c/source/i18n/
H A Dtitletrn.cpp61 Transliterator* TitlecaseTransliterator::clone(void) const { function in class:TitlecaseTransliterator
/external/jmdns/src/javax/jmdns/impl/
H A DServiceEventImpl.java116 * @see javax.jmdns.ServiceEvent#clone()
119 public ServiceEventImpl clone() { method in class:ServiceEventImpl
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DACsOpenPosition.java26 public Object clone() method in class:ACsOpenPosition
H A DADataCommand.java26 public Object clone() method in class:ADataCommand
H A DADecNumberVariable.java26 public Object clone() method in class:ADecNumberVariable
H A DADecimalExpression.java26 public Object clone() method in class:ADecimalExpression
H A DAExistsExpression.java26 public Object clone() method in class:AExistsExpression
H A DAHexExpression.java26 public Object clone() method in class:AHexExpression
H A DAHexNumberVariable.java26 public Object clone() method in class:AHexNumberVariable

Completed in 1976 milliseconds

1234567891011>>