Searched defs:Key (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DKey.java29 * The Key interface is the top-level interface for all keys. It
67 * Internet X.509 Public Key Infrastructure Certificate and CRL Profile</a>.
83 * <p> A Key should use KeyRep as its serialized representation.
84 * Note that a serialized Key may contain sensitive information
103 public interface Key extends java.io.Serializable { interface in inherits:java.io.Serializable
H A DProtectionDomain.java116 final Key key = new Key();
451 final class Key {} class in class:ProtectionDomain
458 private final Map<Key, PermissionCollection> map =
460 (new WeakHashMap<Key, PermissionCollection>());
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DKey.java40 abstract class Key implements java.security.Key, Length class in inherits:java.security.Key,Length
47 // Key length
51 * Construct a Key object.
53 protected Key(long hCryptProv, long hCryptKey, int keyLength) method in class:Key
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DKey.java21 * $Id: Key.java,v 1.6 2006/04/25 02:25:08 jeffsuttor Exp $
57 final class Key extends TopLevelElement { class in inherits:TopLevelElement
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DContext.java49 * protected static final Context.Key<Phase> phaseKey =
50 * new Context.Key<Phase>();
102 public static class Key<T> { class in class:Context
118 * Key<T> -> T or Key<T> -> Factory<T> */
119 private Map<Key<?>,Object> ht = new HashMap<Key<?>,Object>();
122 public <T> void put(Key<T> key, Factory<T> fac) {
132 public <T> void put(Key<T> key, T data) {
142 public <T> T get(Key<
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DActiveObjectMap.java47 public static class Key { class in class:ActiveObjectMap
50 Key(byte[] id) { method in class:ActiveObjectMap.Key
65 if (!(key instanceof Key))
67 Key k = (Key) key;
100 private Map keyToEntry = new HashMap() ; // Map< Key, AOMEntry >
109 public final boolean containsKey(Key key)
117 public final AOMEntry get(Key key)
133 public abstract Key getKey(AOMEntry value) throws WrongPolicy ;
135 public Key getKe
[all...]
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DBaseLocale.java68 CACHE.put(new Key(language, region), base);
85 Key key = new Key(language, script, region, variant);
166 private static final class Key implements Comparable<Key> { class in class:BaseLocale
175 * Creates a Key. language and region must be normalized
178 private Key(String language, String region) { method in class:BaseLocale.Key
198 public Key(String language, String script, String region, String variant) { method in class:BaseLocale.Key
202 private Key(String language, String script, String region, method in class:BaseLocale.Key
248 (obj instanceof Key)
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java76 * subclass the associated {@link RenderingHints.Key} class.
80 * which subclass the {@code Key} class and defining the associated values.
94 public abstract static class Key { class in class:RenderingHints
99 // - the name of the subclass of Key
100 // - the identityHashCode of the subclass of Key
101 // - the integer key of the Key
113 private synchronized static void recordIdentity(Key k) {
117 Key otherkey = (Key) ((WeakReference) otherref).get();
127 // will replace the entry for the old Key subclas
156 protected Key(int privatekey) { method in class:RenderingHints.Key
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunHints.java44 public static class Key extends RenderingHints.Key { class in class:SunHints
49 * subclass of Key maintains its own unique domain of integer
54 * pre-existing instance of that subclass of Key.
56 public Key(int privatekey, String description) { method in class:SunHints.Key
62 * Returns the numeric index associated with this Key. This
71 * Returns a string representation of the Key.
79 * for this Key.
97 private SunHints.Key myKey;
104 private synchronized static void register(SunHints.Key ke
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp2419 static char * kvGet (char * kvList, const char * Key) { argument
2421 size_t n = strlen (Key) ;
2424 if (strncmp (Search, Key, n) == 0) {
2432 static int kvGetInt (char * kvList, const char * Key, int Default) { argument
2433 char * v = kvGet (kvList, Key) ;
2436 ::printf (" SyncKnob: %s %d(%d)\n", Key, rslt, Default) ;
2452 // SyncKnobs consist of <Key>=<Value> pairs in the style
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c1135 cmsBool IsAvailableOnList(KEYVALUE* p, const char* Key, const char* Subkey, KEYVALUE** LastPtr) argument
1143 if (*Key != '#') { // Comments are ignored
1145 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1171 KEYVALUE* AddToList(cmsIT8* it8, KEYVALUE** Head, const char *Key, const char *Subkey, const char* xValue, WRITEMODE WriteAs) argument
1179 if (IsAvailableOnList(*Head, Key, Subkey, &p)) {
1183 // return SynError(it8, "duplicate key <%s>", Key);
1198 p->Keyword = AllocString(it8, Key);
1239 KEYVALUE* AddAvailableProperty(cmsIT8* it8, const char* Key, WRITEMODE as) argument
1241 return AddToList(it8, &it8->ValidKeywords, Key, NULL, NULL, as);
1246 KEYVALUE* AddAvailableSampleID(cmsIT8* it8, const char* Key) argument
1365 cmsIT8SetPropertyStr(cmsHANDLE hIT8, const char* Key, const char *Val) argument
1395 cmsIT8SetPropertyUncooked(cmsHANDLE hIT8, const char* Key, const char* Buffer) argument
1402 cmsIT8SetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char* SubKey, const char *Buffer) argument
1410 cmsIT8GetProperty(cmsHANDLE hIT8, const char* Key) argument
1430 cmsIT8GetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char *SubKey) argument
1932 KEYVALUE* Key; local
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java34 static class Key { class in class:JRSUIConstants
36 public static final Key VALUE = new Key(_value);
39 public static final Key THUMB_PROPORTION = new Key(_thumbProportion);
42 public static final Key THUMB_START = new Key(_thumbStart);
45 public static final Key WINDOW_TITLE_BAR_HEIGHT = new Key(_windowTitleBarHeight);
48 public static final Key ANIMATION_FRAM
53 private Key(final int constant) { method in class:JRSUIConstants.Key
[all...]

Completed in 724 milliseconds