Searched refs:dictionary (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/test/javax/swing/JSlider/4987336/
H A Dbug4987336.java73 Hashtable<Integer, JComponent> dictionary = new Hashtable<Integer, JComponent>();
75 dictionary.put(0, createLabel(firstEnabledImage, firstDisabledImage));
76 dictionary.put(1, createLabel(secondEnabledImage, secondDisabledImage));
80 result.setLabelTable(dictionary);
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp26 #include "classfile/dictionary.hpp"
294 // Don't add a placedholder if already loaded, i.e. already in system dictionary
298 // (every instanceKlass in the heap needs to be in the system dictionary
309 unsigned int d_hash = dictionary()->compute_hash(child_name, class_loader);
310 int d_index = dictionary()->hash_to_index(d_hash);
421 unsigned int d_hash = dictionary()->compute_hash(kn, class_loader);
422 int d_index = dictionary()->hash_to_index(d_hash);
434 dictionary()->add_protection_domain(d_index, d_hash, klass, class_loader,
499 unsigned int d_hash = dictionary()->compute_hash(name, class_loader);
500 int d_index = dictionary()
[all...]
H A DloaderConstraints.cpp434 void LoaderConstraintTable::verify(Dictionary* dictionary, argument
446 unsigned int d_hash = dictionary->compute_hash(name, loader);
447 int d_index = dictionary->hash_to_index(d_hash);
448 klassOop k = dictionary->find_class(d_index, d_hash, name, loader);
450 // We found the class in the system dictionary, so we should
452 guarantee(k == probe->klass(), "klass should be in dictionary");
454 // If we don't find the class in the system dictionary, it
476 // Called with the system dictionary lock held
H A DloaderConstraints.hpp28 #include "classfile/dictionary.hpp"
91 void verify(Dictionary* dictionary, PlaceholderTable* placeholders);
H A DsystemDictionary.hpp38 // The system dictionary stores all loaded classes and maps:
56 // dictionary and the place holder is removed. Note that the protection
57 // domain field of the system dictionary has not yet been filled in when
58 // the "real" system dictionary entry is created.
250 // Parse new stream. This won't update the system dictionary or
309 // Iterate over all klasses in dictionary
322 // Iterate over all methods in all klasses in dictionary
340 // Applies "f->do_oop" to all root oops in the system dictionary.
384 // Verify class is in dictionary
532 _old_default_sdsize = 1009, // backward compat for system dictionary siz
583 static Dictionary* dictionary() { return _dictionary; } function in class:SystemDictionary
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSystemDictionary.java84 public Dictionary dictionary() { method in class:SystemDictionary
156 Dictionary dict = dictionary();
162 /** Interface for iterating through all classes in dictionary */
168 loaders in dictionary */
187 /** Iterate over all klasses in dictionary; just the classes from
190 dictionary().classesDo(v);
195 dictionary().classesDo(v);
/openjdk7/jdk/src/share/classes/java/text/
H A DDictionaryBasedBreakIterator.java51 * A subclass of RuleBasedBreakIterator that adds the ability to use a dictionary
57 * repeatedly compared against a list of known words (i.e., the dictionary)
61 * but adds one more special substitution name: &lt;dictionary&gt;. This substitution
62 * name is used to identify characters in words in the dictionary. The idea is that
64 * in a row that are included in &lt;dictionary&gt;, it goes back through that range and
65 * derives additional break positions (if possible) using the dictionary.
67 * DictionaryBasedBreakIterator is also constructed with the filename of a dictionary
68 * file. It follows a prescribed search path to locate the dictionary (right now,
71 * dictionary file is in a serialized binary format. We have a very primitive (and
72 * slow) BuildDictionaryFile utility for creating dictionary file
81 private BreakDictionary dictionary; field in class:DictionaryBasedBreakIterator
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DPresentationManagerImpl.java117 private Map dictionary ; field in class:PresentationManagerImpl.ClassDataImpl
135 dictionary = new HashMap() ;
160 return dictionary ;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java400 Dictionary dictionary = slider.getLabelTable();
401 if (dictionary != null) {
403 Enumeration elements = dictionary.elements();
756 Dictionary dictionary = slider.getLabelTable();
758 if ( dictionary != null ) {
759 Enumeration keys = dictionary.keys();
761 JComponent label = (JComponent) dictionary.get(keys.nextElement());
769 Dictionary dictionary = slider.getLabelTable();
771 if ( dictionary != null ) {
772 Enumeration keys = dictionary
[all...]
/openjdk7/jdk/src/macosx/native/java/util/
H A DSCDynamicStoreConfig.m100 NSMutableDictionary *dict = [NSMutableDictionary dictionary];
202 NSMutableDictionary *dict = [NSMutableDictionary dictionary];
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzlib.h454 If a preset dictionary is needed after this call (see inflateSetDictionary
455 below), inflate sets strm->adler to the adler32 checksum of the dictionary
473 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
563 const Bytef *dictionary,
566 Initializes the compression dictionary from the given byte sequence
570 dictionary (see inflateSetDictionary).
572 The dictionary should consist of strings (byte sequences) that are likely
574 used strings preferably put towards the end of the dictionary. Using a
575 dictionary is most useful when the data to be compressed is short and can be
577 with the default empty dictionary
[all...]
H A Dinflate.c338 It is also called to create a window for dictionary data when a dictionary
1193 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
1195 const Bytef *dictionary;
1207 /* check for correct dictionary id */
1210 id = adler32(id, dictionary, dictLength);
1215 /* copy dictionary to window */
1221 zmemcpy(state->window, dictionary + dictLength - state->wsize,
1226 zmemcpy(state->window + state->wsize - dictLength, dictionary,
1231 Tracev((stderr, "inflate: dictionary se
[all...]
H A Ddeflate.c40 * dictionary are very simple and thus fast, and deletions are avoided
198 * Insert string str in the dictionary and set match_head to the previous head
339 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
341 const Bytef *dictionary;
349 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
356 strm->adler = adler32(strm->adler, dictionary, dictLength);
361 dictionary += dictLength - length; /* use the tail of the dictionary */
363 zmemcpy(s->window, dictionary, length);
667 /* Save the adler32 of the preset dictionary
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp97 // We have all of "mr", all of which we place in the dictionary
99 // possible alternative dictionary implementations to use. For
113 assert(_dictionary != NULL, "CMS dictionary initialization");
271 dictionary()->reset();
304 // provided it was big enough to go into the dictionary.
305 FreeChunk* fc = dictionary()->find_largest_dict();
318 // Walks the entire dictionary, returning a coterminal
325 return dictionary()->find_chunk_ends_at(end());
363 num += dictionary()->total_count();
1256 // else get it from the big dictionary; i
[all...]
H A DcompactibleFreeListSpace.hpp133 FreeBlockDictionary<FreeChunk>* _dictionary; // ptr to dictionary for large size blocks
159 // a lock protecting the dictionary during par promotion allocation.
219 // Get a chunk in the indexed free list or dictionary,
226 // Remove the specified chunk from the dictionary.
241 // Add a free chunk to the dictionary.
292 FreeBlockDictionary<FreeChunk>* dictionary() const { return _dictionary; } function in class:CompactibleFreeListSpace
500 // i.e. either the binary tree dictionary, the indexed free lists
H A DconcurrentMarkSweepGeneration.cpp2061 assert(cms_space->dictionary()->total_chunk_size(
6202 (HeapWord*) _cmsSpace->dictionary()->find_largest_dict();
6204 // The dictionary appears to be empty. In this case
7978 _sp->dictionary()->initialize_dict_returned_bytes();
8026 size_t dict_returned_bytes = _sp->dictionary()->sum_dict_returned_bytes();
9317 // Have to remove the chunk from the dictionary because it is changing
9318 // size and might be someplace elsewhere in the dictionary.
9340 NOT_PRODUCT(_cmsSpace->dictionary()->verify());
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCPrinterJob.m318 NSMutableDictionary* printingDictionary = [src dictionary];
364 NSMutableDictionary* printingDictionary = [dst dictionary];
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthSliderUI.java395 Dictionary dictionary = slider.getLabelTable();
396 if (dictionary != null) {
400 // Iterate through the keys in the dictionary and find the
405 for (Enumeration keys = dictionary.keys();
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAS_NS_ConversionUtils.m238 NSMutableDictionary *resultDict = [NSMutableDictionary dictionary];

Completed in 1079 milliseconds