/external/nist-sip/java/gov/nist/core/ |
MultiValueMapImpl.java | 99 public Object clone() { method in class:MultiValueMapImpl 101 obj.map = (HashMap<Object, ArrayList<V>>) this.map.clone();
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PMediaAuthorization.java | 137 public Object clone() { method in class:PMediaAuthorization 138 PMediaAuthorization retval = (PMediaAuthorization) super.clone();
|
PServedUser.java | 159 public Object clone() { method in class:PServedUser 160 PServedUser retval = (PServedUser) super.clone();
|
PVisitedNetworkID.java | 155 public Object clone() { method in class:PVisitedNetworkID 156 PVisitedNetworkID retval = (PVisitedNetworkID) super.clone();
|
/external/proguard/src/proguard/ |
KeepClassSpecification.java | 126 public Object clone() method in class:KeepClassSpecification 130 return super.clone();
|
/external/proguard/src/proguard/classfile/editor/ |
AnnotationAdder.java | 109 // TODO: Clone array. 141 // TODO: Clone array.
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_nodeclonenodetrue.js | 83 method should clone this node and the subtree under it. 136 assertEqualsList("clone",expected,result);
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_nodeclonenodetrue.js | 83 method should clone this node and the subtree under it. 136 assertEqualsList("clone",expected,result);
|
/external/zlib/amiga/ |
Makefile.sas | 29 copy clone zlib.h zconf.h INCLUDE: 30 copy clone z.lib LIB:
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
StatusBarIconList.java | 114 mIcons[index] = icon.clone(); 149 this.mIcons[i] = that.mIcons[i] != null ? that.mIcons[i].clone() : null;
|
StatusBarNotification.java | 117 public StatusBarNotification clone() { method in class:StatusBarNotification 119 this.uid, this.initialPid, this.score, this.notification.clone());
|
/frameworks/compile/mclinker/include/mcld/Target/ |
ELFDynamic.h | 42 virtual EntryIF* clone() const = 0; 69 Entry* clone() const function in class:mcld::elf_dynamic::Entry
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodeclonenodetrue.java | 36 * method should clone this node and the subtree under it. 96 assertEquals("clone", expected, result);
|
/libcore/luni/src/main/java/java/security/ |
Timestamp.java | 58 // Clone timestamp to prevent modifications 105 return (Date) timestamp.clone();
|
/libcore/luni/src/main/java/java/security/cert/ |
CollectionCertStoreParameters.java | 73 public Object clone() { method in class:CollectionCertStoreParameters 75 return super.clone();
|
LDAPCertStoreParameters.java | 86 public Object clone() { method in class:LDAPCertStoreParameters 88 return super.clone();
|
PKIXCertPathChecker.java | 54 public Object clone() { method in class:PKIXCertPathChecker 56 return super.clone();
|
PKIXCertPathValidatorResult.java | 95 public Object clone() { method in class:PKIXCertPathValidatorResult 97 return super.clone();
|
PKIXParameters.java | 200 modifiableList.add((PKIXCertPathChecker) certPathChecker.clone()); 227 this.certPathCheckers.add((PKIXCertPathChecker) certPathChecker.clone()); 249 certPathCheckers.add((PKIXCertPathChecker) checker.clone()); 322 return date == null ? null : (Date)date.clone(); 504 :(CertSelector)targetCertConstraints.clone()); 516 : (CertSelector)targetCertConstraints.clone()); 524 public Object clone() { method in class:PKIXParameters 527 PKIXParameters ret = (PKIXParameters)super.clone();
|
/libcore/luni/src/main/java/java/text/ |
ChoiceFormat.java | 194 public Object clone() { method in class:ChoiceFormat 195 ChoiceFormat clone = (ChoiceFormat) super.clone(); local 196 clone.choiceLimits = choiceLimits.clone(); 197 clone.choiceFormats = choiceFormats.clone(); 198 return clone;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListSet.java | 63 * safety, which entails some ugliness in clone() 129 public ConcurrentSkipListSet<E> clone() { method in class:ConcurrentSkipListSet 130 ConcurrentSkipListSet<E> clone = null; local 132 clone = (ConcurrentSkipListSet<E>) super.clone(); 133 clone.setMap(new ConcurrentSkipListMap(m)); 138 return clone; 443 // Support for resetting map in clone
|
/libcore/luni/src/main/java/java/util/jar/ |
Attributes.java | 196 map = (Map<Object, Object>) ((HashMap) attrib.map).clone(); 348 public Object clone() { method in class:Attributes 349 Attributes clone; local 351 clone = (Attributes) super.clone(); 355 clone.map = (Map<Object, Object>) ((HashMap) map).clone(); 356 return clone;
|
/libcore/luni/src/main/java/javax/crypto/ |
MacSpi.java | 143 public Object clone() throws CloneNotSupportedException { method in class:MacSpi 144 return super.clone();
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLMessageDigestJDK.java | 87 public Object clone() throws CloneNotSupportedException { method in class:OpenSSLMessageDigestJDK 88 OpenSSLMessageDigestJDK d = (OpenSSLMessageDigestJDK) super.clone();
|
SSLContextImpl.java | 117 SSLParametersImpl p = (SSLParametersImpl) sslParameters.clone(); 127 SSLParametersImpl p = (SSLParametersImpl) sslParameters.clone();
|