Home | History | Annotate | Download | only in common

Lines Matching refs:pieces

71     pieces(NULL),
90 if(pieces != NULL) {
92 if(pieces[i] != NULL) {
93 delete[] pieces[i];
96 uprv_free(pieces);
97 pieces = NULL;
146 buffer.append(pieces[i][current[i]]);
185 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *));
190 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
195 pieces[0] = new UnicodeString[1];
197 if (pieces[0] == 0) {
231 pieces = (UnicodeString **)uprv_malloc(list_length * sizeof(UnicodeString *));
236 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
248 pieces[i] = getEquivalents(list[i], pieces_lengths[i], status);