• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching refs:codepoint

184     int codepoint;
345 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
346 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
689 * @start: the start codepoint
690 * @end: the end codepoint
1007 fprintf(output, "char %c\n", atom->codepoint);
1050 fprintf(output, "char %c ", trans->atom->codepoint);
1942 int codepoint;
1955 for (codepoint = range1->start;codepoint <= range1->end ;codepoint++) {
1956 ret = xmlRegCheckCharacterRange(range2->type, codepoint,
2301 ret = (atom1->codepoint == atom2->codepoint);
2356 ret = (atom1->codepoint == atom2->codepoint);
2358 ret = xmlRegCheckCharacter(atom2, atom1->codepoint);
2592 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg,
2603 ret = ((codepoint != '\n') && (codepoint != '\r'));
2606 ret = ((codepoint >= start) && (codepoint <= end));
2611 ret = ((codepoint == '\n') || (codepoint == '\r') ||
2612 (codepoint == '\t') || (codepoint == ' '));
2617 ret = (IS_LETTER(codepoint) ||
2618 (codepoint == '_') || (codepoint == ':'));
2623 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) ||
2624 (codepoint == '.') || (codepoint == '-') ||
2625 (codepoint == '_') || (codepoint == ':') ||
2626 IS_COMBINING(codepoint) || IS_EXTENDER(codepoint));
2631 ret = xmlUCSIsCatNd(codepoint);
2636 ret = xmlUCSIsCatP(codepoint);
2638 ret = xmlUCSIsCatZ(codepoint);
2640 ret = xmlUCSIsCatC(codepoint);
2643 ret = xmlUCSIsCatL(codepoint);
2646 ret = xmlUCSIsCatLu(codepoint);
2649 ret = xmlUCSIsCatLl(codepoint);
2652 ret = xmlUCSIsCatLt(codepoint);
2655 ret = xmlUCSIsCatLm(codepoint);
2658 ret = xmlUCSIsCatLo(codepoint);
2661 ret = xmlUCSIsCatM(codepoint);
2664 ret = xmlUCSIsCatMn(codepoint);
2667 ret = xmlUCSIsCatMc(codepoint);
2670 ret = xmlUCSIsCatMe(codepoint);
2673 ret = xmlUCSIsCatN(codepoint);
2676 ret = xmlUCSIsCatNd(codepoint);
2679 ret = xmlUCSIsCatNl(codepoint);
2682 ret = xmlUCSIsCatNo(codepoint);
2685 ret = xmlUCSIsCatP(codepoint);
2688 ret = xmlUCSIsCatPc(codepoint);
2691 ret = xmlUCSIsCatPd(codepoint);
2694 ret = xmlUCSIsCatPs(codepoint);
2697 ret = xmlUCSIsCatPe(codepoint);
2700 ret = xmlUCSIsCatPi(codepoint);
2703 ret = xmlUCSIsCatPf(codepoint);
2706 ret = xmlUCSIsCatPo(codepoint);
2709 ret = xmlUCSIsCatZ(codepoint);
2712 ret = xmlUCSIsCatZs(codepoint);
2715 ret = xmlUCSIsCatZl(codepoint);
2718 ret = xmlUCSIsCatZp(codepoint);
2721 ret = xmlUCSIsCatS(codepoint);
2724 ret = xmlUCSIsCatSm(codepoint);
2727 ret = xmlUCSIsCatSc(codepoint);
2730 ret = xmlUCSIsCatSk(codepoint);
2733 ret = xmlUCSIsCatSo(codepoint);
2736 ret = xmlUCSIsCatC(codepoint);
2739 ret = xmlUCSIsCatCc(codepoint);
2742 ret = xmlUCSIsCatCf(codepoint);
2745 ret = xmlUCSIsCatCo(codepoint);
2748 /* ret = xmlUCSIsCatCn(codepoint); */
2753 ret = xmlUCSIsBlock(codepoint, (const char *) blockName);
2762 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) {
2766 if ((atom == NULL) || (!IS_CHAR(codepoint)))
2774 return(codepoint == atom->codepoint);
2781 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2787 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2795 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2855 ret = xmlRegCheckCharacterRange(atom->type, codepoint, 0, 0, 0,
2986 int ret, codepoint = 0, len, deter;
3075 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
3076 ret = xmlRegCheckCharacter(atom, codepoint);
3127 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
3129 ret = xmlRegCheckCharacter(atom, codepoint);
3156 * we don't match on the codepoint, but minOccurs of 0
3158 * over the codepoint.
3177 trans->atom->no, codepoint, exec->index);
3180 trans->count, codepoint, exec->index);
3228 codepoint,codepoint);
4204 int codepoint, len;
4250 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
4251 ret = xmlRegCheckCharacter(atom, codepoint);
4290 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
4292 ret = xmlRegCheckCharacter(atom, codepoint);
4672 ctxt->atom->codepoint = '\n';
4675 ctxt->atom->codepoint = '\r';
4678 ctxt->atom->codepoint = '\t';
4681 ctxt->atom->codepoint = cur;
5070 int codepoint, len;
5072 codepoint = xmlFAIsChar(ctxt);
5073 if (codepoint > 0) {
5077 codepoint = CUR_SCHAR(ctxt->cur, len);
5078 ctxt->atom->codepoint = codepoint;