HomeSort by: relevance | last modified time | path
    Searched defs:nplurals (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/src/
plural-count.c 34 unsigned long int nplurals; local
36 extract_plural_expression (header, &plural, &nplurals);
38 return nplurals;
msgl-check.c 102 msg = xasprintf (_("nplurals = %lu but plural expression can produce values as large as %lu"),
259 const char *nplurals; local
264 nplurals = c_strstr (nullentry, "nplurals=");
289 if (nplurals == NULL && has_plural != NULL)
294 _("but header entry lacks a \"nplurals=INTEGER\" attribute");
313 if (plural != NULL && nplurals != NULL)
321 nplurals += 9;
322 while (*nplurals != '\0' && c_isspace ((unsigned char) *nplurals))
    [all...]
write-csharp.c 563 unsigned long int nplurals; local
567 &plural, &nplurals);
write-java.c 867 unsigned long int nplurals; local
871 &plural, &nplurals);
msginit.c 1631 /* Update the msgstr plural entries according to the nplurals count. */
1641 unsigned long int nplurals; local
1646 nplurals = get_plural_count (header_entry ? header_entry->msgstr : NULL);
1647 untranslated_plural_msgstr = (char *) xmalloc (nplurals);
1648 memset (untranslated_plural_msgstr, '\0', nplurals);
1670 nplurals consecutive empty strings. */
1671 if (nplurals > mp->msgstr_len)
1673 mp->msgstr_len = nplurals;
msgmerge.c 1111 unsigned long int nplurals; local
1118 nplurals = get_plural_count (header_entry ? header_entry->msgstr : NULL);
1119 untranslated_plural_msgstr = (char *) xmalloc (nplurals);
1120 memset (untranslated_plural_msgstr, '\0', nplurals);
1263 nplurals consecutive empty strings. */
1264 if (nplurals > mp->msgstr_len)
1266 mp->msgstr_len = nplurals;
1290 unsigned long int nplurals = 0; local
1294 /* Need to know nplurals of the result domain. */
1298 nplurals = get_plural_count (header_entr
    [all...]
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
plural-exp.c 105 const char *nplurals; local
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')
    [all...]
gettextP.h 186 unsigned long int nplurals; member in struct:loaded_domain
  /src/external/gpl2/grep/dist/intl/
plural-exp.c 109 const char *nplurals; local
112 nplurals = strstr (nullentry, "nplurals=");
113 if (plural == NULL || nplurals == NULL)
122 nplurals += 9;
123 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
124 ++nplurals;
125 if (!(*nplurals >= '0' && *nplurals <= '9')
    [all...]
gettextP.h 100 unsigned long int nplurals; member in struct:loaded_domain
  /src/external/gpl2/texinfo/dist/intl/
plural-exp.c 107 const char *nplurals; local
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')
    [all...]
gettextP.h 127 unsigned long int nplurals; member in struct:loaded_domain
  /src/external/gpl3/gcc.old/dist/intl/
plural-exp.c 107 const char *nplurals; local
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')
    [all...]
gettextP.h 134 unsigned long int nplurals; member in struct:loaded_domain

Completed in 35 milliseconds