• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:context

53 static void conversion_error (const struct conversion_context* context)
59 conversion_error (const struct conversion_context* context)
61 if (context->to_code == po_charset_utf8)
63 po_xerror (PO_SEVERITY_FATAL_ERROR, context->message, NULL, 0, 0, false,
65 context->from_filename, context->from_code));
67 po_xerror (PO_SEVERITY_FATAL_ERROR, context->message, NULL, 0, 0, false,
70 context->from_filename, context->from_code,
71 context->to_code));
78 const struct conversion_context* context)
90 conversion_error (context);
97 const struct conversion_context* context)
103 slp->item[i] = convert_string (cd, slp->item[i], context);
108 const struct conversion_context* context)
111 mp->prev_msgctxt = convert_string (cd, mp->prev_msgctxt, context);
113 mp->prev_msgid = convert_string (cd, mp->prev_msgid, context);
115 mp->prev_msgid_plural = convert_string (cd, mp->prev_msgid_plural, context);
120 const struct conversion_context* context)
123 mp->msgctxt = convert_string (cd, mp->msgctxt, context);
124 mp->msgid = convert_string (cd, mp->msgid, context);
126 mp->msgid_plural = convert_string (cd, mp->msgid_plural, context);
131 const struct conversion_context* context)
164 conversion_error (context);
279 struct conversion_context context;
296 context.from_code = canon_from_code;
297 context.to_code = canon_to_code;
298 context.from_filename = from_filename;
307 context.message = mp;
308 convert_string_list (cd, mp->comment, &context);
309 convert_string_list (cd, mp->comment_dot, &context);
310 convert_prev_msgid (cd, mp, &context);
311 convert_msgid (cd, mp, &context);
312 convert_msgstr (cd, mp, &context);