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

1 2 3 4 5 6 7 8 9

  /external/bison/lib/
xalloc-die.c 29 #define _(msgid) gettext (msgid)
closeout.c 29 #define _(msgid) gettext (msgid)
gettext.h 32 # define gettext(Msgid) \
33 dgettext (DEFAULT_TEXT_DOMAIN, Msgid)
67 # define gettext(Msgid) ((const char *) (Msgid))
69 # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid))
71 # define dcgettext(Domainname, Msgid, Category) \
72 ((void) (Category), dgettext (Domainname, Msgid))
110 /* The separator between msgctxt and msgid in a .mo file. */
113 /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
xalloc-die.c 29 #define _(msgid) gettext (msgid)
gettext.h 34 # define gettext(Msgid) \
35 dgettext (DEFAULT_TEXT_DOMAIN, Msgid)
69 # define gettext(Msgid) ((const char *) (Msgid))
71 # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid))
73 # define dcgettext(Domainname, Msgid, Category) \
74 ((void) (Category), dgettext (Domainname, Msgid))
106 /* The separator between msgctxt and msgid in a .mo file. */
109 /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just
    [all...]
  /ndk/sources/android/support/src/musl-locale/
intl.c 6 char *gettext(const char *msgid)
8 return (char *) msgid;
11 char *dgettext(const char *domainname, const char *msgid)
13 return (char *) msgid;
16 char *dcgettext(const char *domainname, const char *msgid, int category)
18 return (char *) msgid;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
intl.h 40 # define gettext(msgid) (msgid)
51 # define _(msgid) gettext (msgid)
55 # define N_(msgid) msgid
diagnostic-core.h 31 #define DEFINE_DIAGNOSTIC_KIND(K, msgid) K,
  /external/e2fsprogs/intl/
dcgettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCGETTEXT (const char *domainname, const char *msgid, int category)
49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
dgettext.c 47 /* Look up MSGID in the DOMAINNAME message catalog of the current
50 DGETTEXT (const char *domainname, const char *msgid)
52 return DCGETTEXT (domainname, msgid, LC_MESSAGES);
gettext.c 51 /* Look up MSGID in the current default message catalog for the current
52 LC_MESSAGES locale. If not found, returns MSGID itself (the default
55 GETTEXT (const char *msgid)
57 return DCGETTEXT (NULL, msgid, LC_MESSAGES);
intl-compat.c 61 gettext (const char *msgid)
63 return libintl_gettext (msgid);
69 dgettext (const char *domainname, const char *msgid)
71 return libintl_dgettext (domainname, msgid);
77 dcgettext (const char *domainname, const char *msgid, int category)
79 return libintl_dcgettext (domainname, msgid, category);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
libintl.h 37 /* Look up MSGID in the current default message catalog for the current
38 LC_MESSAGES locale. If not found, returns MSGID itself (the default
43 /* Look up MSGID in the DOMAINNAME message catalog for the current
50 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
110 # define gettext(msgid) dgettext (NULL, msgid)
112 # define dgettext(domainname, msgid) \
113 dcgettext (domainname, msgid, LC_MESSAGES)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
libintl.h 37 /* Look up MSGID in the current default message catalog for the current
38 LC_MESSAGES locale. If not found, returns MSGID itself (the default
43 /* Look up MSGID in the DOMAINNAME message catalog for the current
50 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
110 # define gettext(msgid) dgettext (NULL, msgid)
112 # define dgettext(domainname, msgid) \
113 dcgettext (domainname, msgid, LC_MESSAGES)
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/messages/
msgs.js 64 * This function expects HTML elements with a i18n clean and a msgid attribute.
71 var msgid = elts[i].getAttribute('msgid');
72 if (!msgid) {
73 throw new Error('Element has no msgid attribute: ' + elts[i]);
75 elts[i].textContent = this.getMsg(msgid);
  /external/chromium_org/third_party/icu/source/tools/tzcode/
private.h 251 ** `_(MSGID)' uses the current locale's message library string for MSGID.
252 ** The default is to use gettext if available, and use MSGID otherwise.
257 #define _(msgid) gettext(msgid)
259 #define _(msgid) msgid
  /external/icu/icu4c/source/tools/tzcode/
private.h 251 ** `_(MSGID)' uses the current locale's message library string for MSGID.
252 ** The default is to use gettext if available, and use MSGID otherwise.
257 #define _(msgid) gettext(msgid)
259 #define _(msgid) msgid
  /external/elfutils/0.153/host-darwin-fixup/
AndroidFixup.h 57 #define dgettext(domainname, msgid) dcgettext (domainname, msgid, LC_MESSAGES)
  /external/wpa_supplicant_8/hs20/client/
oma_dm_client.c 109 const char *url, int msgid)
121 xml_node_create_text(ctx->xml, synchdr, NULL, "MsgID", int2str(msgid));
293 const char *url, int msgid, const char *oper)
299 syncml = oma_dm_build_hdr(ctx, url, msgid);
331 const char *url, int msgid)
335 syncml = build_oma_dm_1(ctx, url, msgid, DM_HS20_SUBSCRIPTION_CREATION);
344 const char *url, int msgid)
348 syncml = build_oma_dm_1(ctx, url, msgid,
358 const char *url, int msgid)
1130 int msgid = 0; local
1167 int msgid = 0; local
1229 int msgid = 0; local
1276 int msgid = 0; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ipmi_smi.h 28 long msgid; member in struct:ipmi_smi_msg
  /external/ipsec-tools/src/racoon/
isakmp_newg.c 153 len = sizeof(isakmp->msgid) + ntohs(sa->h.len);
160 memcpy(buf->v, &isakmp->msgid, sizeof(isakmp->msgid));
161 memcpy(buf->v + sizeof(isakmp->msgid), sa, ntohs(sa->h.len));
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
ipmi_smi.h 28 long msgid; member in struct:ipmi_smi_msg
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
ipmi_smi.h 28 long msgid; member in struct:ipmi_smi_msg
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
ipmi_smi.h 28 long msgid; member in struct:ipmi_smi_msg
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
ipmi_smi.h 28 long msgid; member in struct:ipmi_smi_msg

Completed in 499 milliseconds

1 2 3 4 5 6 7 8 9