Searched refs:utf (Results 1 - 7 of 7) sorted by relevance

/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlstring.c600 * @utf: pointer to the UTF8 character
607 xmlUTF8Size(const xmlChar *utf) { argument
611 if (utf == NULL)
613 if (*utf < 0x80)
616 if (!(*utf & 0x40))
621 if (!(*utf & mask))
650 * @utf: a sequence of UTF-8 encoded bytes
658 xmlUTF8Strlen(const xmlChar *utf) { argument
661 if (utf == NULL)
664 while (*utf !
702 xmlGetUTF8Char(const unsigned char *utf, int *len) argument
773 xmlCheckUTF8(const unsigned char *utf) argument
825 xmlUTF8Strsize(const xmlChar *utf, int len) argument
858 xmlUTF8Strndup(const xmlChar *utf, int len) argument
887 xmlUTF8Strpos(const xmlChar *utf, int pos) argument
919 xmlUTF8Strloc(const xmlChar *utf, const xmlChar *utfchar) argument
956 xmlUTF8Strsub(const xmlChar *utf, int start, int len) argument
[all...]
H A Dxmlschemastypes.c4980 const xmlChar *utf; local
4985 utf = value;
4986 while (IS_BLANK_CH(*utf)) utf++;
4987 while (*utf != 0) {
4988 if (utf[0] & 0x80) {
4989 if ((utf[1] & 0xc0) != 0x80)
4991 if ((utf[0] & 0xe0) == 0xe0) {
4992 if ((utf[2] & 0xc0) != 0x80)
4994 if ((utf[
[all...]
H A Dparser.c9449 xmlCheckCdataPush(const xmlChar *utf, int len) { argument
9454 if ((utf == NULL) || (len <= 0))
9458 c = utf[ix];
9468 if ((utf[ix+1] & 0xc0 ) != 0x80)
9470 codepoint = (utf[ix] & 0x1f) << 6;
9471 codepoint |= utf[ix+1] & 0x3f;
9477 if (((utf[ix+1] & 0xc0) != 0x80) ||
9478 ((utf[ix+2] & 0xc0) != 0x80))
9480 codepoint = (utf[ix] & 0xf) << 12;
9481 codepoint |= (utf[i
[all...]
H A Dencoding.c2051 const xmlChar *utf = (const xmlChar *) in->content; local
2054 cur = xmlGetUTF8Char(utf, &len);
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dxmlstring.h109 xmlGetUTF8Char (const unsigned char *utf,
112 xmlCheckUTF8 (const unsigned char *utf);
114 xmlUTF8Strsize (const xmlChar *utf,
117 xmlUTF8Strndup (const xmlChar *utf,
120 xmlUTF8Strpos (const xmlChar *utf,
123 xmlUTF8Strloc (const xmlChar *utf,
126 xmlUTF8Strsub (const xmlChar *utf,
130 xmlUTF8Strlen (const xmlChar *utf);
132 xmlUTF8Size (const xmlChar *utf);
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dxsltutils.c235 * @utf: a sequence of UTF-8 encoded bytes
238 * Read one UTF8 Char from @utf
246 xsltGetUTF8Char(const unsigned char *utf, int *len) { argument
249 if (utf == NULL)
256 c = utf[0];
260 if ((utf[1] & 0xc0) != 0x80)
265 if ((utf[2] & 0xc0) != 0x80)
270 if ((c & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80)
274 c = (utf[0] & 0x7) << 18;
275 c |= (utf[
[all...]
H A Dxsltutils.h93 xsltGetUTF8Char (const unsigned char *utf,

Completed in 120 milliseconds