Home | History | Annotate | Download | only in intl

Lines Matching refs:nplurals

105       const char *nplurals;
108 nplurals = strstr (nullentry, "nplurals=");
109 if (plural == NULL || nplurals == NULL)
118 nplurals += 9;
119 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
120 ++nplurals;
121 if (!(*nplurals >= '0' && *nplurals <= '9'))
124 n = strtoul (nplurals, &endp, 10);
126 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 if (nplurals == endp)