Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:orig

37 GUIDData::GUIDData(const GUIDData & orig) {
38 memcpy(uuidData, orig.uuidData, sizeof(uuidData));
41 GUIDData::GUIDData(const string & orig) {
42 operator=(orig);
45 GUIDData::GUIDData(const char * orig) {
46 operator=(orig);
52 GUIDData & GUIDData::operator=(const GUIDData & orig) {
53 memcpy(uuidData, orig.uuidData, sizeof(uuidData));
55 } // GUIDData::operator=(const GUIDData & orig)
66 GUIDData & GUIDData::operator=(const string & orig) {
76 if ((orig[0] == 'R') || (orig[0] == 'r')) {
82 copy = DeleteSpaces(orig);
121 } // GUIDData::operator=(const string & orig)
124 GUIDData & GUIDData::operator=(const char * orig) {
125 return operator=((string) orig);
126 } // GUIDData::operator=(const char * orig)
168 int GUIDData::operator==(const GUIDData & orig) const {
169 return !memcmp(uuidData, orig.uuidData, sizeof(uuidData));
173 int GUIDData::operator!=(const GUIDData & orig) const {
174 return !operator==(orig);
190 // Delete spaces or braces (which often enclose GUIDs) from the orig string,