/aosp_15_r20/external/python/cpython2/Lib/ |
D | gettext.py | 276 def ngettext(self, msgid1, msgid2, n): argument 278 return self._fallback.ngettext(msgid1, msgid2, n) 282 return msgid2 284 def lngettext(self, msgid1, msgid2, n): argument 286 return self._fallback.lngettext(msgid1, msgid2, n) 290 return msgid2 297 def ungettext(self, msgid1, msgid2, n): argument 299 return self._fallback.ungettext(msgid1, msgid2, n) 303 return unicode(msgid2) 403 msgid1, msgid2 = msg.split('\x00') [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | gettext.py | 280 def ngettext(self, msgid1, msgid2, n): argument 282 return self._fallback.ngettext(msgid1, msgid2, n) 286 return msgid2 293 def npgettext(self, context, msgid1, msgid2, n): argument 295 return self._fallback.npgettext(context, msgid1, msgid2, n) 299 return msgid2 410 msgid1, msgid2 = msg.split(b'\x00') 430 def ngettext(self, msgid1, msgid2, n): argument 435 return self._fallback.ngettext(msgid1, msgid2, n) 439 tmsg = msgid2 [all …]
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/sysroot/usr/include/ |
D | libintl.h | 114 # define ngettext(msgid1, msgid2, n) dngettext (NULL, msgid1, msgid2, n) argument 116 # define dngettext(domainname, msgid1, msgid2, n) \ argument 117 dcngettext (domainname, msgid1, msgid2, n, LC_MESSAGES)
|
/aosp_15_r20/external/trusty/musl/src/locale/ |
D | dcngettext.c | 117 char *dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int … in dcngettext() argument 143 return (char *) ((n == 1) ? msgid1 : msgid2); in dcngettext() 244 if (msgid2 && p->nplurals) { in dcngettext() 264 char *dngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) in dngettext() argument 266 return dcngettext(domainname, msgid1, msgid2, n, LC_MESSAGES); in dngettext()
|
D | textdomain.c | 39 char *ngettext(const char *msgid1, const char *msgid2, unsigned long int n) in ngettext() argument 41 return dngettext(0, msgid1, msgid2, n); in ngettext()
|
/aosp_15_r20/external/musl/src/locale/ |
H A D | dcngettext.c | 125 char *dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int … in dcngettext() argument 154 return (char *) ((n == 1) ? msgid1 : msgid2); in dcngettext() 255 if (msgid2 && p->nplurals) { in dcngettext() 275 char *dngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) in dngettext() argument 277 return dcngettext(domainname, msgid1, msgid2, n, LC_MESSAGES); in dngettext()
|
H A D | textdomain.c | 39 char *ngettext(const char *msgid1, const char *msgid2, unsigned long int n) in ngettext() argument 41 return dngettext(0, msgid1, msgid2, n); in ngettext()
|