• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:codepoint

190     int codepoint;
356 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
357 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
703 * @start: the start codepoint
704 * @end: the end codepoint
1097 fprintf(output, "char %c\n", atom->codepoint);
1140 fprintf(output, "char %c ", trans->atom->codepoint);
2106 int codepoint;
2119 for (codepoint = range1->start;codepoint <= range1->end ;codepoint++) {
2120 ret = xmlRegCheckCharacterRange(range2->type, codepoint,
2469 ret = (atom1->codepoint == atom2->codepoint);
2528 ret = (atom1->codepoint == atom2->codepoint);
2530 ret = xmlRegCheckCharacter(atom2, atom1->codepoint);
2782 xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg,
2793 ret = ((codepoint != '\n') && (codepoint != '\r'));
2796 ret = ((codepoint >= start) && (codepoint <= end));
2801 ret = ((codepoint == '\n') || (codepoint == '\r') ||
2802 (codepoint == '\t') || (codepoint == ' '));
2807 ret = (IS_LETTER(codepoint) ||
2808 (codepoint == '_') || (codepoint == ':'));
2813 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) ||
2814 (codepoint == '.') || (codepoint == '-') ||
2815 (codepoint == '_') || (codepoint == ':') ||
2816 IS_COMBINING(codepoint) || IS_EXTENDER(codepoint));
2821 ret = xmlUCSIsCatNd(codepoint);
2826 ret = xmlUCSIsCatP(codepoint);
2828 ret = xmlUCSIsCatZ(codepoint);
2830 ret = xmlUCSIsCatC(codepoint);
2833 ret = xmlUCSIsCatL(codepoint);
2836 ret = xmlUCSIsCatLu(codepoint);
2839 ret = xmlUCSIsCatLl(codepoint);
2842 ret = xmlUCSIsCatLt(codepoint);
2845 ret = xmlUCSIsCatLm(codepoint);
2848 ret = xmlUCSIsCatLo(codepoint);
2851 ret = xmlUCSIsCatM(codepoint);
2854 ret = xmlUCSIsCatMn(codepoint);
2857 ret = xmlUCSIsCatMc(codepoint);
2860 ret = xmlUCSIsCatMe(codepoint);
2863 ret = xmlUCSIsCatN(codepoint);
2866 ret = xmlUCSIsCatNd(codepoint);
2869 ret = xmlUCSIsCatNl(codepoint);
2872 ret = xmlUCSIsCatNo(codepoint);
2875 ret = xmlUCSIsCatP(codepoint);
2878 ret = xmlUCSIsCatPc(codepoint);
2881 ret = xmlUCSIsCatPd(codepoint);
2884 ret = xmlUCSIsCatPs(codepoint);
2887 ret = xmlUCSIsCatPe(codepoint);
2890 ret = xmlUCSIsCatPi(codepoint);
2893 ret = xmlUCSIsCatPf(codepoint);
2896 ret = xmlUCSIsCatPo(codepoint);
2899 ret = xmlUCSIsCatZ(codepoint);
2902 ret = xmlUCSIsCatZs(codepoint);
2905 ret = xmlUCSIsCatZl(codepoint);
2908 ret = xmlUCSIsCatZp(codepoint);
2911 ret = xmlUCSIsCatS(codepoint);
2914 ret = xmlUCSIsCatSm(codepoint);
2917 ret = xmlUCSIsCatSc(codepoint);
2920 ret = xmlUCSIsCatSk(codepoint);
2923 ret = xmlUCSIsCatSo(codepoint);
2926 ret = xmlUCSIsCatC(codepoint);
2929 ret = xmlUCSIsCatCc(codepoint);
2932 ret = xmlUCSIsCatCf(codepoint);
2935 ret = xmlUCSIsCatCo(codepoint);
2938 /* ret = xmlUCSIsCatCn(codepoint); */
2943 ret = xmlUCSIsBlock(codepoint, (const char *) blockName);
2952 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) {
2956 if ((atom == NULL) || (!IS_CHAR(codepoint)))
2964 return(codepoint == atom->codepoint);
2971 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2977 ret = xmlRegCheckCharacterRange(range->type, codepoint,
2985 ret = xmlRegCheckCharacterRange(range->type, codepoint,
3045 ret = xmlRegCheckCharacterRange(atom->type, codepoint, 0, 0, 0,
3177 int ret, codepoint = 0, len, deter;
3267 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
3268 ret = xmlRegCheckCharacter(atom, codepoint);
3329 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
3331 ret = xmlRegCheckCharacter(atom, codepoint);
3358 * we don't match on the codepoint, but minOccurs of 0
3360 * over the codepoint.
3379 trans->atom->no, codepoint, exec->index);
3382 trans->count, codepoint, exec->index);
3438 codepoint,codepoint);
4414 int codepoint, len;
4460 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len);
4461 ret = xmlRegCheckCharacter(atom, codepoint);
4500 codepoint = CUR_SCHAR(&(exec->inputString[exec->index]),
4502 ret = xmlRegCheckCharacter(atom, codepoint);
4882 ctxt->atom->codepoint = '\n';
4885 ctxt->atom->codepoint = '\r';
4888 ctxt->atom->codepoint = '\t';
4891 ctxt->atom->codepoint = cur;
5234 int codepoint, len;
5236 codepoint = xmlFAIsChar(ctxt);
5237 if (codepoint > 0) {
5241 codepoint = CUR_SCHAR(ctxt->cur, len);
5242 ctxt->atom->codepoint = codepoint;