Lines Matching defs:in
6 provided that the above copyright notice appear in all copies.
217 /* if LC_NUMERIC is different in the C library, use saved value */
365 /* assume no change in size, first */
474 /* YESSTR and NOSTR are deprecated in glibc, since they are
476 done using gettext. So we don't expose it to Python in the
523 /* This is not available in all glibc versions that have CODESET. */
540 returns numeric values in the char* return value, which would
563 char *in;
564 if (!PyArg_ParseTuple(args, "s", &in))
566 return PyString_FromString(gettext(in));
571 "Return translation of msg in domain.");
576 char *domain, *in;
577 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
579 return PyString_FromString(dgettext(domain, in));
584 "Return translation of msg in domain and category.");