Home
last modified time | relevance | path

Searched refs:pRow (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/ncurses/form/
H A Dfty_generic.c280 _nc_form_cursor(const FORM *form, int *pRow, int *pCol) in _nc_form_cursor() argument
285 if (form != 0 && pRow != 0 && pCol != 0) in _nc_form_cursor()
287 *pRow = form->currow; in _nc_form_cursor()
H A Dllib-lformtw782 int *pRow,
H A Dllib-lformt769 int *pRow,
H A Dllib-lformw782 int *pRow,
H A Dllib-lform769 int *pRow,
/freebsd/contrib/sqlite3/
H A Dshell.c19382 EQPGraphRow *pRow; /* Linked list of all rows of the EQP output */ member
20367 p->sGraph.pRow = pNew; in eqp_append()
20377 EQPGraphRow *pRow, *pNext; in eqp_reset() local
20378 for(pRow = p->sGraph.pRow; pRow; pRow = pNext){ in eqp_reset()
20379 pNext = pRow->pNext; in eqp_reset()
20380 sqlite3_free(pRow); in eqp_reset()
20389 EQPGraphRow *pRow = pOld ? pOld->pNext : p->sGraph.pRow; in eqp_next_row() local
20390 while( pRow && pRow->iParentId!=iEqpId ) pRow = pRow->pNext; in eqp_next_row()
20391 return pRow; in eqp_next_row()
20398 EQPGraphRow *pRow, *pNext; in eqp_render_level() local
[all …]
H A Dsqlite3.c20482 SQLITE_PRIVATE Select *sqlite3MultiValues(Parse *pParse, Select *pLeft, ExprList *pRow);
133490 static int exprListIsConstant(Parse *pParse, ExprList *pRow){
133492 for(ii=0; ii<pRow->nExpr; ii++){
133493 if( 0==sqlite3ExprIsConstant(pParse, pRow->a[ii].pExpr) ) return 0;
133502 static int exprListIsNoAffinity(Parse *pParse, ExprList *pRow){
133504 if( exprListIsConstant(pParse,pRow)==0 ) return 0;
133505 for(ii=0; ii<pRow->nExpr; ii++){
133506 Expr *pExpr = pRow->a[ii].pExpr;
133566 SQLITE_PRIVATE Select *sqlite3MultiValues(Parse *pParse, Select *pLeft, ExprList *pRow){
133570 || exprListIsConstant(pParse,pRow)==0 /* condition (c) above */
[all …]