• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/regex/

Lines Matching refs:chr

24     chr *name;
130 chr start;
131 chr end;
190 static chr alphaCharTable[] = {
206 #define NUM_ALPHA_CHAR (sizeof(alphaCharTable)/sizeof(chr))
236 static chr punctCharTable[] = {
246 #define NUM_PUNCT_CHAR (sizeof(punctCharTable)/sizeof(chr))
256 static chr spaceCharTable[] = {
260 #define NUM_SPACE_CHAR (sizeof(spaceCharTable)/sizeof(chr))
277 static chr lowerCharTable[] = {
320 #define NUM_LOWER_CHAR (sizeof(lowerCharTable)/sizeof(chr))
337 static chr upperCharTable[] = {
380 #define NUM_UPPER_CHAR (sizeof(upperCharTable)/sizeof(chr))
506 static chr graphCharTable[] = {
523 #define NUM_GRAPH_CHAR (sizeof(graphCharTable)/sizeof(chr))
684 ^ static celt element(struct vars *, chr *, chr *);
689 chr *startp; /* points to start of name */
690 chr *endp; /* points just past end of name */
695 /* generic: one-chr names stand for themselves */
760 lc = Tcl_UniCharToLower((chr)c);
761 uc = Tcl_UniCharToUpper((chr)c);
762 tc = Tcl_UniCharToTitle((chr)c);
809 addchr(cv, (chr)'x');
810 addchr(cv, (chr)'y');
812 addchr(cv, (chr)'X');
813 addchr(cv, (chr)'Y');
824 addchr(cv, (chr)c);
833 ^ static struct cvec *cclass(struct vars *, chr *, chr *, int);
838 chr *startp; /* where the name starts */
839 chr *endp; /* just past the end of the name */
844 CONST chr *np;
845 chr **namePtr;
852 static chr *classNames[] = {
1043 chr *startp; /* where the name starts */
1044 chr *endp; /* just past the end of the name */
1051 chr *np;
1084 addchr(cv, (chr)*p);
1112 - allcases - supply cvec for all case counterparts of a chr (including itself)
1123 chr c = (chr)pc;
1124 chr lc, uc, tc;
1126 lc = Tcl_UniCharToLower((chr)c);
1127 uc = Tcl_UniCharToUpper((chr)c);
1128 tc = Tcl_UniCharToTitle((chr)c);
1144 - cmp - chr-substring compare
1149 ^ static int cmp(CONST chr *, CONST chr *, size_t);
1153 CONST chr *x, *y; /* strings to compare */
1156 return memcmp(VS(x), VS(y), len*sizeof(chr));
1160 - casecmp - case-independent chr-substring compare
1165 ^ static int casecmp(CONST chr *, CONST chr *, size_t);
1169 CONST chr *x, *y; /* strings to compare */