• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:string

30 #include <string.h>
37 #include "hash-string.h"
66 The file starts with a magic string of 16 bytes:
100 ISO-8859-1 encoded, disambiguating-comment string:
119 context string (usually a C++ class name or empty):
257 /* Add an ISO-8859-1 encoded string to an obstack. */
259 append_base_string (struct obstack *mempool, const char *string)
261 size_t length = strlen (string) + 1;
263 obstack_grow (mempool, string, length);
266 /* Add an UTF-16 encoded string to an obstack. */
268 append_unicode_string (struct obstack *mempool, const unsigned short *string,
272 for (; length > 0; string++, length--)
273 append_u16 (mempool, *string);
283 /* Convert an UTF-8 string to ISO-8859-1, without error checking. */
285 conv_to_iso_8859_1 (const char *string)
287 size_t length = strlen (string);
288 const char *str = string;
289 const char *str_limit = string + length;
298 /* It has already been verified that the string fits in ISO-8859-1. */
310 /* Convert an UTF-8 string to UTF-16, returning its size (number of UTF-16
313 conv_to_utf16 (const char *string, size_t *sizep)
315 size_t length = strlen (string);
316 const char *str = string;
317 const char *str_limit = string + length;
342 /* Return the Qt hash code of a string. */
683 const char *string = mlp->item[j]->msgctxt;
685 if (string != NULL)
687 /* An UTF-8 encoded string fits in ISO-8859-1 if and only if
689 for (; *string; string++)
690 if ((unsigned char) *string >= 0xc4)
709 const char *string = mlp->item[j]->msgid;
711 /* An UTF-8 encoded string fits in ISO-8859-1 if and only if all
713 for (; *string; string++)
714 if ((unsigned char) *string >= 0xc4)