HomeSort by relevance Sort by last modified time
    Searched defs:pInClause (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
delete.c 129 ** pLimitWhere (pInClause)
141 Expr *pInClause = NULL; /* WHERE rowid IN ( select ) */
194 pInClause = sqlite3PExpr(pParse, TK_IN, pWhereRowid, 0, 0);
195 if( pInClause == 0 ) goto limit_where_cleanup_1;
197 pInClause->x.pSelect = pSelect;
198 pInClause->flags |= EP_xIsSelect;
199 sqlite3ExprSetHeight(pParse, pInClause);
200 return pInClause;
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 423 milliseconds