Home
last modified time | relevance | path

Searched refs:colFlags (Results 1 – 25 of 211) sorted by relevance

123456789

/dports/games/brumbrumrally/brumbrumrally-0.7/src/
H A DTrack.cpp318 if (colFlags & TILE_COLLISION_CORNERS) in update()
324 if (colFlags & TILE_COLLISION_LEFT_UP) in update()
359 colFlags = colFlags2; in update()
813 if (colFlags & TILE_COLLISION_LEFT) in getCarDistanceNearestWall()
817 if (colFlags & TILE_COLLISION_RIGHT) in getCarDistanceNearestWall()
821 if (colFlags & TILE_COLLISION_UP) in getCarDistanceNearestWall()
825 if (colFlags & TILE_COLLISION_DOWN) in getCarDistanceNearestWall()
830 if (colFlags & TILE_COLLISION_LEFT_UP) in getCarDistanceNearestWall()
838 if (colFlags & TILE_COLLISION_RIGHT_UP) in getCarDistanceNearestWall()
1011 if (colFlags & xColFlag) in rayWallTest()
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/src/
H A DRoutePropDlg.cpp235 int colFlags = 0; in BEGIN_EVENT_TABLE() local
255 int colFlags = wxDATAVIEW_COL_RESIZABLE; in BEGIN_EVENT_TABLE() local
262 …("Leg"), wxDATAVIEW_CELL_INERT, columWidths[0], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
264 …toLabel, wxDATAVIEW_CELL_INERT, columWidths[1], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
270 …itude"), wxDATAVIEW_CELL_INERT, columWidths[4], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
272 …itude"), wxDATAVIEW_CELL_INERT, columWidths[5], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
274 …("ETE"), wxDATAVIEW_CELL_INERT, columWidths[6], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
276 …("ETA"), wxDATAVIEW_CELL_INERT, columWidths[7], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
278 …umn( _("Speed"), CELL_EDITABLE, columWidths[8], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
284 …urse"), wxDATAVIEW_CELL_INERT, columWidths[11], static_cast<wxAlignment>(wxALIGN_LEFT), colFlags ); in BEGIN_EVENT_TABLE()
[all …]
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dinsert.c257 if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){ in sqlite3ComputeGeneratedColumns()
272 pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
292 if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){ in sqlite3ComputeGeneratedColumns()
294 pCol->colFlags |= COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
297 pCol->colFlags &= ~COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
306 pCol->colFlags &= ~COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
1061 u32 colFlags; in sqlite3Insert() local
1071 if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){ in sqlite3Insert()
1073 if( (colFlags & COLFLAG_VIRTUAL)!=0 ){ in sqlite3Insert()
1079 }else if( (colFlags & COLFLAG_STORED)!=0 ){ in sqlite3Insert()
[all …]
H A Dupdate.c465 else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
466 testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); in sqlite3Update()
467 testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); in sqlite3Update()
525 if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; in sqlite3Update()
871 u32 colFlags = pTab->aCol[i].colFlags; in sqlite3Update() local
875 || (colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()
907 }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ in sqlite3Update()
908 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
975 if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
976 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
[all …]
H A Dbuild.c1266 pCol->colFlags |= COLFLAG_HIDDEN; in sqlite3ColumnPropertiesFromName()
1405 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AddColumn()
1414 pCol->colFlags |= COLFLAG_HASTYPE; in sqlite3AddColumn()
1438 if( pCol->colFlags & COLFLAG_UNIQUE ){ in sqlite3AddNotNull()
1531 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AffinityType()
1622 pCol->colFlags |= COLFLAG_PRIMKEY; in makeColumnPartOfPrimaryKey()
1624 if( pCol->colFlags & COLFLAG_GENERATED ){ in makeColumnPartOfPrimaryKey()
1820 pCol->colFlags |= eType; in sqlite3AddGenerated()
1824 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AddGenerated()
2474 u32 colFlags = p->aCol[ii].colFlags; in sqlite3EndTable() local
[all …]
H A Dalter.c331 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AlterFinishAddColumn()
340 if( (pCol->colFlags & COLFLAG_GENERATED)==0 ){ in sqlite3AlterFinishAddColumn()
377 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3AlterFinishAddColumn()
1890 if( pTab->aCol[iCol].colFlags & (COLFLAG_PRIMKEY|COLFLAG_UNIQUE) ){ in sqlite3AlterDropColumn()
1892 (pTab->aCol[iCol].colFlags&COLFLAG_PRIMKEY) ? "PRIMARY KEY" : "UNIQUE", in sqlite3AlterDropColumn()
1921 if( pParse->nErr==0 && (pTab->aCol[iCol].colFlags & COLFLAG_VIRTUAL)==0 ){ in sqlite3AlterDropColumn()
1947 if( i!=iCol && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ in sqlite3AlterDropColumn()
H A Dfkey.c824 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ in fkParentIsModified()
1277 if( pCol->colFlags & COLFLAG_GENERATED ){ in fkActionTrigger()
1278 testcase( pCol->colFlags & COLFLAG_VIRTUAL ); in fkActionTrigger()
1279 testcase( pCol->colFlags & COLFLAG_STORED ); in fkActionTrigger()
H A Dpragma.c1160 if( pCol->colFlags & COLFLAG_NOINSERT ){ in sqlite3Pragma()
1165 if( pCol->colFlags & COLFLAG_VIRTUAL ){ in sqlite3Pragma()
1167 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3Pragma()
1169 }else{ assert( pCol->colFlags & COLFLAG_HIDDEN ); in sqlite3Pragma()
1173 if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ in sqlite3Pragma()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dinsert.c256 if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){ in sqlite3ComputeGeneratedColumns()
271 pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
291 if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){ in sqlite3ComputeGeneratedColumns()
293 pCol->colFlags |= COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
296 pCol->colFlags &= ~COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
305 pCol->colFlags &= ~COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
1045 u32 colFlags; in sqlite3Insert() local
1055 if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){ in sqlite3Insert()
1057 if( (colFlags & COLFLAG_VIRTUAL)!=0 ){ in sqlite3Insert()
1063 }else if( (colFlags & COLFLAG_STORED)!=0 ){ in sqlite3Insert()
[all …]
H A Dupdate.c317 else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
318 testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); in sqlite3Update()
319 testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); in sqlite3Update()
376 if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; in sqlite3Update()
668 u32 colFlags = pTab->aCol[i].colFlags; in sqlite3Update() local
672 || (colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()
704 }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ in sqlite3Update()
705 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
765 if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
766 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
[all …]
H A Dbuild.c1188 pCol->colFlags |= COLFLAG_HIDDEN; in sqlite3ColumnPropertiesFromName()
1250 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AddColumn()
1259 pCol->colFlags |= COLFLAG_HASTYPE; in sqlite3AddColumn()
1283 if( pCol->colFlags & COLFLAG_UNIQUE ){ in sqlite3AddNotNull()
1376 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AffinityType()
1467 pCol->colFlags |= COLFLAG_PRIMKEY; in makeColumnPartOfPrimaryKey()
1469 if( pCol->colFlags & COLFLAG_GENERATED ){ in makeColumnPartOfPrimaryKey()
1656 pCol->colFlags |= eType; in sqlite3AddGenerated()
1660 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AddGenerated()
2261 u32 colFlags = p->aCol[ii].colFlags; in sqlite3EndTable() local
[all …]
H A Dfkey.c824 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ in fkParentIsModified()
1274 if( pCol->colFlags & COLFLAG_GENERATED ){ in fkActionTrigger()
1275 testcase( pCol->colFlags & COLFLAG_VIRTUAL ); in fkActionTrigger()
1276 testcase( pCol->colFlags & COLFLAG_STORED ); in fkActionTrigger()
H A Dpragma.c1153 if( pCol->colFlags & COLFLAG_NOINSERT ){ in sqlite3Pragma()
1158 if( pCol->colFlags & COLFLAG_VIRTUAL ){ in sqlite3Pragma()
1160 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3Pragma()
1162 }else{ assert( pCol->colFlags & COLFLAG_HIDDEN ); in sqlite3Pragma()
1166 if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ in sqlite3Pragma()
H A Dalter.c305 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AlterFinishAddColumn()
313 if( (pCol->colFlags & COLFLAG_GENERATED)==0 ){ in sqlite3AlterFinishAddColumn()
351 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3AlterFinishAddColumn()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dinsert.c257 if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){ in sqlite3ComputeGeneratedColumns()
272 pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
292 if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){ in sqlite3ComputeGeneratedColumns()
294 pCol->colFlags |= COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
297 pCol->colFlags &= ~COLFLAG_BUSY; in sqlite3ComputeGeneratedColumns()
306 pCol->colFlags &= ~COLFLAG_NOTAVAIL; in sqlite3ComputeGeneratedColumns()
1046 u32 colFlags; in sqlite3Insert() local
1056 if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){ in sqlite3Insert()
1058 if( (colFlags & COLFLAG_VIRTUAL)!=0 ){ in sqlite3Insert()
1064 }else if( (colFlags & COLFLAG_STORED)!=0 ){ in sqlite3Insert()
[all …]
H A Dupdate.c465 else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
466 testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); in sqlite3Update()
467 testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); in sqlite3Update()
525 if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; in sqlite3Update()
870 u32 colFlags = pTab->aCol[i].colFlags; in sqlite3Update() local
874 || (colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()
906 }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ in sqlite3Update()
907 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
974 if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ in sqlite3Update()
975 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; in sqlite3Update()
[all …]
H A Dbuild.c1235 pCol->colFlags |= COLFLAG_HIDDEN; in sqlite3ColumnPropertiesFromName()
1298 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AddColumn()
1307 pCol->colFlags |= COLFLAG_HASTYPE; in sqlite3AddColumn()
1331 if( pCol->colFlags & COLFLAG_UNIQUE ){ in sqlite3AddNotNull()
1424 pCol->colFlags |= COLFLAG_SORTERREF; in sqlite3AffinityType()
1515 pCol->colFlags |= COLFLAG_PRIMKEY; in makeColumnPartOfPrimaryKey()
1517 if( pCol->colFlags & COLFLAG_GENERATED ){ in makeColumnPartOfPrimaryKey()
1713 pCol->colFlags |= eType; in sqlite3AddGenerated()
1717 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AddGenerated()
2366 u32 colFlags = p->aCol[ii].colFlags; in sqlite3EndTable() local
[all …]
H A Dfkey.c824 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ in fkParentIsModified()
1274 if( pCol->colFlags & COLFLAG_GENERATED ){ in fkActionTrigger()
1275 testcase( pCol->colFlags & COLFLAG_VIRTUAL ); in fkActionTrigger()
1276 testcase( pCol->colFlags & COLFLAG_STORED ); in fkActionTrigger()
H A Dpragma.c1160 if( pCol->colFlags & COLFLAG_NOINSERT ){ in sqlite3Pragma()
1165 if( pCol->colFlags & COLFLAG_VIRTUAL ){ in sqlite3Pragma()
1167 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3Pragma()
1169 }else{ assert( pCol->colFlags & COLFLAG_HIDDEN ); in sqlite3Pragma()
1173 if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ in sqlite3Pragma()
H A Dalter.c324 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AlterFinishAddColumn()
333 if( (pCol->colFlags & COLFLAG_GENERATED)==0 ){ in sqlite3AlterFinishAddColumn()
370 }else if( pCol->colFlags & COLFLAG_STORED ){ in sqlite3AlterFinishAddColumn()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DVerticesTest.cpp101 const uint32_t colFlags[] = { 0, SkVertices::kHasColors_BuilderFlag }; in DEF_TEST() local
103 for (auto colF : colFlags) { in DEF_TEST()
/dports/games/libretro-scummvm/scummvm-7b1e929/image/codecs/indeo/
H A Dindeo.cpp1244 uint8 colFlags[8]; in decodeCodedBlocks() local
1268 memset(colFlags, 0, sizeof(colFlags)); in decodeCodedBlocks()
1304 colFlags[pos & colMask] |= !!val; in decodeCodedBlocks()
1314 colFlags[0] |= !!*prevDc; in decodeCodedBlocks()
1324 band->_pitch, colFlags); in decodeCodedBlocks()
/dports/games/residualvm/residualvm-0.3.1/image/codecs/indeo/
H A Dindeo.cpp1237 uint8 colFlags[8]; in decodeCodedBlocks() local
1261 memset(colFlags, 0, sizeof(colFlags)); in decodeCodedBlocks()
1297 colFlags[pos & colMask] |= !!val; in decodeCodedBlocks()
1307 colFlags[0] |= !!*prevDc; in decodeCodedBlocks()
1317 band->_pitch, colFlags); in decodeCodedBlocks()
/dports/games/scummvm/scummvm-2.5.1/image/codecs/indeo/
H A Dindeo.cpp1244 uint8 colFlags[8]; in decodeCodedBlocks() local
1268 memset(colFlags, 0, sizeof(colFlags)); in decodeCodedBlocks()
1304 colFlags[pos & colMask] |= !!val; in decodeCodedBlocks()
1314 colFlags[0] |= !!*prevDc; in decodeCodedBlocks()
1324 band->_pitch, colFlags); in decodeCodedBlocks()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dupdate.c234 }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ in sqlite3Update()
521 || (pTab->aCol[i].colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()

123456789