Searched defs:clone (Results 176 - 200 of 842) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DLdcInsnNode.java71 public AbstractInsnNode clone(final Map labels) { method in class:LdcInsnNode
H A DLineNumberNode.java76 public AbstractInsnNode clone(final Map labels) { method in class:LineNumberNode
77 return new LineNumberNode(line, clone(start, labels));
H A DLookupSwitchInsnNode.java107 public AbstractInsnNode clone(final Map labels) { method in class:LookupSwitchInsnNode
108 LookupSwitchInsnNode clone = new LookupSwitchInsnNode(clone(dflt,
109 labels), null, clone(this.labels, labels));
110 clone.keys.addAll(keys);
111 return clone;
H A DMethodInsnNode.java101 public AbstractInsnNode clone(final Map labels) { method in class:MethodInsnNode
H A DMultiANewArrayInsnNode.java74 public AbstractInsnNode clone(final Map labels) { method in class:MultiANewArrayInsnNode
H A DTableSwitchInsnNode.java106 public AbstractInsnNode clone(final Map labels) { method in class:TableSwitchInsnNode
109 clone(dflt, labels),
110 clone(this.labels, labels));
H A DTypeInsnNode.java81 public AbstractInsnNode clone(final Map labels) { method in class:TypeInsnNode
H A DVarInsnNode.java84 public AbstractInsnNode clone(final Map labels) { method in class:VarInsnNode
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParametersHeader.java82 * @see gov.nist.javax.sip.header.AddressParameters#clone()
84 public Object clone() { method in class:AddressParametersHeader
85 AddressParametersHeader retval = (AddressParametersHeader) super.clone();
87 retval.address = (AddressImpl) this.address.clone();
H A DAlertInfo.java119 public Object clone() { method in class:AlertInfo
120 AlertInfo retval = (AlertInfo) super.clone();
122 retval.uri = (GenericURI) this.uri.clone();
H A DAllowEventsList.java52 public Object clone() { method in class:AllowEventsList
H A DAllowList.java52 public Object clone() { method in class:AllowList
H A DCallInfo.java117 public Object clone() { method in class:CallInfo
118 CallInfo retval = (CallInfo) super.clone();
120 retval.info = (GenericURI) this.info.clone();
H A DContentLanguage.java165 public Object clone() {
166 ContentLanguage retval = (ContentLanguage) super.clone();
168 retval.locale = (Locale) this.locale.clone();
164 public Object clone() { method in class:ContentLanguage
H A DErrorInfo.java133 public Object clone() { method in class:ErrorInfo
134 ErrorInfo retval = (ErrorInfo) super.clone();
136 retval.errorInfo = (GenericURI) this.errorInfo.clone();
H A DInReplyTo.java103 public Object clone() { method in class:InReplyTo
104 InReplyTo retval = (InReplyTo) super.clone();
106 retval.callId = (CallIdentifier) this.callId.clone();
H A DRouteList.java56 public Object clone() { method in class:RouteList
H A DSIPDateHeader.java98 public Object clone() { method in class:SIPDateHeader
99 SIPDateHeader retval = (SIPDateHeader) super.clone();
101 retval.date = (SIPDate) this.date.clone();
145 * Canonical clone() implementations for the GenericObject and GenericObjectList hierarchies
H A DUserAgent.java120 public Object clone() { method in class:UserAgent
121 UserAgent retval = (UserAgent) super.clone();
180 * Canonical clone() implementations for the GenericObject and GenericObjectList hierarchies
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DAddressHeaderIms.java75 public Object clone() { method in class:AddressHeaderIms
76 AddressHeaderIms retval = (AddressHeaderIms) super.clone();
78 retval.address = (AddressImpl) this.address.clone();
H A DPAssertedIdentity.java92 public Object clone() { method in class:PAssertedIdentity
93 PAssertedIdentity retval = (PAssertedIdentity) super.clone();
H A DPAssociatedURI.java147 public Object clone() { method in class:PAssociatedURI
148 PAssociatedURI retval = (PAssociatedURI) super.clone();
150 retval.address = (AddressImpl) this.address.clone();
H A DPProfileKey.java82 public Object clone() { method in class:PProfileKey
83 PProfileKey retval = (PProfileKey) super.clone();
H A DPUserDatabase.java95 public Object clone() { method in class:PUserDatabase
96 PUserDatabase retval = (PUserDatabase) super.clone();
H A DPrivacy.java140 public Object clone() { method in class:Privacy
141 Privacy retval = (Privacy) super.clone();

Completed in 958 milliseconds

1234567891011>>