Lines Matching refs:token
45 static int getdimension(int token, const char *text, int leng);
46 static int getstring(int token, const char *text, int leng);
47 static int gettoken(int token, const char *text, int leng);
48 static int getcomment(int token, const char *text, int leng);
110 fprintf(stderr, "parse error on line %d at token \"%*.*s\"\n",
149 static int getdimension(int token, const char *text, int leng)
160 yylval.pair = dmxConfigCreatePair(token, lineno, NULL, x, y, 1, 1);
161 return token;
164 static int getstring(int token, const char *text, int leng)
166 yylval.string = dmxConfigCreateString(token, lineno, NULL,
169 return token;
172 static int gettoken(int token, const char *text, int leng)
174 yylval.token = dmxConfigCreateToken(token, lineno, NULL);
175 return token;
178 static int getcomment(int token, const char *text, int leng)
180 yylval.comment = dmxConfigCreateComment(token, lineno,
183 return token;