Home | History | Annotate | Download | only in common

Lines Matching refs:owned

92         owned(other.owned), data(other.data) {
93 if (other.owned != NULL) {
94 owned = new ListFormatInternal(*other.owned);
95 data = owned;
103 delete owned;
104 if (other.owned) {
105 owned = new ListFormatInternal(*other.owned);
106 data = owned;
108 owned = NULL;
243 owned = new ListFormatInternal(listFormatData);
244 data = owned;
247 ListFormatter::ListFormatter(const ListFormatInternal* listFormatterInternal) : owned(NULL), data(listFormatterInternal) {
251 delete owned;