Lines Matching defs:target
12 "usage: coll [options*] -source source_string -target target_string\n"
24 "-target string Target string for comparison\n"
25 "Example coll -rules \\u0026b\\u003ca -source a -target b\n"
69 {"-target", OptSpec::STRING, &opt_target},
140 UChar target[100];
142 u_unescape(opt_target, target, 100);
143 UCollationResult result = ucol_strcoll(collator, source, -1, target, -1);
251 fprintf(stdout, "Comparing source=%s and target=%s\n", opt_source,
255 fprintf(stdout, "source is equals to target\n");
258 fprintf(stdout, "source is less than target\n");
261 fprintf(stdout, "source is greater than target\n");