Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c96195 int tokenType; local
96201 n = sqlite3GetToken((u8*)zSql, &tokenType);
96202 assert( n>0 && tokenType!=TK_ILLEGAL );
96203 if( tokenType==TK_VARIABLE ){
162466 int tokenType = 0; local
162468 z += sqlite3GetToken(z, &tokenType);
162469 }while( tokenType==TK_SPACE || tokenType==TK_COMMENT );
162470 if( tokenType!=aKeyword[i] ){
186091 SQLITE_PRIVATE i64 sqlite3GetToken(const unsigned char *z, int *tokenType){ argument
186104 *tokenType = TK_SPACE;
[all …]