Home | History | Annotate | Download | only in libxml2

Lines Matching refs:codepoint

193     int codepoint;
360 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
361 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
707 * @start: the start codepoint
708 * @end: the end codepoint
1101 fprintf(output, "char %c\n", atom->codepoint);
1144 fprintf(output, "char %c ", trans->atom->codepoint);
2115 int codepoint;
2128 for (codepoint = range1->start;codepoint <= range1->end ;codepoint++) {
2129 ret = xmlRegCheckCharacterRange(range2->type, codepoint,
2478 ret = (atom1->codepoint == atom2->codepoint);
2537 ret = (atom1->codepoint == atom2->codepoint);
2539 ret = xmlRegCheckCharacter(atom2, atom1->codepoint);
2795 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg,
2806 ret = ((codepoint != '\n') && (codepoint != '\r'));
2809 ret = ((codepoint >= start) && (codepoint <= end));
2814 ret = ((codepoint == '\n') || (codepoint == '\r') ||
2815 (codepoint == '\t') || (codepoint == ' '));
2820 ret = (IS_LETTER(codepoint) ||
2821 (codepoint == '_') || (codepoint == ':'));
2826 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) ||
2827 (codepoint == '.') || (codepoint == '-') ||
2828 (codepoint == '_') || (codepoint == ':') ||
2829 IS_COMBINING(codepoint) || IS_EXTENDER(codepoint));
2834 ret = xmlUCSIsCatNd(codepoint);
2839 ret = xmlUCSIsCatP(codepoint);
2841 ret = xmlUCSIsCatZ(codepoint);
2843 ret = xmlUCSIsCatC(codepoint);
2846 ret = xmlUCSIsCatL(codepoint);
2849 ret = xmlUCSIsCatLu(codepoint);
2852 ret = xmlUCSIsCatLl(codepoint);
2855 ret = xmlUCSIsCatLt(codepoint);
2858 ret = xmlUCSIsCatLm(codepoint);
2861 ret = xmlUCSIsCatLo(codepoint);
2864 ret = xmlUCSIsCatM(codepoint);
2867 ret = xmlUCSIsCatMn(codepoint);
2870 ret = xmlUCSIsCatMc(codepoint);
2873 ret = xmlUCSIsCatMe(codepoint);
2876 ret = xmlUCSIsCatN(codepoint);
2879 ret = xmlUCSIsCatNd(codepoint);
2882 ret = xmlUCSIsCatNl(codepoint);
2885 ret = xmlUCSIsCatNo(codepoint);
2888 ret = xmlUCSIsCatP(codepoint);
2891 ret = xmlUCSIsCatPc(codepoint);
2894 ret = xmlUCSIsCatPd(codepoint);
2897 ret = xmlUCSIsCatPs(codepoint);
2900 ret = xmlUCSIsCatPe(codepoint);
2903 ret = xmlUCSIsCatPi(codepoint);
2906 ret = xmlUCSIsCatPf(codepoint);
2909 ret = xmlUCSIsCatPo(codepoint);
2912 ret = xmlUCSIsCatZ(codepoint);
2915 ret = xmlUCSIsCatZs(codepoint);
2918 ret = xmlUCSIsCatZl(codepoint);
2921 ret = xmlUCSIsCatZp(codepoint);
2924 ret = xmlUCSIsCatS(codepoint);
2927 ret = xmlUCSIsCatSm(codepoint);
2930 ret = xmlUCSIsCatSc(codepoint);
2933 ret = xmlUCSIsCatSk(codepoint);
2936 ret = xmlUCSIsCatSo(codepoint);
2939 ret = xmlUCSIsCatC(codepoint);
2942 ret = xmlUCSIsCatCc(codepoint);
2945 ret = xmlUCSIsCatCf(codepoint);
2948 ret = xmlUCSIsCatCo(codepoint);
2951 /* ret = xmlUCSIsCatCn(codepoint); */
2956 ret = xmlUCSIsBlock(codepoint, (const char *) blockName);
2965 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) {
2969 if ((atom == NULL) || (!IS_CHAR(codepoint)))
2977 return(codepoint == atom->codepoint);
2984 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2990 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2998 ret = xmlRegCheckCharacterRange(range->type, codepoint,
3058 ret = xmlRegCheckCharacterRange(atom->type, codepoint, 0, 0, 0,
3192 int ret, codepoint = 0, len, deter;
3282 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
3283 ret = xmlRegCheckCharacter(atom, codepoint);
3344 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
3346 ret = xmlRegCheckCharacter(atom, codepoint);
3373 * we don't match on the codepoint, but minOccurs of 0
3375 * over the codepoint.
3394 trans->atom->no, codepoint, exec->index);
3397 trans->count, codepoint, exec->index);
3453 codepoint,codepoint);
4431 int codepoint, len;
4477 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
4478 ret = xmlRegCheckCharacter(atom, codepoint);
4517 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
4519 ret = xmlRegCheckCharacter(atom, codepoint);
4899 ctxt->atom->codepoint = '\n';
4902 ctxt->atom->codepoint = '\r';
4905 ctxt->atom->codepoint = '\t';
4908 ctxt->atom->codepoint = cur;
5252 int codepoint, len;
5254 codepoint = xmlFAIsChar(ctxt);
5255 if (codepoint > 0) {
5259 codepoint = CUR_SCHAR(ctxt->cur, len);
5260 ctxt->atom->codepoint = codepoint;