Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c96353 int tokenType; local
96359 n = sqlite3GetToken((u8*)zSql, &tokenType);
96360 assert( n>0 && tokenType!=TK_ILLEGAL );
96361 if( tokenType==TK_VARIABLE ){
162716 int tokenType = 0; local
162718 z += sqlite3GetToken(z, &tokenType);
162719 }while( tokenType==TK_SPACE || tokenType==TK_COMMENT );
162720 if( tokenType!=aKeyword[i] ){
186346 SQLITE_PRIVATE i64 sqlite3GetToken(const unsigned char *z, int *tokenType){ argument
186359 *tokenType = TK_SPACE;
[all …]