Lines Matching defs:source
12 "usage: coll [options*] -source source_string -target target_string\n"
23 "-source string Source string for comparison\n"
25 "Example coll -rules \\u0026b\\u003ca -source a -target b\n"
68 {"-source", OptSpec::STRING, &opt_source},
139 UChar source[100];
141 u_unescape(opt_source, source, 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");