Searched defs:key (Results 126 - 150 of 907) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerRtException.java35 public ServerRtException(String key, Object... args) { argument
36 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DXMLReaderException.java41 public XMLReaderException(String key, Object... args) { argument
42 super(key, args);
H A DXMLStreamReaderException.java41 public XMLStreamReaderException(String key, Object... args) { argument
42 super(key, args);
H A DXMLStreamWriterException.java41 public XMLStreamWriterException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DUtilException.java40 public UtilException(String key, Object... args) { argument
41 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/localization/
H A DLocalizableImpl.java34 private final String key; field in class:LocalizableImpl
38 public LocalizableImpl(String key, Object[] arguments, String resourceBundleName) { argument
39 this.key = key;
45 return key;
H A DLocalizableMessageFactory.java39 public Localizable getMessage(String key, Object... args) { argument
40 return new LocalizableMessage(_bundlename, key, args);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dswing_GTKStyle.c86 JNIEnv *env, jclass klass, jint widget_type, jstring key)
90 ret = gtk2_get_class_value(env, widget_type, key);
85 Java_com_sun_java_swing_plaf_gtk_GTKStyle_nativeGetClassValue( JNIEnv *env, jclass klass, jint widget_type, jstring key) argument
/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DNullTransportService.java61 public void stopListening(ListenKey key) throws IOException { argument
65 public Connection accept(ListenKey key, long acceptTimeout, argument
/openjdk7/jdk/test/java/awt/Choice/ChoiceKeyEventReaction/
H A DChoiceKeyEventReaction.java91 public void testKeyOnChoice(int button, int key){ argument
100 robot.keyPress(key);
101 robot.keyRelease(key);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_util_HashMap.java43 map.put("key", "value");
44 map.put("key-null", "null-value");
53 map.put("key", "value");
54 map.put("key-null", null);
69 validate(map, "key", "value");
70 validate(map, "key-null", null);
74 validate(map, "key", "value");
75 validate(map, "key-null", "null-value");
81 private static void validate(Map<String, String> map, String key, String value) { argument
82 if (!map.containsKey(key))
[all...]
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DClassPathTest.java122 String nameToClassName(String key) { argument
123 String key2 = key.replace('/', File.separatorChar);
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyFactory.java53 * Test that key1 (reference key) and key2 (key to be tested) are
77 private static void testPublic(KeyFactory kf, PublicKey key) throws Exception { argument
78 System.out.println("Testing public key...");
79 PublicKey key2 = (PublicKey)kf.translateKey(key);
80 KeySpec rsaSpec = kf.getKeySpec(key, RSAPublicKeySpec.class);
82 KeySpec x509Spec = kf.getKeySpec(key, X509EncodedKeySpec.class);
84 KeySpec x509Spec2 = new X509EncodedKeySpec(key.getEncoded());
86 testKey(key, key);
93 testPrivate(KeyFactory kf, PrivateKey key) argument
117 test(KeyFactory kf, Key key) argument
[all...]
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DClosedChannelList.java34 SelectionKey key; field in class:ClosedChannelList.Element
35 Element (long l, SelectionKey key) { argument
37 this.key = key;
49 public synchronized void add (SelectionKey key) { argument
51 list.add (new Element (exp, key));
68 SelectionKey k = elm.key;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DFormattable.java59 String key; field in class:Formattable.LocalizedString
61 public LocalizedString(String key) { argument
62 this.key = key;
66 return messages.getLocalizedString(l, key);
73 return key;
H A DMessages.java54 * @param key locale-independent message key
58 String getLocalizedString(Locale l, String key, Object... args); argument
/openjdk7/langtools/test/tools/javac/6457284/
H A DT6457284.java73 public String getLocalizedString(String key, Object... args) { argument
74 if (key.equals("compiler.misc.unnamed.package"))
75 return key;
77 return super.getLocalizedString(key, args);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_string.c46 * this works out perfect. Any key in this table can be used as
52 * the sake of hprof_table.c, but so that the key can be used as a char*.
98 void *key; local
101 table_get_key(gdata->string_table, index, &key, &key_len);
103 return (char*)key;
109 void *key; local
112 table_get_key(gdata->string_table, index, &key, &key_len);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DKeyCache.java79 synchronized P11Key get(Key key) { argument
80 P11Key p11Key = (P11Key)strongCache.get(new IdentityWrapper(key));
89 return map.get(key);
92 synchronized void put(Key key, P11Key p11Key) { argument
93 strongCache.put(new IdentityWrapper(key), p11Key);
100 map.put(key, p11Key);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAKeyFactory.java48 * This class implements the DSA key factory of the Sun provider.
60 private static final String SERIAL_PROP = "sun.security.key.serial.interop";
67 * a key object serialized in JDK 5.0 must be deserializable in
82 * Generates a public key object from the provided key specification
83 * (key material).
85 * @param keySpec the specification (key material) of the public key
87 * @return the public key
89 * @exception InvalidKeySpecException if the given key specificatio
178 engineGetKeySpec(Key key, Class<T> keySpec) argument
256 engineTranslateKey(Key key) argument
[all...]
H A DKeyProtector.java50 * This is how the algorithm works for key protection:
54 * X - xor key
55 * P - to-be-protected key
56 * Y - protected key
68 * Repeat this step until the length of X matches the length of the private key
77 * (NOTE: digest(p, P) is stored in the result buffer, so that when the key is
78 * recovered, we can check if the recovered key indeed matches the original
79 * key.) R is stored in the keystore.
81 * The protected key is recovered as follows:
87 * Step 3 (XOR operation) yields the plaintext key
161 protect(Key key) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DKeyUtil.java44 * A utility class to get key length, valiate keys, etc.
49 * Returns the key size of the given key object in bits.
51 * @param key the key object, cannot be null
52 * @return the key size of the given key object in bits, or -1 if the
53 * key size is not accessible
55 public static final int getKeySize(Key key) { argument
58 if (key instanceo
108 validate(Key key) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DUIAction.java72 public Object getValue(String key) { argument
73 if (key == NAME) {
80 public void putValue(String key, Object value) { argument
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DCompilerMember.java47 String key; field in class:CompilerMember
62 if (key==null)
63 key = name+sig;
64 return key;
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DExtension.java36 private final char key; field in class:Extension
39 protected Extension(char key) { argument
40 this.key = key;
43 Extension(char key, String value) { argument
44 this.key = key;
50 this.id = key + LanguageTag.SEP + value;
54 return key;

Completed in 87 milliseconds

1234567891011>>