• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:codepoint

190     int codepoint;
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);
2093 int codepoint;
2106 for (codepoint = range1->start;codepoint <= range1->end ;codepoint++) {
2107 ret = xmlRegCheckCharacterRange(range2->type, codepoint,
2452 ret = (atom1->codepoint == atom2->codepoint);
2507 ret = (atom1->codepoint == atom2->codepoint);
2509 ret = xmlRegCheckCharacter(atom2, atom1->codepoint);
2743 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg,
2754 ret = ((codepoint != '\n') && (codepoint != '\r'));
2757 ret = ((codepoint >= start) && (codepoint <= end));
2762 ret = ((codepoint == '\n') || (codepoint == '\r') ||
2763 (codepoint == '\t') || (codepoint == ' '));
2768 ret = (IS_LETTER(codepoint) ||
2769 (codepoint == '_') || (codepoint == ':'));
2774 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) ||
2775 (codepoint == '.') || (codepoint == '-') ||
2776 (codepoint == '_') || (codepoint == ':') ||
2777 IS_COMBINING(codepoint) || IS_EXTENDER(codepoint));
2782 ret = xmlUCSIsCatNd(codepoint);
2787 ret = xmlUCSIsCatP(codepoint);
2789 ret = xmlUCSIsCatZ(codepoint);
2791 ret = xmlUCSIsCatC(codepoint);
2794 ret = xmlUCSIsCatL(codepoint);
2797 ret = xmlUCSIsCatLu(codepoint);
2800 ret = xmlUCSIsCatLl(codepoint);
2803 ret = xmlUCSIsCatLt(codepoint);
2806 ret = xmlUCSIsCatLm(codepoint);
2809 ret = xmlUCSIsCatLo(codepoint);
2812 ret = xmlUCSIsCatM(codepoint);
2815 ret = xmlUCSIsCatMn(codepoint);
2818 ret = xmlUCSIsCatMc(codepoint);
2821 ret = xmlUCSIsCatMe(codepoint);
2824 ret = xmlUCSIsCatN(codepoint);
2827 ret = xmlUCSIsCatNd(codepoint);
2830 ret = xmlUCSIsCatNl(codepoint);
2833 ret = xmlUCSIsCatNo(codepoint);
2836 ret = xmlUCSIsCatP(codepoint);
2839 ret = xmlUCSIsCatPc(codepoint);
2842 ret = xmlUCSIsCatPd(codepoint);
2845 ret = xmlUCSIsCatPs(codepoint);
2848 ret = xmlUCSIsCatPe(codepoint);
2851 ret = xmlUCSIsCatPi(codepoint);
2854 ret = xmlUCSIsCatPf(codepoint);
2857 ret = xmlUCSIsCatPo(codepoint);
2860 ret = xmlUCSIsCatZ(codepoint);
2863 ret = xmlUCSIsCatZs(codepoint);
2866 ret = xmlUCSIsCatZl(codepoint);
2869 ret = xmlUCSIsCatZp(codepoint);
2872 ret = xmlUCSIsCatS(codepoint);
2875 ret = xmlUCSIsCatSm(codepoint);
2878 ret = xmlUCSIsCatSc(codepoint);
2881 ret = xmlUCSIsCatSk(codepoint);
2884 ret = xmlUCSIsCatSo(codepoint);
2887 ret = xmlUCSIsCatC(codepoint);
2890 ret = xmlUCSIsCatCc(codepoint);
2893 ret = xmlUCSIsCatCf(codepoint);
2896 ret = xmlUCSIsCatCo(codepoint);
2899 /* ret = xmlUCSIsCatCn(codepoint); */
2904 ret = xmlUCSIsBlock(codepoint, (const char *) blockName);
2913 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) {
2917 if ((atom == NULL) || (!IS_CHAR(codepoint)))
2925 return(codepoint == atom->codepoint);
2932 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2938 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2946 ret = xmlRegCheckCharacterRange(range->type, codepoint,
3006 ret = xmlRegCheckCharacterRange(atom->type, codepoint, 0, 0, 0,
3138 int ret, codepoint = 0, len, deter;
3228 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
3229 ret = xmlRegCheckCharacter(atom, codepoint);
3290 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
3292 ret = xmlRegCheckCharacter(atom, codepoint);
3319 * we don't match on the codepoint, but minOccurs of 0
3321 * over the codepoint.
3340 trans->atom->no, codepoint, exec->index);
3343 trans->count, codepoint, exec->index);
3399 codepoint,codepoint);
4375 int codepoint, len;
4421 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
4422 ret = xmlRegCheckCharacter(atom, codepoint);
4461 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
4463 ret = xmlRegCheckCharacter(atom, codepoint);
4843 ctxt->atom->codepoint = '\n';
4846 ctxt->atom->codepoint = '\r';
4849 ctxt->atom->codepoint = '\t';
4852 ctxt->atom->codepoint = cur;
5184 int codepoint, len;
5186 codepoint = xmlFAIsChar(ctxt);
5187 if (codepoint > 0) {
5191 codepoint = CUR_SCHAR(ctxt->cur, len);
5192 ctxt->atom->codepoint = codepoint;