Searched defs:codepoint (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dparser.c9828 int codepoint; local
9846 codepoint = (utf[ix] & 0x1f) << 6;
9847 codepoint |= utf[ix+1] & 0x3f;
9848 if (!xmlIsCharQ(codepoint))
9856 codepoint = (utf[ix] & 0xf) << 12;
9857 codepoint |= (utf[ix+1] & 0x3f) << 6;
9858 codepoint |= utf[ix+2] & 0x3f;
9859 if (!xmlIsCharQ(codepoint))
9868 codepoint = (utf[ix] & 0x7) << 18;
9869 codepoint |
[all...]
H A Dxmlregexp.c190 int codepoint; member in struct:_xmlRegAtom
352 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
353 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
696 * @start: the start codepoint
697 * @end: the end codepoint
1090 fprintf(output, "char %c\n", atom->codepoint);
1133 fprintf(output, "char %c ", trans->atom->codepoint);
2072 int codepoint; local
2085 for (codepoint = range1->start;codepoint <
2722 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg, int start, int end, const xmlChar *blockName) argument
2892 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) argument
3117 int ret, codepoint = 0, len, deter; local
5226 int codepoint, len; local
[all...]

Completed in 105 milliseconds