Searched defs:java (Results 226 - 250 of 949) sorted by relevance

1234567891011>>

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DMissingFormatArgumentExceptionTest.java17 package org.apache.harmony.luni.tests.java.util;
19 import java.io.Serializable;
20 import java.util.MissingFormatArgumentException;
30 * @tests java.util.MissingFormatArgumentException#MissingFormatArgumentException(String)
43 * @tests java.util.MissingFormatArgumentException#getFormatSpecifier()
53 * @tests java.util.MissingFormatArgumentException#getMessage()
H A DMissingFormatWidthExceptionTest.java16 package org.apache.harmony.luni.tests.java.util;
18 import java.io.Serializable;
19 import java.util.MissingFormatWidthException;
29 * @tests java.util.MissingFormatWidthException#MissingFormatWidthException(String)
41 * @tests java.util.MissingFormatWidthException#getFormatSpecifier()
52 * @tests java.util.MissingFormatWidthException#getMessage()
H A DMissingResourceExceptionTest.java18 package org.apache.harmony.luni.tests.java.util;
20 import java.util.Locale;
21 import java.util.MissingResourceException;
22 import java.util.ResourceBundle;
27 * @tests java.util.MissingResourceException#MissingResourceException(java.lang.String,
28 * java.lang.String, java.lang.String)
31 // Test for method java.util.MissingResourceException(java
[all...]
H A DNoSuchElementExceptionTest.java18 package org.apache.harmony.luni.tests.java.util;
20 import java.util.NoSuchElementException;
21 import java.util.Vector;
26 * @tests java.util.NoSuchElementException#NoSuchElementException()
29 // Test for method java.util.NoSuchElementException()
42 * @tests java.util.NoSuchElementException#NoSuchElementException(java.lang.String)
45 // Test for method java.util.NoSuchElementException(java.lang.String)
H A DServiceConfigurationErrorTest.java18 package org.apache.harmony.luni.tests.java.util;
20 import java.util.ServiceConfigurationError;
27 * Tests for java.util.ServiceConfigurationError
34 * @tests {@link java.util.ServiceConfigurationError#ServiceConfigurationError(String)}
44 * @tests {@link java.util.ServiceConfigurationError#ServiceConfigurationError(String, Throwable)}
H A DTooManyListenersExceptionTest.java18 package org.apache.harmony.luni.tests.java.util;
20 import java.util.TooManyListenersException;
25 * @tests java.util.TooManyListenersException#TooManyListenersException()
28 // Test for method java.util.TooManyListenersException()
39 * @tests java.util.TooManyListenersException#TooManyListenersException(java.lang.String)
42 // Test for method java.util.TooManyListenersException(java.lang.String)
H A DUnknownFormatConversionExceptionTest.java16 package org.apache.harmony.luni.tests.java.util;
18 import java.io.Serializable;
19 import java.util.UnknownFormatConversionException;
29 * @tests java.util.UnknownFormatConversionException#UnknownFormatConversionException(String)
43 * @tests java.util.UnknownFormatConversionException#getConversion()
53 * @tests java.util.UnknownFormatConversionException#getMessage()
H A DUnknownFormatFlagsExceptionTest.java17 package org.apache.harmony.luni.tests.java.util;
19 import java.io.Serializable;
20 import java.util.UnknownFormatFlagsException;
30 * @tests java.util.UnknownFormatFlagsException#UnknownFormatFlagsException(String)
43 * @tests java.util.UnknownFormatFlagsException#getFlags()
53 * @tests java.util.UnknownFormatFlagsException#getMessage()
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixSocketTest.java18 package org.apache.harmony.luni.tests.java.net;
20 import java.io.IOException;
21 import java.io.InputStream;
22 import java.io.OutputStream;
23 import java.net.ConnectException;
24 import java.net.InetAddress;
25 import java.net.InetSocketAddress;
26 import java.net.ServerSocket;
27 import java.net.Socket;
28 import java
[all...]
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DBackingStoreExceptionTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.util.prefs.BackingStoreException;
H A DFilePreferencesImplTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.io.FilePermission;
20 import java.io.IOException;
21 import java.security.Permission;
22 import java.util.prefs.BackingStoreException;
23 import java.util.prefs.Preferences;
39 prevFactory = System.getProperty("java.util.prefs.PreferencesFactory");
40 System.setProperty("java.util.prefs.PreferencesFactory", "java.util.prefs.FilePreferencesFactoryImpl");
49 System.setProperty("java
[all...]
H A DInvalidPreferencesFormatExceptionTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.util.prefs.InvalidPreferencesFormatException;
H A DMockPreferencesFactory.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.util.prefs.Preferences;
20 import java.util.prefs.PreferencesFactory;
H A DNodeChangeEventTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.io.NotSerializableException;
20 import java.util.prefs.NodeChangeEvent;
21 import java.util.prefs.Preferences;
H A DPreferenceChangeEventTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.io.NotSerializableException;
20 import java.util.prefs.PreferenceChangeEvent;
21 import java.util.prefs.Preferences;
H A DPreferenceChangeListenerTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.util.prefs.PreferenceChangeEvent;
20 import java.util.prefs.PreferenceChangeListener;
21 import java.util.prefs.Preferences;
H A DPreferencesFactoryTest.java17 package org.apache.harmony.prefs.tests.java.util.prefs;
19 import java.util.prefs.Preferences;
20 import java.util.prefs.PreferencesFactory;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DAccessControlException2Test.java18 package org.apache.harmony.security.tests.java.security;
20 import java.io.FilePermission;
21 import java.security.AccessControlException;
31 * @tests java.security.AccessControlException#AccessControlException(java.lang.String)
35 // java.security.AccessControlException(java.lang.String)
37 + "'java.security.AccessControlException: test message' but "
39 .equals("java.security.AccessControlException: test message"));
43 * @tests java
[all...]
H A DAccessControlExceptionTest.java22 package org.apache.harmony.security.tests.java.security;
24 import java.security.*;
H A DIdentityScopeTest.java22 package org.apache.harmony.security.tests.java.security;
23 import java.security.*;
H A DInvalidParameterExceptionTest.java22 package org.apache.harmony.security.tests.java.security;
23 import java.security.InvalidParameterException;
H A DKSCallbackHandlerProtectionTest.java22 package org.apache.harmony.security.tests.java.security;
24 import java.security.KeyStore;
H A DKSSecretKeyEntryTest.java22 package org.apache.harmony.security.tests.java.security;
24 import java.security.*;
H A DKSTrustedCertificateEntryTest.java22 package org.apache.harmony.security.tests.java.security;
23 import java.security.*;
24 import java.security.cert.Certificate;
H A DKeyPairGenerator3Test.java22 package org.apache.harmony.security.tests.java.security;
23 import java.security.*;

Completed in 311 milliseconds

1234567891011>>