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

/osnet-11/usr/src/lib/libsqlite/src/
H A Dtokenize.c33 u8 tokenType; /* Token value for this keyword */ member in struct:Keyword
181 return p->tokenType;
217 ** Store the token type in *tokenType before returning.
219 static int sqliteGetToken(const unsigned char *z, int *tokenType){ argument
224 *tokenType = TK_SPACE;
230 *tokenType = TK_COMMENT;
233 *tokenType = TK_MINUS;
237 *tokenType = TK_LP;
241 *tokenType = TK_RP;
245 *tokenType
403 int tokenType; local
[all...]
/osnet-11/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 22 milliseconds