Lines Matching defs:zId
82634 ** zId of length nId is a double-quoted identifier. Check to see if
82639 const char *zId /* The double-quoted identifier, already dequoted */
82642 assert( zId!=0 );
82645 if( strcmp(zId, pStr->z)==0 ) return 1;
104669 const char *zId; /* The function name. */
104677 zId = pExpr->u.zToken;
104678 pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0);
104680 pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0);
110265 const char *zId; /* The function name */
110288 zId = pExpr->u.zToken;
110289 pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0);
122181 ** Return the index in pList of the identifier named zId. Return -1
172970 char *zId = sqlite3DbStrNDup(db, zSql+i, n);
172973 if( zId==0 ) break;
172974 sqlite3Dequote(zId);
172975 if( zSql[i]=='"' && sqlite3VdbeUsesDoubleQuotedString(pVdbe, zId) ){
172977 sqlite3DbFree(db, zId);
172980 nId = sqlite3Strlen30(zId);
172981 if( sqlite3GetToken((u8*)zId, &eType)==nId && eType==TK_ID ){
172983 sqlite3_str_append(pStr, zId, nId);
172985 sqlite3_str_appendf(pStr, "\"%w\"", zId);
172987 sqlite3DbFree(db, zId);