Home | History | Annotate | Download | only in orig

Lines Matching defs:apVal

69510   sqlite3_value **apVal;
69514 apVal = p->apArg;
69515 assert( apVal || n==0 );
69525 apVal[i] = pArg;
69553 (*ctx.pFunc->xFunc)(&ctx, n, apVal); /* IMP: R-24505-23230 */
73651 sqlite3_value **apVal;
73656 apVal = p->apArg;
73657 assert( apVal || n==0 );
73660 apVal[i] = pRec;
73681 (ctx.pFunc->xStep)(&ctx, n, apVal); /* IMP: R-24505-23230 */
129919 int nVal, /* Number of elements in apVal */
129920 sqlite3_value **apVal /* Arguments for the indexing scheme */
129943 if( eSearch!=FTS3_FULLSCAN_SEARCH ) pCons = apVal[iIdx++];
129944 if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++];
129945 if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++];
129946 if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++];
130104 sqlite3_value **apVal, /* Array of arguments */
130107 return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid);
130282 int nVal, /* Size of apVal[] array */
130283 sqlite3_value **apVal /* Array of arguments */
130285 Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */
130302 if( fts3FunctionArg(pContext, "snippet", apVal[0], &pCsr) ) return;
130305 case 6: nToken = sqlite3_value_int(apVal[5]);
130306 case 5: iCol = sqlite3_value_int(apVal[4]);
130307 case 4: zEllipsis = (const char*)sqlite3_value_text(apVal[3]);
130308 case 3: zEnd = (const char*)sqlite3_value_text(apVal[2]);
130309 case 2: zStart = (const char*)sqlite3_value_text(apVal[1]);
130324 sqlite3_value **apVal /* Array of arguments */
130326 Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */
130331 if( fts3FunctionArg(pContext, "offsets", apVal[0], &pCsr) ) return;
130350 sqlite3_value **apVal /* Array of arguments */
130354 Fts3Cursor *pCursor; /* Cursor handle passed through apVal[0] */
130359 if( fts3FunctionArg(pContext, "optimize", apVal[0], &pCursor) ) return;
130384 sqlite3_value **apVal /* Array of arguments */
130386 Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */
130388 if( SQLITE_OK==fts3FunctionArg(pContext, "matchinfo", apVal[0], &pCsr) ){
130391 zArg = (const char *)sqlite3_value_text(apVal[1]);
132999 int nVal, /* Number of elements in apVal */
133000 sqlite3_value **apVal /* Arguments for the indexing scheme */
133008 int iEq = -1; /* Index of term=? value in apVal */
133009 int iGe = -1; /* Index of term>=? value in apVal */
133010 int iLe = -1; /* Index of term<=? value in apVal */
133011 int iLangid = -1; /* Index of languageid=? value in apVal */
133049 const unsigned char *zStr = sqlite3_value_text(apVal[0]);
133053 pCsr->filter.nTerm = sqlite3_value_bytes(apVal[0]);
133059 pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iLe]));
133060 pCsr->nStop = sqlite3_value_bytes(apVal[iLe]);
133065 iLangVal = sqlite3_value_int(apVal[iLangid]);
136579 int nVal, /* Number of elements in apVal */
136580 sqlite3_value **apVal /* Arguments for the indexing scheme */
136590 const char *zByte = (const char *)sqlite3_value_text(apVal[0]);
136591 int nByte = sqlite3_value_bytes(apVal[0]);
136981 ** If argument apVal is not NULL, then it must point to an array with
136990 sqlite3_value **apVal /* Values to bind to statement */
137114 if( apVal ){
137118 rc = sqlite3_bind_value(pStmt, i+1, apVal[i]);
137182 ** array apVal[] to the SQL statement identified by eStmt, the statement
137192 sqlite3_value **apVal /* Parameters to bind */
137197 rc = fts3SqlStmt(p, eStmt, &pStmt, apVal);
137607 ** Argument apVal is the same as the similarly named argument passed to
137613 sqlite3_value **apVal,
137620 const char *zText = (const char *)sqlite3_value_text(apVal[i]);
137625 aSz[p->nColumn] += sqlite3_value_bytes(apVal[i]);
137633 ** The apVal parameter is passed a copy of the apVal argument passed by
137636 ** apVal[0] Not used for INSERT.
137637 ** apVal[1] rowid
137638 ** apVal[2] Left-most user-defined column
137640 ** apVal[p->nColumn+1] Right-most user-defined column
137641 ** apVal[p->nColumn+2] Hidden column with same name as table
137642 ** apVal[p->nColumn+3] Hidden "docid" column (alias for rowid)
137643 ** apVal[p->nColumn+4] Hidden languageid column
137647 sqlite3_value **apVal, /* Array of values to insert */
137654 sqlite3_value *pRowid = apVal[p->nColumn+3];
137656 pRowid = apVal[1];
137673 rc = fts3SqlStmt(p, SQL_CONTENT_INSERT, &pContentInsert, &apVal[1]);
137677 sqlite3_value_int(apVal[p->nColumn+4])
137692 if( SQLITE_NULL!=sqlite3_value_type(apVal[3+p->nColumn]) ){
137693 apVal[0])
137694 && SQLITE_NULL!=sqlite3_value_type(apVal[1])
137699 rc = sqlite3_bind_value(pContentInsert, 1, apVal[3+p->nColumn]);
137750 ** The first element in the apVal[] array is assumed to contain the docid
139071 ** The first value in the apVal[] array is assumed to contain an integer.
142199 sqlite3_value **apVal, /* Array of arguments */
142225 && sqlite3_value_type(apVal[0])==SQLITE_NULL
142226 && sqlite3_value_type(apVal[p->nColumn+2])!=SQLITE_NULL
142228 rc = fts3SpecialInsert(p, apVal[p->nColumn+2]);
142232 if( nArg>1 && sqlite3_value_int(apVal[2 + p->nColumn + 2])<0 ){
142260 sqlite3_value *pNewRowid = apVal[3+p->nColumn];
142262 pNewRowid = apVal[1];
142266 sqlite3_value_type(apVal[0])==SQLITE_NULL
142267 || sqlite3_value_int64(apVal[0])!=sqlite3_value_int64(pNewRowid)
142289 rc = fts3InsertData(p, apVal, pRowid);
142299 if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){
142300 assert( sqlite3_value_type(apVal[0])==SQLITE_INTEGER );
142301 rc = fts3DeleteByRowid(p, apVal[0], &nChng, aSzDel);
142307 int iLangid = sqlite3_value_int(apVal[2 + p->nColumn + 2]);
142309 rc = fts3InsertData(p, apVal, pRowid);
142319 rc = fts3InsertTerms(p, iLangid, apVal, aSzIns);