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

/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp45 //------------------------------VectorSet--------------------------------------
46 class VectorSet : public Set { class in inherits:Set
52 void slamin( const VectorSet& s ); // Initialize one set with another
53 int compare(const VectorSet &s) const; // Compare set contents
57 VectorSet(Arena *arena); // Creates a new, empty set.
58 VectorSet(const VectorSet &s) : Set(s._set_arena) {slamin(s);} // Set clone; deep-copy guts function in class:VectorSet
60 VectorSet &operator =(const VectorSet &s) // Set clone; deep-copy guts
62 ~VectorSet() {}
[all...]
H A Dvectset.cpp58 //------------------------------VectorSet--------------------------------------
60 VectorSet::VectorSet(Arena *arena) : Set(arena) { function in class:VectorSet
70 return *(new VectorSet(arena));
74 Set &VectorSet::operator = (const Set &set)
78 // The cast is a virtual function that checks that "set" is a VectorSet.
85 void VectorSet::slamin(const VectorSet& s)
94 void VectorSet::grow( uint newsize )
106 Set &VectorSet
[all...]

Completed in 146 milliseconds