HomeSort by relevance Sort by last modified time
    Searched refs:ngettext (Results 1 - 25 of 33) sorted by null

1 2

  /external/e2fsprogs/intl/
ngettext.c 1 /* Implementation of ngettext(3) function.
46 # define NGETTEXT __ngettext
49 # define NGETTEXT libintl_ngettext
57 NGETTEXT (const char *msgid1, const char *msgid2, unsigned long int n)
64 weak_alias (__ngettext, ngettext);
intl-compat.c 41 #undef ngettext macro
85 ngettext (const char *msgid1, const char *msgid2, unsigned long int n) function
libgnuintl.h.in 163 static inline char *ngettext (const char *__msgid1, const char *__msgid2,
170 # define ngettext libintl_ngettext
172 extern char *ngettext (const char *__msgid1, const char *__msgid2,
  /toolchain/binutils/binutils-2.25/intl/
ngettext.c 1 /* Implementation of ngettext(3) function.
46 # define NGETTEXT __ngettext
49 # define NGETTEXT libintl_ngettext
57 NGETTEXT (msgid1, msgid2, n)
67 weak_alias (__ngettext, ngettext);
intl-compat.c 41 #undef ngettext macro
91 ngettext (msgid1, msgid2, n) function
libgnuintl.h 191 static inline char *ngettext (const char *__msgid1, const char *__msgid2, function
198 # define ngettext libintl_ngettext macro
200 extern char *ngettext _INTL_PARAMS ((const char *__msgid1,
  /external/e2fsprogs/misc/
nls-enable.h 10 #define P_(singular, plural, n) (ngettext (singular, plural, n))
  /ndk/sources/host-tools/make-3.81/
gettext.h 37 # define ngettext(Msgid1, Msgid2, N) \ macro
  /external/libexif/libexif/
i18n.h 38 # define ngettext(String1,String2,Count) (Count==1?String1:String2) macro
  /ndk/sources/android/support/src/musl-locale/
intl.c 21 char *ngettext(const char *msgid1, const char *msgid2, unsigned long int n) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
intl.h 41 # define ngettext(singular,plural,n) fake_ngettext(singular,plural,n) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
libintl.h 62 extern char *ngettext (__const char *__msgid1, __const char *__msgid2,
115 # define ngettext(msgid1, msgid2, n) dngettext (NULL, msgid1, msgid2, n) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
libintl.h 62 extern char *ngettext (__const char *__msgid1, __const char *__msgid2,
115 # define ngettext(msgid1, msgid2, n) dngettext (NULL, msgid1, msgid2, n) macro
  /external/opencv3/3rdparty/jinja2/
ext.py 29 GETTEXT_FUNCTIONS = ('_', 'gettext', 'ngettext')
147 def ngettext(__context, __singular, __plural, __num, **variables): function in function:_make_new_ngettext
153 return ngettext
165 # the other time for the n-parameter of the ngettext function.
183 ngettext = getattr(translations, 'ungettext', None)
184 if ngettext is None:
185 ngettext = translations.ngettext
186 self._install_callables(gettext, ngettext, newstyle)
195 def _install_callables(self, gettext, ngettext, newstyle=None)
    [all...]
  /external/bison/lib/
gettext.h 28 the gettext() and ngettext() macros. This is an alternative to calling
34 # undef ngettext macro
35 # define ngettext(Msgid1, Msgid2, N) \ macro
73 # undef ngettext macro
74 # define ngettext(Msgid1, Msgid2, N) \ macro
80 ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_i18n_test.py 30 # _(), gettext(), ngettext(), lazy_gettext(), lazy_ngettext()
50 self.assertEqual(i18n.ngettext('One foo', 'Many foos', 1), u'One foo')
51 self.assertEqual(i18n.ngettext('One foo', 'Many foos', 2), u'Many foos')
54 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 1), u'One foo %(foo)s')
55 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 2), u'Many foos %(foo)s')
56 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 1, foo='bar'), u'One foo bar')
57 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 2, foo='bar'), u'Many foos bar')
58 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 1) % {'foo': 'bar'}, u'One foo bar')
59 self.assertEqual(i18n.ngettext('One foo %(foo)s', 'Many foos %(foo)s', 2) % {'foo': 'bar'}, u'Many foos bar')
  /prebuilts/gdb/darwin-x86/lib/python2.7/
gettext.py 55 'dgettext', 'dngettext', 'gettext', 'ngettext',
201 def ngettext(self, msgid1, msgid2, n): member in class:NullTranslations
203 return self._fallback.ngettext(msgid1, msgid2, n)
248 if "ngettext" in names:
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
250 or self.ngettext)
368 def ngettext(self, msgid1, msgid2, n): member in class:GNUTranslations
378 return self._fallback.ngettext(msgid1, msgid2, n)
552 return t.ngettext(msgid1, msgid2, n)
571 def ngettext(msgid1, msgid2, n) function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
gettext.py 55 'dgettext', 'dngettext', 'gettext', 'ngettext',
201 def ngettext(self, msgid1, msgid2, n): member in class:NullTranslations
203 return self._fallback.ngettext(msgid1, msgid2, n)
248 if "ngettext" in names:
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
250 or self.ngettext)
368 def ngettext(self, msgid1, msgid2, n): member in class:GNUTranslations
378 return self._fallback.ngettext(msgid1, msgid2, n)
552 return t.ngettext(msgid1, msgid2, n)
571 def ngettext(msgid1, msgid2, n) function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gettext.py 55 'dgettext', 'dngettext', 'gettext', 'ngettext',
201 def ngettext(self, msgid1, msgid2, n): member in class:NullTranslations
203 return self._fallback.ngettext(msgid1, msgid2, n)
248 if "ngettext" in names:
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
250 or self.ngettext)
368 def ngettext(self, msgid1, msgid2, n): member in class:GNUTranslations
378 return self._fallback.ngettext(msgid1, msgid2, n)
552 return t.ngettext(msgid1, msgid2, n)
571 def ngettext(msgid1, msgid2, n) function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gettext.py 55 'dgettext', 'dngettext', 'gettext', 'ngettext',
201 def ngettext(self, msgid1, msgid2, n): member in class:NullTranslations
203 return self._fallback.ngettext(msgid1, msgid2, n)
248 if "ngettext" in names:
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
250 or self.ngettext)
368 def ngettext(self, msgid1, msgid2, n): member in class:GNUTranslations
378 return self._fallback.ngettext(msgid1, msgid2, n)
552 return t.ngettext(msgid1, msgid2, n)
571 def ngettext(msgid1, msgid2, n) function
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
jinja2.py 136 lambda s, p, n: i18n.ngettext(s, p, n),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gettext.py 220 x = gettext.ngettext('There is %s file', 'There are %s files', 1)
222 x = gettext.ngettext('There is %s file', 'There are %s files', 2)
229 x = t.ngettext('There is %s file', 'There are %s files', 1)
231 x = t.ngettext('There is %s file', 'There are %s files', 2)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gettext.py 220 x = gettext.ngettext('There is %s file', 'There are %s files', 1)
222 x = gettext.ngettext('There is %s file', 'There are %s files', 2)
229 x = t.ngettext('There is %s file', 'There are %s files', 1)
231 x = t.ngettext('There is %s file', 'There are %s files', 2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gettext.py 220 x = gettext.ngettext('There is %s file', 'There are %s files', 1)
222 x = gettext.ngettext('There is %s file', 'There are %s files', 2)
229 x = t.ngettext('There is %s file', 'There are %s files', 1)
231 x = t.ngettext('There is %s file', 'There are %s files', 2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gettext.py 220 x = gettext.ngettext('There is %s file', 'There are %s files', 1)
222 x = gettext.ngettext('There is %s file', 'There are %s files', 2)
229 x = t.ngettext('There is %s file', 'There are %s files', 1)
231 x = t.ngettext('There is %s file', 'There are %s files', 2)

Completed in 1302 milliseconds

1 2