Lines Matching refs:key

1014 		    String key = (String)en.nextElement();
1018 if (!key.equals(typeKey)) {
1019 BtreeVector bvec = (BtreeVector)ttable.get(key);
1341 // original. Values are hashtables with key being scope name,
1342 // values are hashtables with lang tag key. Ultimate values are
1933 * Return a Hashtable with the key FS_SERVICES matched to the
1934 * hashtable of ServiceURL objects as key and a vector
1935 * of their scopes as value, and the key FS_SIGTABLE
1936 * matched to a hashtable with ServiceURL objects as key
1940 * key returns null. If there are no
1948 * @return A Hashtable with the key FS_SERVICES matched to the
1949 * hashtable of ServiceURL objects as key and a vector
1950 * of their scopes as value, and the key FS_SIGTABLE
1951 * matched to a hashtable with ServiceURL objects as key
2068 * Return a Hashtable with key FA_ATTRIBUTES matched to the
2069 * vector of ServiceLocationAttribute objects and key FA_SIG
2081 * as the key and the auth block Hashtable for the attributes
2544 // Make key for scope/type/language table.
2670 // BtreeVector with attribute as the sort key.
3457 // Hash key calculations and hash table structuring.
3460 // Return a key for type and scope.
3467 // Make a hash key consisting of the scope and service type.
3477 // Return the key's scope.
3479 final private String keyScope(String key) {
3480 int idx = key.indexOf('/');
3484 ret = key.substring(0, idx);
3491 // Return the key's service type/NA.
3493 final private String keyServiceType(String key) {
3494 int idx = key.indexOf('/');
3496 int len = key.length();
3499 ret = key.substring(idx+1, len);