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

/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp784 class SymbolHashMapEntry : public CHeapObj<mtSymbol> { class in inherits:CHeapObj
787 SymbolHashMapEntry* _next; // Next element in the linked list for this bucket
795 SymbolHashMapEntry* next() const { return _next; }
796 void set_next(SymbolHashMapEntry* next) { _next = next; }
804 SymbolHashMapEntry(unsigned int hash, Symbol* symbol, u2 value) function in class:SymbolHashMapEntry
807 }; // End SymbolHashMapEntry class
813 SymbolHashMapEntry* _entry;
816 SymbolHashMapEntry* entry() const { return _entry; }
817 void set_entry(SymbolHashMapEntry* entry) { _entry = entry; }
859 SymbolHashMapEntry* bucke
[all...]

Completed in 2029 milliseconds