Lines Matching defs:Cte
15344 typedef struct Cte Cte;
20358 struct Cte {
20382 Cte a[1]; /* For each CTE in the WITH clause.... */
20386 ** The Cte object is not guaranteed to persist for the entire duration
21540 SQLITE_PRIVATE Cte *sqlite3CteNew(Parse*,Token*,ExprList*,Select*,u8);
21541 SQLITE_PRIVATE void sqlite3CteDelete(sqlite3*,Cte*);
21542 SQLITE_PRIVATE With *sqlite3WithAdd(Parse*,With*,Cte*);
32737 const struct Cte *pCte = &pWith->a[i];
126961 SQLITE_PRIVATE Cte *sqlite3CteNew(
126968 Cte *pNew;
126987 ** Clear information from a Cte object, but do not deallocate storage
126990 static void cteClear(sqlite3 *db, Cte *pCte){
127000 SQLITE_PRIVATE void sqlite3CteDelete(sqlite3 *db, Cte *pCte){
127015 Cte *pCte /* CTE to add to the WITH clause */
148512 static struct Cte *searchWith(
148586 Cte *pCte; /* Matched CTE (or NULL if no match) */
172949 Cte* yy67;