Home | History | Annotate | Download | only in unicode

Lines Matching refs:copy

14  *    07/17/98    stephen        Added default/copy ctors, and operators =, ==, !=
136 * Copy constructor
137 * @param copy the object to be copied from.
140 FieldPosition(const FieldPosition& copy)
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
151 * @param copy the object to be copied from.
154 FieldPosition& operator=(const FieldPosition& copy);
264 FieldPosition::operator=(const FieldPosition& copy)
266 fField = copy.fField;
267 fEndIndex = copy.fEndIndex;
268 fBeginIndex = copy.fBeginIndex;
273 FieldPosition::operator==(const FieldPosition& copy) const
275 return (fField == copy.fField &&
276 fEndIndex == copy.fEndIndex &&
277 fBeginIndex == copy.fBeginIndex);
281 FieldPosition::operator!=(const FieldPosition& copy) const
283 return !operator==(copy);