Home | History | Annotate | Download | only in unicode

Lines Matching refs:copy

73      * Copy constructor
74 * @param copy the object to be copied from.
77 ParsePosition(const ParsePosition& copy)
78 : UObject(copy),
79 index(copy.index),
80 errorIndex(copy.errorIndex)
93 ParsePosition& operator=(const ParsePosition& copy);
185 ParsePosition::operator=(const ParsePosition& copy)
187 index = copy.index;
188 errorIndex = copy.errorIndex;
193 ParsePosition::operator==(const ParsePosition& copy) const
195 if(index != copy.index || errorIndex != copy.errorIndex)
202 ParsePosition::operator!=(const ParsePosition& copy) const
204 return !operator==(copy);