Home
last modified time | relevance | path

Searched refs:pWith (Results 1 – 25 of 185) sorted by relevance

12345678

/dports/games/openclonk/openclonk-release-8.1-src/src/landscape/fow/
H A DC4FoWBeam.cpp141 C4FoWBeam *pWith = pNext; in MergeDirty() local
142 assert(isDirty()); assert(!!pWith); assert(pWith->isDirty()); in MergeDirty()
146 Dirty(std::min(getLeftEndY(), pWith->getLeftEndY())); in MergeDirty()
149 iRightX = pWith->iRightX; in MergeDirty()
150 iRightY = pWith->iRightY; in MergeDirty()
153 pNext = pWith->getNext(); in MergeDirty()
154 delete pWith; in MergeDirty()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dtreeview.c88 if( pWith==0 ) return; in sqlite3TreeViewWith()
89 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()
90 if( pWith->pOuter ){ in sqlite3TreeViewWith()
91 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()
93 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()
95 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()
97 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()
100 const struct Cte *pCte = &pWith->a[i]; in sqlite3TreeViewWith()
114 sqlite3TreeViewItem(pView, zLine, i<pWith->nCte-1); in sqlite3TreeViewWith()
134 if( p->pWith ){ in sqlite3TreeViewSelect()
[all …]
H A Dselect.c78 if( p->pWith ) sqlite3WithDelete(db, p->pWith); in clearSelect()
4146 assert( pParse->pWith!=pWith ); in sqlite3WithPush()
4147 pWith->pOuter = pParse->pWith; in sqlite3WithPush()
4148 pParse->pWith = pWith; in sqlite3WithPush()
4179 pCte = searchWith(pParse->pWith, pFrom, &pWith); in withExpand()
4241 pParse->pWith = pWith; in withExpand()
4245 pPrior->pWith = pSel->pWith; in withExpand()
4251 pParse->pWith = pWith; in withExpand()
4295 With *pWith = findRightmost(p)->pWith; in selectPopWith() local
4297 assert( pParse->pWith==pWith ); in selectPopWith()
[all …]
H A Dbuild.c4393 if( zName && pWith ){ in sqlite3WithAdd()
4395 for(i=0; i<pWith->nCte; i++){ in sqlite3WithAdd()
4402 if( pWith ){ in sqlite3WithAdd()
4403 int nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); in sqlite3WithAdd()
4404 pNew = sqlite3DbRealloc(db, pWith, nByte); in sqlite3WithAdd()
4414 pNew = pWith; in sqlite3WithAdd()
4429 void sqlite3WithDelete(sqlite3 *db, With *pWith){ in sqlite3WithDelete() argument
4430 if( pWith ){ in sqlite3WithDelete()
4432 for(i=0; i<pWith->nCte; i++){ in sqlite3WithDelete()
4433 struct Cte *pCte = &pWith->a[i]; in sqlite3WithDelete()
[all …]
H A Dinsert.c1973 if( pParse->pWith || pSelect->pWith ){ in xferOptimization()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dtreeview.c90 if( pWith==0 ) return; in sqlite3TreeViewWith()
91 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()
92 if( pWith->pOuter ){ in sqlite3TreeViewWith()
93 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()
95 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()
97 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()
99 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()
102 const struct Cte *pCte = &pWith->a[i]; in sqlite3TreeViewWith()
116 sqlite3TreeViewItem(pView, zLine, i<pWith->nCte-1); in sqlite3TreeViewWith()
176 if( p->pWith ){ in sqlite3TreeViewSelect()
[all …]
H A Dselect.c171 pNew->pWith = 0; in sqlite3SelectNew()
4687 assert( pParse->pWith!=pWith ); in sqlite3WithPush()
4688 pWith->pOuter = pParse->pWith; in sqlite3WithPush()
4689 pParse->pWith = pWith; in sqlite3WithPush()
4723 pCte = searchWith(pParse->pWith, pFrom, &pWith); in withExpand()
4786 pParse->pWith = pWith; in withExpand()
4790 pPrior->pWith = pSel->pWith; in withExpand()
4796 pParse->pWith = pWith; in withExpand()
4840 With *pWith = findRightmost(p)->pWith; in selectPopWith() local
4842 assert( pParse->pWith==pWith || pParse->nErr ); in selectPopWith()
[all …]
H A Dattach.c557 if( pSelect->pWith ){ in sqlite3FixSelect()
559 for(i=0; i<pSelect->pWith->nCte; i++){ in sqlite3FixSelect()
560 if( sqlite3FixSelect(pFix, pSelect->pWith->a[i].pSelect) ){ in sqlite3FixSelect()
H A Dalter.c743 With *pWith = pSelect->pWith; in renameWalkWith() local
744 if( pWith ){ in renameWalkWith()
746 for(i=0; i<pWith->nCte; i++){ in renameWalkWith()
747 Select *p = pWith->a[i].pSelect; in renameWalkWith()
753 sqlite3RenameExprlistUnmap(pWalker->pParse, pWith->a[i].pCols); in renameWalkWith()
H A Dbuild.c4976 if( zName && pWith ){ in sqlite3WithAdd()
4978 for(i=0; i<pWith->nCte; i++){ in sqlite3WithAdd()
4985 if( pWith ){ in sqlite3WithAdd()
4986 sqlite3_int64 nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); in sqlite3WithAdd()
4987 pNew = sqlite3DbRealloc(db, pWith, nByte); in sqlite3WithAdd()
4997 pNew = pWith; in sqlite3WithAdd()
5012 void sqlite3WithDelete(sqlite3 *db, With *pWith){ in sqlite3WithDelete() argument
5013 if( pWith ){ in sqlite3WithDelete()
5015 for(i=0; i<pWith->nCte; i++){ in sqlite3WithDelete()
5016 struct Cte *pCte = &pWith->a[i]; in sqlite3WithDelete()
[all …]
H A Dutil.c197 pParse->pWith = 0; in sqlite3ErrorMsg()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dtreeview.c90 if( pWith==0 ) return; in sqlite3TreeViewWith()
91 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()
92 if( pWith->pOuter ){ in sqlite3TreeViewWith()
93 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()
95 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()
97 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()
99 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()
102 const struct Cte *pCte = &pWith->a[i]; in sqlite3TreeViewWith()
119 sqlite3TreeViewItem(pView, zLine, i<pWith->nCte-1); in sqlite3TreeViewWith()
182 if( p->pWith ){ in sqlite3TreeViewSelect()
[all …]
H A Dselect.c161 pNew->pWith = 0; in sqlite3SelectNew()
4931 assert( pParse->pWith!=pWith ); in sqlite3WithPush()
4932 pWith->pOuter = pParse->pWith; in sqlite3WithPush()
4933 pParse->pWith = pWith; in sqlite3WithPush()
4975 pCte = searchWith(pParse->pWith, pFrom, &pWith); in resolveFromTermToCte()
5061 pParse->pWith = pWith; in resolveFromTermToCte()
5069 pRecTerm->pWith = pSel->pWith; in resolveFromTermToCte()
5082 pParse->pWith = pWith; in resolveFromTermToCte()
5126 With *pWith = findRightmost(p)->pWith; in selectPopWith() local
5128 assert( pParse->pWith==pWith || pParse->nErr ); in selectPopWith()
[all …]
H A Dattach.c482 if( pSelect->pWith ){ in fixSelectCb()
483 for(i=0; i<pSelect->pWith->nCte; i++){ in fixSelectCb()
484 if( sqlite3WalkSelect(p, pSelect->pWith->a[i].pSelect) ){ in fixSelectCb()
H A Dbuild.c5287 return pWith; in sqlite3WithAdd()
5293 if( zName && pWith ){ in sqlite3WithAdd()
5295 for(i=0; i<pWith->nCte; i++){ in sqlite3WithAdd()
5302 if( pWith ){ in sqlite3WithAdd()
5303 sqlite3_int64 nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); in sqlite3WithAdd()
5304 pNew = sqlite3DbRealloc(db, pWith, nByte); in sqlite3WithAdd()
5312 pNew = pWith; in sqlite3WithAdd()
5325 if( pWith ){ in sqlite3WithDelete()
5327 for(i=0; i<pWith->nCte; i++){ in sqlite3WithDelete()
5328 cteClear(db, &pWith->a[i]); in sqlite3WithDelete()
[all …]
H A Dalter.c772 With *pWith = pSelect->pWith; in renameWalkWith() local
773 if( pWith ){ in renameWalkWith()
775 for(i=0; i<pWith->nCte; i++){ in renameWalkWith()
776 Select *p = pWith->a[i].pSelect; in renameWalkWith()
782 sqlite3RenameExprlistUnmap(pWalker->pParse, pWith->a[i].pCols); in renameWalkWith()
H A Dparse.y528 static Select *attachWithToSelect(Parse *pParse, Select *pSelect, With *pWith){
530 pSelect->pWith = pWith;
533 sqlite3WithDelete(pParse->db, pWith);
H A Dutil.c207 pParse->pWith = 0; in sqlite3ErrorMsg()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dtreeview.c90 if( pWith==0 ) return; in sqlite3TreeViewWith()
91 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()
92 if( pWith->pOuter ){ in sqlite3TreeViewWith()
93 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()
95 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()
97 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()
99 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()
102 const struct Cte *pCte = &pWith->a[i]; in sqlite3TreeViewWith()
116 sqlite3TreeViewItem(pView, zLine, i<pWith->nCte-1); in sqlite3TreeViewWith()
176 if( p->pWith ){ in sqlite3TreeViewSelect()
[all …]
H A Dselect.c157 pNew->pWith = 0; in sqlite3SelectNew()
4780 assert( pParse->pWith!=pWith ); in sqlite3WithPush()
4781 pWith->pOuter = pParse->pWith; in sqlite3WithPush()
4782 pParse->pWith = pWith; in sqlite3WithPush()
4816 pCte = searchWith(pParse->pWith, pFrom, &pWith); in withExpand()
4882 pParse->pWith = pWith; in withExpand()
4889 pRecTerm->pWith = pSel->pWith; in withExpand()
4895 pParse->pWith = pWith; in withExpand()
4939 With *pWith = findRightmost(p)->pWith; in selectPopWith() local
4941 assert( pParse->pWith==pWith || pParse->nErr ); in selectPopWith()
[all …]
H A Dattach.c534 if( pSelect->pWith ){ in sqlite3FixSelect()
536 for(i=0; i<pSelect->pWith->nCte; i++){ in sqlite3FixSelect()
537 if( sqlite3FixSelect(pFix, pSelect->pWith->a[i].pSelect) ){ in sqlite3FixSelect()
H A Dalter.c761 With *pWith = pSelect->pWith; in renameWalkWith() local
762 if( pWith ){ in renameWalkWith()
764 for(i=0; i<pWith->nCte; i++){ in renameWalkWith()
765 Select *p = pWith->a[i].pSelect; in renameWalkWith()
771 sqlite3RenameExprlistUnmap(pWalker->pParse, pWith->a[i].pCols); in renameWalkWith()
H A Dbuild.c5121 if( zName && pWith ){ in sqlite3WithAdd()
5123 for(i=0; i<pWith->nCte; i++){ in sqlite3WithAdd()
5130 if( pWith ){ in sqlite3WithAdd()
5131 sqlite3_int64 nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); in sqlite3WithAdd()
5132 pNew = sqlite3DbRealloc(db, pWith, nByte); in sqlite3WithAdd()
5142 pNew = pWith; in sqlite3WithAdd()
5157 void sqlite3WithDelete(sqlite3 *db, With *pWith){ in sqlite3WithDelete() argument
5158 if( pWith ){ in sqlite3WithDelete()
5160 for(i=0; i<pWith->nCte; i++){ in sqlite3WithDelete()
5161 struct Cte *pCte = &pWith->a[i]; in sqlite3WithDelete()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dmsctf.h5735 ITfRange *pWith,
5741 ITfRange *pWith,
5747 ITfRange *pWith,
5753 ITfRange *pWith,
5882 ITfRange *pWith,
5889 ITfRange *pWith,
5896 ITfRange *pWith,
5903 ITfRange *pWith,
6178 ITfRange *pWith,
6185 ITfRange *pWith,
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dmsctf.h5735 ITfRange *pWith,
5741 ITfRange *pWith,
5747 ITfRange *pWith,
5753 ITfRange *pWith,
5882 ITfRange *pWith,
5889 ITfRange *pWith,
5896 ITfRange *pWith,
5903 ITfRange *pWith,
6178 ITfRange *pWith,
6185 ITfRange *pWith,
[all …]

12345678