Lines Matching refs:tokenType

64105   int tokenType;
64111 n = sqlite3GetToken((u8*)zSql, &tokenType);
64112 assert( n>0 && tokenType!=TK_ILLEGAL );
64113 if( tokenType==TK_VARIABLE ){
111657 ** Store the token type in *tokenType before returning.
111659 SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){
111669 *tokenType = TK_SPACE;
111676 *tokenType = TK_SPACE; /* IMP: R-22934-25134 */
111679 *tokenType = TK_MINUS;
111683 *tokenType = TK_LP;
111687 *tokenType = TK_RP;
111691 *tokenType = TK_SEMI;
111695 *tokenType = TK_PLUS;
111699 *tokenType = TK_STAR;
111704 *tokenType = TK_SLASH;
111710 *tokenType = TK_SPACE; /* IMP: R-22934-25134 */
111714 *tokenType = TK_REM;
111718 *tokenType = TK_EQ;
111723 *tokenType = TK_LE;
111726 *tokenType = TK_NE;
111729 *tokenType = TK_LSHIFT;
111732 *tokenType = TK_LT;
111738 *tokenType = TK_GE;
111741 *tokenType = TK_RSHIFT;
111744 *tokenType = TK_GT;
111750 *tokenType = TK_ILLEGAL;
111753 *tokenType = TK_NE;
111759 *tokenType = TK_BITOR;
111762 *tokenType = TK_CONCAT;
111767 *tokenType = TK_COMMA;
111771 *tokenType = TK_BITAND;
111775 *tokenType = TK_BITNOT;
111795 *tokenType = TK_STRING;
111798 *tokenType = TK_ID;
111801 *tokenType = TK_ILLEGAL;
111810 *tokenType = TK_DOT;
111822 *tokenType = TK_INTEGER;
111828 *tokenType = TK_FLOAT;
111837 *tokenType = TK_FLOAT;
111841 *tokenType = TK_ILLEGAL;
111848 *tokenType = c==']' ? TK_ID : TK_ILLEGAL;
111852 *tokenType = TK_VARIABLE;
111861 *tokenType = TK_REGISTER;
111874 *tokenType = TK_VARIABLE;
111886 *tokenType = TK_ILLEGAL;
111896 if( n==0 ) *tokenType = TK_ILLEGAL;
111903 *tokenType = TK_BLOB;
111906 *tokenType = TK_ILLEGAL;
111920 *tokenType = keywordCode((char*)z, i);
111924 *tokenType = TK_ILLEGAL;
111939 int tokenType; /* type of the next token */
111969 pParse->sLastToken.n = sqlite3GetToken((unsigned char*)&zSql[i],&tokenType);
111975 switch( tokenType ){
111996 sqlite3Parser(pEngine, tokenType, pParse->sLastToken, pParse);
111997 lastTokenParsed = tokenType;