Home | History | Annotate | Download | only in genprops

Lines Matching refs:code

302     /* get the character code, field 0 */
303 p.code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
315 fprintf(stderr, "genprops: unknown general category \"%s\" at code 0x%lx\n",
316 fields[2][0], (unsigned long)p.code);
336 fprintf(stderr, "genprops: unknown decomposition type \"%s\" at code 0x%lx\n",
337 fields[5][0], (unsigned long)p.code);
342 upvec_setValue(pv, p.code, p.code, 2, (uint32_t)i, UPROPS_DT_MASK, pErrorCode);
353 fprintf(stderr, "genprops: syntax error in field 6 at code 0x%lx\n",
354 (unsigned long)p.code);
366 fprintf(stderr, "genprops: syntax error in field 7 at code 0x%lx\n",
367 (unsigned long)p.code);
375 fprintf(stderr, "genprops error: numeric values in fields 6 & 7 different at code 0x%lx\n",
376 (unsigned long)p.code);
399 fprintf(stderr, "genprops error: numeric values in fields 6..8 different at code 0x%lx\n",
400 (unsigned long)p.code);
407 fprintf(stderr, "genprops: denominator is 0 in field 8 at code 0x%lx\n",
408 (unsigned long)p.code);
414 fprintf(stderr, "genprops: syntax error in field 8 at code 0x%lx\n",
415 (unsigned long)p.code);
428 fprintf(stderr, "genprops error: numeric values in fields 6..8 different at code 0x%lx\n",
429 (unsigned long)p.code);
447 unicodeAreas[unicodeAreaIndex].first=p.code;
459 /* check that the current area matches, and complete it with the last code point */
464 unicodeAreas[unicodeAreaIndex].first<p.code
466 unicodeAreas[unicodeAreaIndex].last=p.code;
486 /* check for non-character code points */
487 if((p.code&0xfffe)==0xfffe || (uint32_t)(p.code-0xfdd0)<0x20) {
488 fprintf(stderr, "genprops: error - properties for non-character code point U+%04lx\n",
489 (unsigned long)p.code);
494 /* check that the code points (p.code) are in ascending order */
495 if(p.code<=prevCode && p.code>0) {
497 (unsigned long)p.code, (unsigned long)prevCode);
501 prevCode=p.code;
503 /* properties for a single code point */
504 addProps(p.code, value);