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
27 bool GUIDData::firstInstance = 1;
29 GUIDData::GUIDData(void) {
37 GUIDData::GUIDData(const GUIDData & orig) {
41 GUIDData::GUIDData(const string & orig) {
45 GUIDData::GUIDData(const char * orig) {
49 GUIDData::~GUIDData(void) {
52 GUIDData & GUIDData::operator=(const GUIDData & orig) {
55 } // GUIDData::operator=(const GUIDData & orig)
66 GUIDData & GUIDData::operator=(const string & orig) {
121 } // GUIDData::operator=(const string & orig)
124 GUIDData & GUIDData::operator=(const char * orig) {
126 } // GUIDData::operator=(const char * orig)
129 void GUIDData::Zero(void) {
131 } // GUIDData::Zero()
141 void GUIDData::Randomize(void) {
165 } // GUIDData::Randomize
168 int GUIDData::operator==(const GUIDData & orig) const {
170 } // GUIDData::operator==
173 int GUIDData::operator!=(const GUIDData & orig) const {
175 } // GUIDData::operator!=
178 string GUIDData::AsString(void) const {
188 } // GUIDData::AsString(void)
192 string GUIDData::DeleteSpaces(string s) {
203 } // GUIDData::DeleteSpaces()
212 ostream & operator<<(ostream & os, const GUIDData & data) {
217 } // GUIDData::operator<<()