Lines Matching refs:orig
39 GUIDData::GUIDData(const GUIDData & orig) {
40 memcpy(uuidData, orig.uuidData, sizeof(uuidData));
43 GUIDData::GUIDData(const string & orig) {
44 operator=(orig);
47 GUIDData::GUIDData(const char * orig) {
48 operator=(orig);
54 GUIDData & GUIDData::operator=(const GUIDData & orig) {
55 memcpy(uuidData, orig.uuidData, sizeof(uuidData));
57 } // GUIDData::operator=(const GUIDData & orig)
68 GUIDData & GUIDData::operator=(const string & orig) {
78 if ((orig[0] == 'R') || (orig[0] == 'r')) {
84 copy = DeleteSpaces(orig);
123 } // GUIDData::operator=(const string & orig)
126 GUIDData & GUIDData::operator=(const char * orig) {
127 return operator=((string) orig);
128 } // GUIDData::operator=(const char * orig)
170 int GUIDData::operator==(const GUIDData & orig) const {
171 return !memcmp(uuidData, orig.uuidData, sizeof(uuidData));
175 int GUIDData::operator!=(const GUIDData & orig) const {
176 return !operator==(orig);
192 // Delete spaces or braces (which often enclose GUIDs) from the orig string,