Lines Matching refs:end
41 char *end=uprv_strchr(s, 0);
42 while(s<end && U_IS_INV_WHITESPACE(*(end-1))) {
43 *--end = 0;
45 return end;
189 char *end;
209 value=(uint32_t)uprv_strtoul(s, &end, 16);
210 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) {
223 s=end;
238 char *end;
268 value=(uint32_t)uprv_strtoul(s, &end, 16);
269 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) {
288 s=end;
292 /* read a range like start or start..end */
298 char *end;
311 value=(uint32_t)uprv_strtoul(s, &end, 16);
312 if(end<=s || value>=0x110000) {
318 /* is there a "..end"? */
319 s=u_skipWhitespace(end);
321 *terminator=end;
326 /* read the end code point */
327 value=(uint32_t)uprv_strtoul(s, &end, 16);
328 if(end<=s || value>=0x110000) {
340 *terminator=end;