Searched defs:dictionary (Results 1 - 6 of 6) sorted by relevance

/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: <dictionary>. 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 <dictionary>, 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/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/hotspot/src/share/vm/classfile/
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 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/src/share/vm/gc_implementation/concurrentMarkSweep/
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

Completed in 37 milliseconds