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.c283 _nc_form_cursor(const FORM *form, int *pRow, int *pCol) in _nc_form_cursor() argument
288 if (form != NULL && pRow != NULL && pCol != NULL) in _nc_form_cursor()
290 *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.c917 qrfEQPGraphRow *pRow; /* Linked list of all rows of the EQP output */ member
1066 p->u.pGraph->pRow = pNew; in qrfEqpAppend()
1076 qrfEQPGraphRow *pRow, *pNext; in qrfEqpReset() local
1078 for(pRow = p->u.pGraph->pRow; pRow; pRow = pNext){ in qrfEqpReset()
1079 pNext = pRow->pNext; in qrfEqpReset()
1080 sqlite3_free(pRow); in qrfEqpReset()
1091 qrfEQPGraphRow *pRow = pOld ? pOld->pNext : p->u.pGraph->pRow; in qrfEqpNextRow() local
1092 while( pRow && pRow->iParentId!=iEqpId ) pRow = pRow->pNext; in qrfEqpNextRow()
1093 return pRow; in qrfEqpNextRow()
1100 qrfEQPGraphRow *pRow, *pNext; in qrfEqpRenderLevel() local
[all …]
H A Dsqlite3.c21581 SQLITE_PRIVATE Select *sqlite3MultiValues(Parse *pParse, Select *pLeft, ExprList *pRow);
139276 static int exprListIsConstant(Parse *pParse, ExprList *pRow){ argument
139278 for(ii=0; ii<pRow->nExpr; ii++){
139279 if( 0==sqlite3ExprIsConstant(pParse, pRow->a[ii].pExpr) ) return 0;
139288 static int exprListIsNoAffinity(Parse *pParse, ExprList *pRow){ argument
139290 if( exprListIsConstant(pParse,pRow)==0 ) return 0;
139291 for(ii=0; ii<pRow->nExpr; ii++){
139292 Expr *pExpr = pRow->a[ii].pExpr;
139352 SQLITE_PRIVATE Select *sqlite3MultiValues(Parse *pParse, Select *pLeft, ExprList *pRow){ argument
139356 || exprListIsConstant(pParse,pRow)==0 /* condition (c) above */
[all …]