Home | History | Annotate | Download | only in i18n

Lines Matching refs:adopt

75 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) {
76 // Verify that adopt has valid data, and update status if it doesn't.
78 if (adopt) {
79 if ((adopt->size() % 3) != 0) {
82 for (int i = 1; i < adopt->size(); i += 3) {
83 if (adopt->elementAti(i) >= adopt->elementAti(i+1)) {
95 delete adopt;
100 data = adopt;
101 pos = adopt == NULL ? -1 : 0;