Home | History | Annotate | Download | only in common

Lines Matching full:pieces

67     pieces(NULL),
84 if(pieces != NULL) {
86 if(pieces[i] != NULL) {
87 delete[] pieces[i];
90 uprv_free(pieces);
91 pieces = NULL;
140 buffer.append(pieces[i][current[i]]);
179 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *));
184 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
189 pieces[0] = new UnicodeString[1];
191 if (pieces[0] == 0) {
225 pieces = (UnicodeString **)uprv_malloc(list_length * sizeof(UnicodeString *));
230 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
242 pieces[i] = getEquivalents(list[i], pieces_lengths[i], status);