Searched refs:key (Results 176 - 200 of 1411) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/file/WatchService/
H A DFileTreeModifier.java44 WatchKey key;
46 key = watcher.take();
51 WatchEvent<?> event = key.pollEvents().iterator().next();
69 WatchKey key = top.register(watcher,
75 key.reset();
81 if (k != key)
82 throw new RuntimeException("Existing key not returned");
87 key.reset();
92 if (k != key)
93 throw new RuntimeException("Existing key no
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DResultSet.java140 Object key = enum_.nextElement();
141 if (!ignoreprops.containsKey(key)) {
142 props.put(key, sysprops.get(key));
173 String key = preferredkeys[i];
174 pw.println(" <sys-prop key=\""+key+
175 "\" value=\""+props.get(key)+"\"/>");
179 Object key = enum_.nextElement();
180 if (!preferprops.containsKey(key)) {
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyFactorySpi.java36 * of a key factory for a particular algorithm.
39 * cryptographic keys of type <code>Key</code>) into <I>key specifications</I>
40 * (transparent representations of the underlying key material), and vice
44 * opaque key object from a given key specification (key material), or to
45 * retrieve the underlying key material of a key object in a suitable format.
47 * <P> Multiple compatible key specifications may exist for the same key
122 engineGetKeySpec(Key key, Class<T> keySpec) argument
137 engineTranslateKey(Key key) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DPropertiesUtilities.h32 + (NSString *) javaSystemPropertyForKey:(NSString *)key withEnv:(JNIEnv *)env;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/localization/
H A DLocalizableMessage.java37 public LocalizableMessage(String bundlename, String key, Object... args) { argument
39 _key = key;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/
H A DProcessorException.java40 public ProcessorException(String key, Object... args) { argument
41 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModelException.java41 public ModelException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/
H A DModelerException.java41 public ModelerException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DExceptionHasMessage.java43 public ExceptionHasMessage(String key, Object... args) { argument
44 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DSenderException.java36 public SenderException(String key, Object... args) { argument
37 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerException.java41 public HandlerException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModelerException.java40 public RuntimeModelerException(String key, Object... args) { argument
41 super(key, args);
/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 DLocalizableMessage.java37 public LocalizableMessage(String bundlename, String key, Object... args) { argument
39 _key = key;
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DLotsOfUpdates.java32 SelectionKey key = sc.register(sel, 0);
34 key.interestOps(0);
/openjdk7/jdk/test/java/util/HashMap/
H A DSetValue.java34 static final String key = "key"; field in class:SetValue
40 m.put(key, oldValue);
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DKeySetTest.java58 for (String key : fullKeys) {
59 if (!rb.containsKey(key)) {
60 throw new RuntimeException("rb doesn't contain: " + key);
63 for (String key : new String[] { "snack", "beer" }) {
64 if (rb.containsKey(key)) {
65 throw new RuntimeException("rb contains: " + key);
102 protected Object handleGetObject(String key) { argument
104 return m.invoke(bundle, key);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSCredentialImpl.java39 * key. This makes it easy to locate the specific kind of credential we
101 SearchKey key = new SearchKey(mechElement.getMechanism(),
104 hashtable.put(key, tempCred);
140 SearchKey key = null;
145 key = new SearchKey(mech, GSSCredential.INITIATE_ONLY);
146 element = hashtable.get(key);
149 key = new SearchKey(mech, GSSCredential.ACCEPT_ONLY);
150 element = hashtable.get(key);
154 key = new SearchKey(mech, GSSCredential.INITIATE_AND_ACCEPT);
155 element = hashtable.get(key);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DJAXPValidationMessageFormatter.java41 * @param key The message key.
49 * specified key cannot be found.
52 String key, Object[] arguments)
68 msg = resourceBundle.getString(key);
75 msg += " " + resourceBundle.getString(key);
83 throw new MissingResourceException(key, msg, key);
88 msg = key;
51 formatMessage(Locale locale, String key, Object[] arguments) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDatatypeMessageFormatter.java43 * @param key The message key.
51 * specified key cannot be found.
54 String key, Object[] arguments)
70 msg = resourceBundle.getString(key);
77 msg += " " + resourceBundle.getString(key);
85 throw new MissingResourceException(key, msg, key);
90 msg = key;
53 formatMessage(Locale locale, String key, Object[] arguments) argument
H A DSAXMessageFormatter.java41 * @param key The message key.
49 * specified key cannot be found.
52 String key, Object[] arguments)
68 msg = resourceBundle.getString(key);
75 msg += " " + resourceBundle.getString(key);
83 throw new MissingResourceException(key, msg, key);
88 msg = key;
51 formatMessage(Locale locale, String key, Object[] arguments) argument

Completed in 219 milliseconds

1234567891011>>