• 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:vars

42 static VOID moresubs _ANSI_ARGS_((struct vars *, int));
43 static int freev _ANSI_ARGS_((struct vars *, int));
44 static VOID makesearch _ANSI_ARGS_((struct vars *, struct nfa *));
45 static struct subre *parse _ANSI_ARGS_((struct vars *, int, int, struct state *, struct state *));
46 static struct subre *parsebranch _ANSI_ARGS_((struct vars *, int, int, struct state *, struct state *, int));
47 static VOID parseqatom _ANSI_ARGS_((struct vars *, int, int, struct state *, struct state *, struct subre *));
48 static VOID nonword _ANSI_ARGS_((struct vars *, int, struct state *, struct state *));
49 static VOID word _ANSI_ARGS_((struct vars *, int, struct state *, struct state *));
50 static int scannum _ANSI_ARGS_((struct vars *));
51 static VOID repeat _ANSI_ARGS_((struct vars *, struct state *, struct state *, int, int));
52 static VOID bracket _ANSI_ARGS_((struct vars *, struct state *, struct state *));
53 static VOID cbracket _ANSI_ARGS_((struct vars *, struct state *, struct state *));
54 static VOID brackpart _ANSI_ARGS_((struct vars *, struct state *, struct state *));
55 static chr *scanplain _ANSI_ARGS_((struct vars *));
56 static VOID leaders _ANSI_ARGS_((struct vars *, struct cvec *));
57 static VOID onechr _ANSI_ARGS_((struct vars *, pchr, struct state *, struct state *));
58 static VOID dovec _ANSI_ARGS_((struct vars *, struct cvec *, struct state *, struct state *));
59 static celt nextleader _ANSI_ARGS_((struct vars *, pchr, pchr));
60 static VOID wordchrs _ANSI_ARGS_((struct vars *));
61 static struct subre *subre _ANSI_ARGS_((struct vars *, int, int, struct state *, struct state *));
62 static VOID freesubre _ANSI_ARGS_((struct vars *, struct subre *));
63 static VOID freesrnode _ANSI_ARGS_((struct vars *, struct subre *));
64 static VOID optst _ANSI_ARGS_((struct vars *, struct subre *));
67 static VOID cleanst _ANSI_ARGS_((struct vars *));
68 static long nfatree _ANSI_ARGS_((struct vars *, struct subre *, FILE *));
69 static long nfanode _ANSI_ARGS_((struct vars *, struct subre *, FILE *));
70 static int newlacon _ANSI_ARGS_((struct vars *, struct state *, struct state *, int));
78 static VOID lexstart _ANSI_ARGS_((struct vars *));
79 static VOID prefixes _ANSI_ARGS_((struct vars *));
80 static VOID lexnest _ANSI_ARGS_((struct vars *, chr *, chr *));
81 static VOID lexword _ANSI_ARGS_((struct vars *));
82 static int next _ANSI_ARGS_((struct vars *));
83 static int lexescape _ANSI_ARGS_((struct vars *));
84 static chr lexdigits _ANSI_ARGS_((struct vars *, int, int, int));
85 static int brenext _ANSI_ARGS_((struct vars *, pchr));
86 static VOID skip _ANSI_ARGS_((struct vars *));
91 static chr chrnamed _ANSI_ARGS_((struct vars *, chr *, chr *, pchr));
93 static VOID initcm _ANSI_ARGS_((struct vars *, struct colormap *));
103 static VOID subrange _ANSI_ARGS_((struct vars *, pchr, pchr, struct state *, struct state *));
104 static VOID subblock _ANSI_ARGS_((struct vars *, pchr, struct state *, struct state *));
117 static struct nfa *newnfa _ANSI_ARGS_((struct vars *, struct colormap *, struct nfa *));
176 static struct cvec *getcvec _ANSI_ARGS_((struct vars *, int, int, int));
179 static int nmcces _ANSI_ARGS_((struct vars *));
180 static int nleaders _ANSI_ARGS_((struct vars *));
181 static struct cvec *allmcces _ANSI_ARGS_((struct vars *, struct cvec *));
182 static celt element _ANSI_ARGS_((struct vars *, chr *, chr *));
183 static struct cvec *range _ANSI_ARGS_((struct vars *, celt, celt, int));
185 static struct cvec *eclass _ANSI_ARGS_((struct vars *, celt, int));
186 static struct cvec *cclass _ANSI_ARGS_((struct vars *, chr *, chr *, int));
187 static struct cvec *allcases _ANSI_ARGS_((struct vars *, pchr));
196 struct vars {
230 /* parsing macros; most know that `v' is the struct vars pointer */
290 struct vars var;
291 struct vars *v = &var;
442 ^ static VOID moresubs(struct vars *, int);
446 struct vars *v;
473 - freev - free vars struct's substructures where necessary
476 ^ static int freev(struct vars *, int);
480 struct vars *v;
509 ^ static VOID makesearch(struct vars *, struct nfa *);
513 struct vars *v;
586 ^ static struct subre *parse(struct vars *, int, int, struct state *,
591 struct vars *v;
661 ^ static struct subre *parsebranch(struct vars *, int, int, struct state *,
666 struct vars *v;
708 ^ static VOID parseqatom(struct vars *, int, int, struct state *,
713 struct vars *v;
1107 ^ static VOID nonword(struct vars *, int, struct state *, struct state *);
1111 struct vars *v;
1127 ^ static VOID word(struct vars *, int, struct state *, struct state *);
1131 struct vars *v;
1143 ^ static int scannum(struct vars *);
1147 struct vars *v;
1170 ^ static VOID repeat(struct vars *, struct state *, struct state *, int, int);
1174 struct vars *v;
1257 ^ static VOID bracket(struct vars *, struct state *, struct state *);
1261 struct vars *v;
1278 ^ static VOID cbracket(struct vars *, struct state *, struct state *);
1282 struct vars *v;
1362 ^ static VOID brackpart(struct vars *, struct state *, struct state *);
1366 struct vars *v;
1472 ^ static chr *scanplain(struct vars *);
1476 struct vars *v;
1499 ^ static VOID leaders(struct vars *, struct cvec *);
1503 struct vars *v;
1542 ^ static VOID onechr(struct vars *, pchr, struct state *, struct state *);
1546 struct vars *v;
1563 ^ static VOID dovec(struct vars *, struct cvec *, struct state *,
1568 struct vars *v;
1684 ^ static celt nextleader(struct vars *, pchr, pchr);
1688 struct vars *v;
1716 ^ static VOID wordchrs(struct vars *);
1720 struct vars *v;
1746 ^ static struct subre *subre(struct vars *, int, int, struct state *,
1751 struct vars *v;
1790 ^ static VOID freesubre(struct vars *, struct subre *);
1794 struct vars *v; /* might be NULL */
1810 ^ static VOID freesrnode(struct vars *, struct subre *);
1814 struct vars *v; /* might be NULL */
1833 ^ static VOID optst(struct vars *, struct subre *);
1837 struct vars *v;
1891 ^ static VOID cleanst(struct vars *);
1895 struct vars *v;
1911 ^ static long nfatree(struct vars *, struct subre *, FILE *);
1915 struct vars *v;
1931 ^ static long nfanode(struct vars *, struct subre *, FILE *);
1935 struct vars *v;
1964 ^ static int newlacon(struct vars *, struct state *, struct state *, int);
1968 struct vars *v;
2036 freesubre((struct vars *)NULL, g->tree);