Searched refs:Dictionary (Results 1 - 25 of 33) sorted by relevance

12

/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/src/share/vm/classfile/
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...]
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 DloaderConstraints.hpp91 void verify(Dictionary* dictionary, PlaceholderTable* placeholders);
H A DsystemDictionary.hpp74 class Dictionary;
546 static Dictionary* _dictionary;
552 static Dictionary* _shared_dictionary;
583 static Dictionary* dictionary() { return _dictionary; }
584 static Dictionary* shared_dictionary() { return _shared_dictionary; }
H A DloaderConstraints.cpp434 void LoaderConstraintTable::verify(Dictionary* dictionary,
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRenderedImage.java38 import java.util.Dictionary;
/openjdk7/jdk/test/java/beans/Performance/
H A DTest7184799.java59 Dictionary.class,
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DMockAttributeSet.java27 import java.util.Dictionary;
38 public Dictionary<Object, Object> backing;
H A DRTFReader.java57 Dictionary<Object, Object> parserState; /* Current parser state */
65 /** This Dictionary maps Integer font numbers to String font names. */
66 Dictionary<Integer, String> fontTable;
89 static private Dictionary<String, RTFAttribute> straightforwardAttributes;
99 static Dictionary<String, String> textKeywords = null;
132 static Dictionary<String, char[]> characterSets;
223 Dictionary<String, Object> saveState = (Dictionary<String, Object>)((Hashtable)parserState).clone();
245 Dictionary<Object, Object> restoredState = (Dictionary<Objec
[all...]
H A DRTFAttributes.java134 static Dictionary<String, RTFAttribute> attributesByKeyword()
136 Dictionary<String, RTFAttribute> d = new Hashtable<String, RTFAttribute>(attributes.length);
H A DRTFGenerator.java55 Dictionary<Object, Integer> colorTable;
57 Dictionary<String, Integer> fontTable;
59 Dictionary<AttributeSet, Integer> styleTable;
99 Dictionary textKeywordDictionary = RTFReader.textKeywords;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSystemDictionary.java84 public Dictionary dictionary() {
86 return (Dictionary) VMObjectFactory.newObject(Dictionary.class, tmp);
89 public Dictionary sharedDictionary() {
91 return (Dictionary) VMObjectFactory.newObject(Dictionary.class, tmp);
156 Dictionary dict = dictionary();
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/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtableEnumerator.java35 import java.util.Dictionary;
H A DIdentityHashtable.java35 import java.util.Dictionary;
55 public final class IdentityHashtable extends Dictionary {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSlider.java137 * {@code Dictionary} of what labels to draw at which values
139 private Dictionary labelTable;
791 * @return the <code>Dictionary</code> containing labels and
794 public Dictionary getLabelTable() {
816 * @param labels new {@code Dictionary} of labels, or {@code null} to
827 public void setLabelTable( Dictionary labels ) {
828 Dictionary oldTable = labelTable;
849 Dictionary labelTable = getLabelTable();
863 Dictionary labelTable = getLabelTable();
1014 Dictionary labelTabl
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTestSeq.java26 import java.util.Dictionary;
182 public void findTemplates(Dictionary templates) {
H A DParser.java39 import java.util.Dictionary;
315 Dictionary space = (Dictionary)_namespaces.get(namespace);
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCoreTextSupport.m53 #pragma mark --- Retain/Release CoreText State Dictionary ---
56 * Gets a Dictionary filled with common details we want to use for CoreText
82 * Releases the CoreText Dictionary - in the future we should hold on
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java28 import java.util.Dictionary;
78 class Cache extends Dictionary {
/openjdk7/corba/src/share/classes/org/omg/CosNaming/
H A D_BindingIteratorImplBase.java46 private static java.util.Dictionary _methods = new java.util.Hashtable();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java30 import java.util.Dictionary;
694 Dictionary cache = (Dictionary)getDocument().
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java31 import java.util.Dictionary;
400 Dictionary dictionary = slider.getLabelTable();
756 Dictionary dictionary = slider.getLabelTable();
769 Dictionary dictionary = slider.getLabelTable();
845 Dictionary dictionary = slider.getLabelTable();
874 Dictionary dictionary = slider.getLabelTable();
1124 Dictionary dictionary = slider.getLabelTable();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractDocument.java161 * @return a non-<code>null</code> <code>Dictionary</code>
164 public Dictionary<Object,Object> getDocumentProperties() {
177 public void setDocumentProperties(Dictionary<Object,Object> x) {
1484 private Dictionary<Object,Object> documentProperties = null;

Completed in 1367 milliseconds

12