HomeSort by relevance Sort by last modified time
    Searched defs:ngettext (Results 1 - 15 of 15) sorted by null

  /external/e2fsprogs/intl/
intl-compat.c 41 #undef ngettext macro
85 ngettext (const char *msgid1, const char *msgid2, unsigned long int n) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-4.6/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.7-4.6/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
  /ndk/sources/android/support/src/musl-locale/
intl.c 21 char *ngettext(const char *msgid1, const char *msgid2, unsigned long int n) function
  /ndk/sources/host-tools/make-3.81/
gettext.h 37 # define ngettext(Msgid1, Msgid2, N) \ macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
intl.h 42 # define ngettext(singular,plural,n) fake_ngettext(singular,plural,n) macro
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
intl.h 42 # define ngettext(singular,plural,n) fake_ngettext(singular,plural,n) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
intl.h 42 # define ngettext(singular,plural,n) fake_ngettext(singular,plural,n) macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
intl.h 42 # define ngettext(singular,plural,n) fake_ngettext(singular,plural,n) macro
  /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))
  /ndk/sources/host-tools/sed-4.2.1/lib/
gettext.h 30 the gettext() and ngettext() macros. This is an alternative to calling
36 # undef ngettext macro
37 # define ngettext(Msgid1, Msgid2, N) \ macro
75 # undef ngettext macro
76 # define ngettext(Msgid1, Msgid2, N) \ macro
82 ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
  /external/chromium_org/third_party/jinja2/
ext.py 25 GETTEXT_FUNCTIONS = ('_', 'gettext', 'ngettext')
144 def ngettext(__context, __singular, __plural, __num, **variables): function in function:_make_new_ngettext
150 return ngettext
162 # the other time for the n-parameter of the ngettext function.
180 ngettext = getattr(translations, 'ungettext', None)
181 if ngettext is None:
182 ngettext = translations.ngettext
183 self._install_callables(gettext, ngettext, newstyle)
192 def _install_callables(self, gettext, ngettext, newstyle=None)
    [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...]

Completed in 2061 milliseconds