• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ICU-511.35/icuSources/i18n/

Lines Matching refs:codePoints

36         UChar *newCPs = (UChar *)uprv_realloc(tbl->codePoints, 2*tbl->size*sizeof(UChar));
43 tbl->codePoints = newCPs;
71 tbl->codePoints = NULL;
87 el->codePoints = (UChar *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(UChar));
88 if(el->codePoints == NULL) {
96 uprv_memset(el->codePoints, 0, INIT_EXP_TABLE_SIZE*sizeof(UChar));
109 uprv_free(el->codePoints);
167 if(table->codePoints != NULL) {
168 uprv_free(table->codePoints);
170 table->codePoints = (UChar *)uprv_malloc(table->position*sizeof(UChar));
171 if(table->codePoints == NULL) {
179 uprv_memset(table->codePoints, '?', table->position*sizeof(UChar));
183 UChar *cpPointer = table->codePoints;
189 cc = u_getCombiningClass(table->elements[i]->codePoints[j]);
196 *(cpPointer+j) = table->elements[i]->codePoints[j];
239 r->codePoints = (UChar *)uprv_malloc(sizeof(UChar)*t->size);
240 if(r->codePoints == NULL) {
245 uprv_free(r->codePoints);
248 uprv_memcpy(r->codePoints, t->codePoints, sizeof(UChar)*t->size);
299 if(t->codePoints != NULL) {
300 r->codePoints = (UChar *)uprv_malloc(t->position*sizeof(UChar));
302 if (r->codePoints == NULL) {
307 uprv_memcpy(r->codePoints, t->codePoints, t->position*sizeof(UChar));
309 r->codePoints = NULL;
316 uprv_free(r->codePoints);
339 uprv_free(table->elements[i]->codePoints);
345 uprv_free(table->codePoints);
392 while(tbl->codePoints[offset] < codePoint && offset<tbl->position) {
399 tbl->codePoints[i] = tbl->codePoints[i-1];
403 tbl->codePoints[offset] = codePoint;
433 tbl->codePoints[tbl->position] = codePoint;
464 tbl->codePoints[offset] = codePoint;
486 while(codePoint > tbl->codePoints[position]) {
492 if (codePoint == tbl->codePoints[position]) {
573 while(codePoint > tbl->codePoints[position]) {
579 if (codePoint == tbl->codePoints[position]) {