Home | History | Annotate | Download | only in cintltst

Lines Matching full:props

2090     props[][3]={ /* code point, property, value */
2544 for(i=0; i<sizeof(props)/sizeof(props[0]); ++i) {
2545 if(props[i][0]<0) {
2547 if(uVersion<props[i][1]) {
2554 c=(UChar32)props[i][0];
2555 which=(UProperty)props[i][1];
2559 if(result!=props[i][2]) {
2560 log_err("error: u_hasBinaryProperty(U+%04lx, %d)=%d is wrong (props[%d])\n",
2566 if(result!=props[i][2]) {
2567 log_err("error: u_getIntPropertyValue(U+%04lx, 0x1000+%d)=%d is wrong, should be %d (props[%d])\n",
2568 c, (int32_t)which-0x1000, result, props[i][2], i);
2572 switch((UProperty)props[i][1]) {
2574 if(u_isUAlphabetic((UChar32)props[i][0])!=(UBool)props[i][2]) {
2575 log_err("error: u_isUAlphabetic(U+%04lx)=%d is wrong (props[%d])\n",
2576 props[i][0], result, i);
2580 if(u_isULowercase((UChar32)props[i][0])!=(UBool)props[i][2]) {
2581 log_err("error: u_isULowercase(U+%04lx)=%d is wrong (props[%d])\n",
2582 props[i][0], result, i);
2586 if(u_isUUppercase((UChar32)props[i][0])!=(UBool)props[i][2]) {
2587 log_err("error: u_isUUppercase(U+%04lx)=%d is wrong (props[%d])\n",
2588 props[i][0], result, i);
2592 if(u_isUWhiteSpace((UChar32)props[i][0])!=(UBool)props[i][2]) {
2593 log_err("error: u_isUWhiteSpace(U+%04lx)=%d is wrong (props[%d])\n",
2594 props[i][0], result, i);