Home
last modified time | relevance | path

Searched refs:tokenType (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c94086 int tokenType; local
94092 n = sqlite3GetToken((u8*)zSql, &tokenType);
94093 assert( n>0 && tokenType!=TK_ILLEGAL );
94094 if( tokenType==TK_VARIABLE ){
158386 int tokenType = 0;
158388 z += sqlite3GetToken(z, &tokenType);
158389 }while( tokenType==TK_SPACE || tokenType==TK_COMMENT );
158390 if( tokenType!=aKeyword[i] ){
181623 SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){
181635 *tokenType = TK_SPACE;
[all …]