Searched defs:Hashtable (Results 1 - 9 of 9) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/rawSeparate/
H A DHashtable.java25 public class Hashtable<K,V> { class
/openjdk7/langtools/test/tools/javac/generics/
H A DInnerInterface1.java48 class Hashtable<K,V> implements Map<K,V> { class in inherits:Map
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHashtable.java32 public class Hashtable extends BasicHashtable { class in inherits:BasicHashtable
55 public Hashtable(Address addr) { method in class:Hashtable
59 // VM's Hashtable::hash_symbol
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.cpp26 #include "Hashtable.h"
28 Hashtable::Hashtable(const char* name, void (*deleteProc)(void*), function in class:Hashtable
50 Hashtable::~Hashtable()
59 BOOL Hashtable::contains(void* value) {
74 BOOL Hashtable::containsKey(void* key) {
86 void* Hashtable::get(void* key) {
98 void Hashtable::rehash() {
123 void* Hashtable
[all...]
H A DHashtable.h53 * Hashtable class. Maps keys to values. Any object can be used as
55 * from java.util.Hashtable.
57 class Hashtable { class
105 Hashtable(const char* name, void (*deleteProc)(void*) = NULL,
108 virtual ~Hashtable();
/openjdk7/jdk/test/java/util/Hashtable/
H A DSerializationDeadlock.java31 * @summary Serializing Hashtable objects which refer to each other should not be able to deadlock.
42 import java.util.Hashtable;
48 // Test for Hashtable serialization deadlock
49 final Hashtable<Object, Object> h1 = new Hashtable<>();
50 final Hashtable<Object, Object> h2 = new Hashtable<>();
70 System.out.println("Waiting for Hashtable serialization to complete ...");
99 private final Hashtable<Object, Object> hashtable;
102 public TestThread(final Hashtable<Objec argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java21 * $Id: Hashtable.java,v 1.2.4.1 2005/09/06 11:05:18 pvedula Exp $
58 public class Hashtable { class
69 public Hashtable(int initialCapacity, float loadFactor) { method in class:Hashtable
81 public Hashtable(int initialCapacity) { method in class:Hashtable
89 public Hashtable() { method in class:Hashtable
/openjdk7/jdk/src/share/classes/java/util/
H A DHashtable.java37 * An instance of <code>Hashtable</code> has two parameters that affect its
52 * <tt>Hashtable</tt> operations, including <tt>get</tt> and <tt>put</tt>).<p>
58 * <tt>Hashtable</tt> will contain divided by its load factor. However,
61 * If many entries are to be made into a <code>Hashtable</code>,
69 * Hashtable<String, Integer> numbers
70 * = new Hashtable<String, Integer>();
84 * <em>fail-fast</em>: if the Hashtable is structurally modified at any time
90 * The Enumerations returned by Hashtable's keys and elements methods are
106 * implementations, {@code Hashtable} is synchronized. If a
108 * {@link HashMap} in place of {@code Hashtable}
125 public class Hashtable<K,V> class in inherits:Dictionary,Map,Cloneable,java.io.Serializable
251 public Hashtable(int initialCapacity, float loadFactor) { method in class:Hashtable
274 public Hashtable(int initialCapacity) { method in class:Hashtable
282 public Hashtable() { method in class:Hashtable
295 public Hashtable(Map<? extends K, ? extends V> t) { method in class:Hashtable
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.hpp236 template <class T, MEMFLAGS F> class Hashtable : public BasicHashtable<F> { class in inherits:BasicHashtable
240 Hashtable(int table_size, int entry_size) function in class:Hashtable
243 Hashtable(int table_size, int entry_size, function in class:Hashtable
250 // Reverse the order of elements in each of the buckets. Hashtable
280 void move_to(Hashtable<T, F>* new_table);
294 template <class T, MEMFLAGS F> class TwoOopHashtable : public Hashtable<T, F> {
298 : Hashtable<T, F>(table_size, entry_size) {}
302 : Hashtable<T, F>(table_size, entry_size, t, number_of_entries) {}

Completed in 70 milliseconds