Lines Matching refs:from
14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
199 idn_delimitermap_map(idn_delimitermap_t ctx, const unsigned long *from,
202 /* default delimiters (label separators) from IDNA specification */
215 assert(ctx != NULL && from != NULL && to != NULL);
217 TRACE(("idn_delimitermap_map(from=\"%s\", tolen=%d)\n",
218 idn__debug_ucs4xstring(from, 50), (int)tolen));
223 while (*from != '\0') {
230 if (default_delimiters[j] == *from) {
237 if (ctx->delimiters[i] == *from) {
246 *to = *from;
247 from++;