Lines Matching refs:TK_DOT
7030 #define TK_DOT 118
68090 case TK_DOT: {
68103 assert( pRight->op==TK_DOT );
72739 ** preceded by either TK_ON or TK_DOT and immediatedly followed by one
72764 ** recent TK_DOT or TK_ON. This means that when a WHEN, FOR or BEGIN
72773 if( token==TK_DOT || token==TK_ON ){
82229 sqlite3PExpr(pParse, TK_DOT,
82244 sqlite3PExpr(pParse, TK_DOT,
82248 sqlite3PExpr(pParse, TK_DOT,
82259 pNew = sqlite3PExpr(pParse, TK_DOT,
89093 while( pColExpr->op==TK_DOT ) pColExpr = pColExpr->pRight;
91091 assert( pE->op!=TK_DOT || pE->pRight!=0 );
91092 assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) );
91093 if( pE->op==TK_DOT && pE->pRight->op==TK_ALL ) break;
91109 assert( pE->op!=TK_DOT || pE->pRight!=0 );
91110 if( pE->op!=TK_ALL && (pE->op!=TK_DOT || pE->pRight->op!=TK_ALL) ){
91126 if( pE->op==TK_DOT ){
91180 pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0);
102622 Expr *pDot = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0);
102824 yygotominor.yy118.pExpr = sqlite3PExpr(pParse, TK_DOT, temp1, temp2, 0);
102833 Expr *temp4 = sqlite3PExpr(pParse, TK_DOT, temp2, temp3, 0);
102834 yygotominor.yy118.pExpr = sqlite3PExpr(pParse, TK_DOT, temp1, temp4, 0);
104174 *tokenType = TK_DOT;