Home | History | Annotate | Download | only in i18n

Lines Matching refs:adopt

59 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) {
60 // Verify that adopt has valid data, and update status if it doesn't.
62 if (adopt) {
63 if ((adopt->size() % 3) != 0) {
66 for (int i = 1; i < adopt->size(); i += 3) {
67 if (adopt->elementAti(i) >= adopt->elementAti(i+1)) {
79 delete adopt;
84 data = adopt;
85 pos = (adopt == NULL || adopt->size() == 0) ? -1 : 0; // android-changed: http://bugs.icu-project.org/trac/ticket/10354