Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:GUIDData

2 // C++ Implementation: GUIDData
4 // Description: GUIDData class header
5 // Implements the GUIDData data structure and support methods
29 bool GUIDData::firstInstance = 1;
31 GUIDData::GUIDData(void) {
39 GUIDData::GUIDData(const GUIDData & orig) {
43 GUIDData::GUIDData(const string & orig) {
47 GUIDData::GUIDData(const char * orig) {
51 GUIDData::~GUIDData(void) {
54 GUIDData & GUIDData::operator=(const GUIDData & orig) {
57 } // GUIDData::operator=(const GUIDData & orig)
68 GUIDData & GUIDData::operator=(const string & orig) {
123 } // GUIDData::operator=(const string & orig)
126 GUIDData & GUIDData::operator=(const char * orig) {
128 } // GUIDData::operator=(const char * orig)
131 void GUIDData::Zero(void) {
133 } // GUIDData::Zero()
143 void GUIDData::Randomize(void) {
167 } // GUIDData::Randomize
170 int GUIDData::operator==(const GUIDData & orig) const {
172 } // GUIDData::operator==
175 int GUIDData::operator!=(const GUIDData & orig) const {
177 } // GUIDData::operator!=
180 string GUIDData::AsString(void) const {
190 } // GUIDData::AsString(void)
194 string GUIDData::DeleteSpaces(string s) {
205 } // GUIDData::DeleteSpaces()
214 ostream & operator<<(ostream & os, const GUIDData & data) {
219 } // GUIDData::operator<<()