HomeSort by relevance Sort by last modified time
    Searched defs:CloneNotSupportedException (Results 1 - 25 of 36) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/lang/
CloneNotSupportedException.java 45 class CloneNotSupportedException extends Exception {
49 * Constructs a <code>CloneNotSupportedException</code> with no
52 public CloneNotSupportedException() {
57 * Constructs a <code>CloneNotSupportedException</code> with the
62 public CloneNotSupportedException(String s) {
Enum.java 161 * Throws CloneNotSupportedException. This guarantees that enums
167 protected final Object clone() throws CloneNotSupportedException {
168 throw new CloneNotSupportedException();
Thread.java 421 * Throws CloneNotSupportedException as a Thread can not be meaningfully
424 * @throws CloneNotSupportedException
428 protected Object clone() throws CloneNotSupportedException {
429 throw new CloneNotSupportedException();
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 45 public static Object clone(final Object obj) throws CloneNotSupportedException {
61 if (cause instanceof CloneNotSupportedException) {
62 throw ((CloneNotSupportedException) cause);
70 throw new CloneNotSupportedException();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyMessageDigest2.java 70 public Object clone() throws CloneNotSupportedException {
71 throw new CloneNotSupportedException();
  /libcore/ojluni/src/main/java/java/security/
MessageDigestSpi.java 196 * @exception CloneNotSupportedException if this is called on an
199 public Object clone() throws CloneNotSupportedException {
203 throw new CloneNotSupportedException();
SignatureSpi.java 382 * @exception CloneNotSupportedException if this is called
385 public Object clone() throws CloneNotSupportedException {
389 throw new CloneNotSupportedException();
MessageDigest.java 59 * and catching the CloneNotSupportedException:
70 * } catch (CloneNotSupportedException cnse) {
540 } catch (CloneNotSupportedException e) {
552 * @exception CloneNotSupportedException if this is called on an
555 public Object clone() throws CloneNotSupportedException {
559 throw new CloneNotSupportedException();
596 * @exception CloneNotSupportedException if this is called on a
599 public Object clone() throws CloneNotSupportedException {
613 throw new CloneNotSupportedException();
Signature.java     [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
MacSpi.java 143 * @exception CloneNotSupportedException if this is called
146 public Object clone() throws CloneNotSupportedException {
150 throw new CloneNotSupportedException();
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 44 public Object clone() throws CloneNotSupportedException {
45 throw new CloneNotSupportedException();
RemoteDevices.java 162 public Object clone() throws CloneNotSupportedException {
163 throw new CloneNotSupportedException();
    [all...]
AdapterProperties.java 231 public Object clone() throws CloneNotSupportedException {
232 throw new CloneNotSupportedException();
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
HashCodeAndEqualsSafeSet.java 78 @Override public Object clone() throws CloneNotSupportedException {
79 throw new CloneNotSupportedException();
  /frameworks/base/media/java/android/media/
JetPlayer.java 22 import java.lang.CloneNotSupportedException;
150 public Object clone() throws CloneNotSupportedException {
153 throw new CloneNotSupportedException();
RemoteControlClient.java 420 public Object clone() throws CloneNotSupportedException {
421 throw new CloneNotSupportedException();
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 212 protected Object clone() throws java.lang.CloneNotSupportedException {
213 throw new java.lang.CloneNotSupportedException();
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
EventBus.java 241 protected Object clone() throws CloneNotSupportedException {
289 protected Object clone() throws CloneNotSupportedException {
290 throw new CloneNotSupportedException();
311 protected Object clone() throws CloneNotSupportedException {
312 throw new CloneNotSupportedException();
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 1770 milliseconds

1 2