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

/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp33 class Dict;
43 typedef void (*FuncDict)(const void *key, const void *val, Dict *d);
45 class Dict : public ResourceObj { // Dictionary structure class in inherits:ResourceObj
59 Dict( CmpKey cmp, Hash hash );
60 Dict( CmpKey cmp, Hash hash, Arena *arena, int size=16 );
61 ~Dict();
63 Dict( const Dict & ); // Deep-copy guts
64 Dict &operator =( const Dict
[all...]
H A Ddict.cpp60 //------------------------------Dict-----------------------------------------
69 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp), function in class:Dict
88 Dict::Dict(CmpKey initcmp, Hash inithash, Arena *arena, int size) function in class:Dict
109 //------------------------------~Dict------------------------------------------
111 Dict::~Dict() {
113 tty->print("~Dict %d/%d: ",_cnt,_size);
124 void Dict
176 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) { function in class:Dict
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp31 class Dict;
42 typedef void (*FuncDict)(const void *key, const void *val, Dict *d);
44 class Dict { // Dictionary structure class
58 Dict( CmpKey cmp, Hash hash );
59 Dict( CmpKey cmp, Hash hash, Arena *arena );
61 ~Dict();
63 Dict( const Dict & ); // Deep-copy guts
64 Dict &operator =( const Dict
[all...]
H A Ddict2.cpp46 //------------------------------Dict-----------------------------------------
55 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp), _arena(NULL) { function in class:Dict
59 Dict::Dict(CmpKey initcmp, Hash inithash, Arena *arena) : _hash(inithash), _cmp(initcmp), _arena(arena) { function in class:Dict
63 void Dict::init() {
81 //------------------------------~Dict------------------------------------------
83 Dict::~Dict() {
88 void Dict
140 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) { function in class:Dict
[all...]

Completed in 33 milliseconds