Lines Matching refs:copy
16 * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
139 * Copy constructor
140 * @param copy the object to be copied from.
143 FieldPosition(const FieldPosition& copy)
144 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
154 * @param copy the object to be copied from.
157 FieldPosition& operator=(const FieldPosition& copy);
267 FieldPosition::operator=(const FieldPosition& copy)
269 fField = copy.fField;
270 fEndIndex = copy.fEndIndex;
271 fBeginIndex = copy.fBeginIndex;
276 FieldPosition::operator==(const FieldPosition& copy) const
278 return (fField == copy.fField &&
279 fEndIndex == copy.fEndIndex &&
280 fBeginIndex == copy.fBeginIndex);
284 FieldPosition::operator!=(const FieldPosition& copy) const
286 return !operator==(copy);