Searched refs:msgid1 (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/ |
D | gettext.py | 291 def ngettext(self, msgid1, msgid2, n): argument 293 return self._fallback.ngettext(msgid1, msgid2, n) 295 return msgid1 299 def lngettext(self, msgid1, msgid2, n): argument 308 return self._fallback.lngettext(msgid1, msgid2, n) 310 tmsg = msgid1 322 def npgettext(self, context, msgid1, msgid2, n): argument 324 return self._fallback.npgettext(context, msgid1, msgid2, n) 326 return msgid1 452 msgid1, msgid2 = msg.split(b'\x00') [all …]
|
/external/python/cpython2/Lib/ |
D | gettext.py | 276 def ngettext(self, msgid1, msgid2, n): argument 278 return self._fallback.ngettext(msgid1, msgid2, n) 280 return msgid1 284 def lngettext(self, msgid1, msgid2, n): argument 286 return self._fallback.lngettext(msgid1, msgid2, n) 288 return msgid1 297 def ungettext(self, msgid1, msgid2, n): argument 299 return self._fallback.ungettext(msgid1, msgid2, n) 301 return unicode(msgid1) 403 msgid1, msgid2 = msg.split('\x00') [all …]
|
/external/musl/src/locale/ |
D | dcngettext.c | 125 char *dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int … in dcngettext() argument 136 if (!msgid1) goto notrans; in dcngettext() 154 return (char *) ((n == 1) ? msgid1 : msgid2); in dcngettext() 249 const char *trans = __mo_lookup(p->map, p->map_size, msgid1); 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()
|
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()
|