Home | History | Annotate | Download | only in intl

Lines Matching refs:expression

0 /* Expression parsing for plural form selection.
33 /* These structs are the constant expression for the germanic plural
34 form determination. It represents the expression "n != 1". */
35 static const struct expression plvar =
40 static const struct expression plone =
49 struct expression GERMANIC_PLURAL =
57 [0] = (struct expression *) &plvar,
58 [1] = (struct expression *) &plone
70 static struct expression plvar;
71 static struct expression plone;
72 struct expression GERMANIC_PLURAL;
99 EXTRACT_PLURAL_EXPRESSION (const char *nullentry, struct expression **pluralp,