Home | History | Annotate | Download | only in intl

Lines Matching refs:nplurals

107       const char *nplurals;
110 nplurals = strstr (nullentry, "nplurals=");
111 if (plural == NULL || nplurals == NULL)
120 nplurals += 9;
121 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
122 ++nplurals;
123 if (!(*nplurals >= '0' && *nplurals <= '9'))
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
131 if (nplurals == endp)