Searched defs:Dictionary (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java29 * The <code>Dictionary</code> class is the abstract parent of any
31 * Every key and every value is an object. In any one <tt>Dictionary</tt>
33 * <tt>Dictionary</tt> and a key, the associated element can be looked up.
50 class Dictionary<K,V> { class
55 public Dictionary() { method in class:Dictionary
82 * @see java.util.Dictionary#elements()
94 * @see java.util.Dictionary#keys()
110 * @see java.util.Dictionary#put(java.lang.Object, java.lang.Object)
139 * @see java.util.Dictionary#get(java.lang.Object)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDictionary.java34 public class Dictionary extends TwoOopHashtable { class in inherits:TwoOopHashtable
45 Type type = db.lookupType("Dictionary");
48 public Dictionary(Address addr) { method in class:Dictionary
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp39 class Dictionary : public TwoOopHashtable<klassOop, mtClass> { class in inherits:TwoOopHashtable
65 Dictionary(int table_size);
66 Dictionary(int table_size, HashtableBucket<mtClass>* t, int number_of_entries);
H A Ddictionary.cpp34 DictionaryEntry* Dictionary::_current_class_entry = NULL;
35 int Dictionary::_current_class_index = 0;
38 Dictionary::Dictionary(int table_size) function in class:Dictionary
46 Dictionary::Dictionary(int table_size, HashtableBucket<mtClass>* t, function in class:Dictionary
54 DictionaryEntry* Dictionary::new_entry(unsigned int hash, klassOop klass,
64 DictionaryEntry* Dictionary::new_entry() {
72 void Dictionary::free_entry(DictionaryEntry* entry) {
134 bool Dictionary
[all...]

Completed in 30 milliseconds