Lines Matching defs:copy
41 } // copy constructor
45 } // copy (from string) constructor
49 } // copy (from char*) constructor
69 string copy, fragment;
84 copy = DeleteSpaces(orig);
87 len = copy.length();
95 uuidData[3] = StrToHex(copy, 0);
96 uuidData[2] = StrToHex(copy, 2);
97 uuidData[1] = StrToHex(copy, 4);
98 uuidData[0] = StrToHex(copy, 6);
101 uuidData[5] = StrToHex(copy, (unsigned int) segStart[1]);
102 uuidData[4] = StrToHex(copy, (unsigned int) segStart[1] + 2);
105 uuidData[7] = StrToHex(copy, (unsigned int) segStart[2]);
106 uuidData[6] = StrToHex(copy, (unsigned int) segStart[2] + 2);
109 uuidData[8] = StrToHex(copy, (unsigned int) segStart[3]);
110 uuidData[9] = StrToHex(copy, (unsigned int) segStart[3] + 2);
113 uuidData[10] = StrToHex(copy, (unsigned int) segStart[4]);
114 uuidData[11] = StrToHex(copy, (unsigned int) segStart[4] + 2);
115 uuidData[12] = StrToHex(copy, (unsigned int) segStart[4] + 4);
116 uuidData[13] = StrToHex(copy, (unsigned int) segStart[4] + 6);
117 uuidData[14] = StrToHex(copy, (unsigned int) segStart[4] + 8);
118 uuidData[15] = StrToHex(copy, (unsigned int) segStart[4] + 10);