Searched defs:tokenType (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtokenize.c35 u8 tokenType; /* Token value for this keyword */ member in struct:Keyword
183 return p->tokenType;
219 ** Store the token type in *tokenType before returning.
221 static int sqliteGetToken(const unsigned char *z, int *tokenType){ argument
226 *tokenType = TK_SPACE;
232 *tokenType = TK_COMMENT;
235 *tokenType = TK_MINUS;
239 *tokenType = TK_LP;
243 *tokenType = TK_RP;
247 *tokenType
405 int tokenType; local
[all...]
/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dlempar.c214 const char *ParseTokenName(int tokenType){ argument
216 if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){
217 return yyTokenName[tokenType];

Completed in 46 milliseconds