Home | History | Annotate | Download | only in unicode

Lines Matching refs:copy

71      * Copy constructor
72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy)
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy)
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) const
193 if(index != copy.index || errorIndex != copy.errorIndex)
200 ParsePosition::operator!=(const ParsePosition& copy) const
202 return !operator==(copy);