Lines Matching refs:ch
849 static UBool numericValueFilter(UChar32 ch, void* context) {
850 return u_getNumericValue(ch) == *(double*)context;
853 static UBool generalCategoryMaskFilter(UChar32 ch, void* context) {
855 return (U_GET_GC_MASK((UChar32) ch) & value) != 0;
858 static UBool versionFilter(UChar32 ch, void* context) {
861 u_charAge(ch, v);
870 static UBool intPropertyFilter(UChar32 ch, void* context) {
872 return u_getIntPropertyValue((UChar32) ch, c->prop) == c->value;
913 for (UChar32 ch = start; ch <= end; ++ch) {
916 if ((*filter)(ch, context)) {
918 startHasProperty = ch;
921 add(startHasProperty, ch-1);
938 char ch;
940 while ((ch = *src++) != 0) {
941 if (ch == ' ' && (j==0 || (j>0 && dst[j-1]==' '))) {
945 dst[j++] = ch;
1052 UChar32 ch = u_charFromName(choice, buf, &ec);
1055 add(ch);