Lines Matching defs:composed

96     WCHAR composed;
106 if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
108 /* now check if we can use the composed char */
109 ch = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
110 if (is_valid_sbcs_mapping( table, flags, composed, ch ))
117 /* no mapping for the composed char, check the other flags */
216 WCHAR composed;
230 if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
232 /* now check if we can use the composed char */
233 *dst = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
234 if (is_valid_sbcs_mapping( table, flags, composed, *dst ))
241 /* no mapping for the composed char, check the other flags */
298 WCHAR composed;
318 if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
320 /* now check if we can use the composed char */
321 res = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
323 if (is_valid_dbcs_mapping( table, flags, composed, res ))
325 /* we have a good mapping for the composed char, use it */
331 /* no mapping for the composed char, check the other flags */
392 WCHAR composed;
404 if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
406 /* now check if we can use the composed char */
407 res = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
409 if (is_valid_dbcs_mapping( table, flags, composed, res ))
411 /* we have a good mapping for the composed char, use it */
416 /* no mapping for the composed char, check the other flags */