Lines Matching refs:argc
7396 int argc, const char *const*argv,
7399 int argc, const char *const*argv,
7407 int argc, sqlite3_value **argv);
22787 u8 argc; /* Number of arguments */
24442 int argc,
24450 if( argc==0 ){
24463 for(i=1; i<argc; i++){
24486 int argc,
24490 if( isDate(context, argc, argv, &x)==0 ){
24504 int argc,
24508 if( isDate(context, argc, argv, &x)==0 ){
24521 int argc,
24525 if( isDate(context, argc, argv, &x)==0 ){
24568 int argc,
24572 if( isDate(context, argc, argv, &x)==0 ){
24597 int argc,
24601 if( isDate(context, argc, argv, &x)==0 ){
24648 int argc,
24658 if( argc==0 ) return;
24660 if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return;
24805 int argc,
24815 UNUSED_PARAMETER(argc);
82920 pCtx->argc = nArg;
84169 if( pOp->p4type!=P4_FUNCCTX || pCtx->argc==1 ){
84171 }else if( pCtx->argc>1 ){
84172 sqlite3_str_appendf(&x, "%d..%d", v1, v1+pCtx->argc-1);
97869 pCtx->argc = n;
97906 for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i];
97910 for(i=0; i<pCtx->argc; i++){
97922 (pCtx->pFunc->xInverse)(pCtx,pCtx->argc,pCtx->argv);
97925 (pCtx->pFunc->xSFunc)(pCtx,pCtx->argc,pCtx->argv); /* IMP: R-24505-23230 */
98430 ** P3. Register P3+1 stores the argc parameter to be passed to the
98431 ** xFilter method. Registers P3+2..P3+1+argc are the argc
98461 /* Grab the index number and argc parameters */
98804 for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i];
98810 for(i=0; i<pCtx->argc; i++){
98817 (*pCtx->pFunc->xSFunc)(pCtx, pCtx->argc, pCtx->argv);/* IMP: R-24505-23230 */
102598 int argc, const char *const*argv,
102861 int argc, sqlite3_value **argv
102871 assert( argc==1 );
115008 int argc,
115023 UNUSED_PARAMETER(argc);
115309 int argc,
115318 UNUSED_PARAMETER( argc );
115421 int argc,
115428 assert( argc==2 );
115436 assert( argc==1 );
115519 UNUSED_PARAMETER( argc );
116142 static int analysisLoader(void *pData, int argc, char **argv, char **NotUsed){
116148 assert( argc==3 );
116149 UNUSED_PARAMETER2(NotUsed, argc);
124767 int argc,
124775 assert( argc>1 );
124782 for(i=1; i<argc; i++){
124822 int argc,
124825 UNUSED_PARAMETER(argc);
124834 int argc,
124837 assert( argc==1 );
124838 UNUSED_PARAMETER(argc);
124874 static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
124875 assert( argc==1 );
124876 UNUSED_PARAMETER(argc);
124925 int argc,
124939 UNUSED_PARAMETER(argc);
124993 int argc,
125002 if( argc>=1 && (zFormat = (const char*)sqlite3_value_text(argv[0]))!=0 ){
125003 x.nArg = argc-1;
125029 int argc,
125039 assert( argc==3 || argc==2 );
125041 || (argc==3 && sqlite3_value_type(argv[2])==SQLITE_NULL)
125070 if( argc==3 ){
125122 static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
125126 assert( argc==1 || argc==2 );
125127 if( argc==2 ){
125184 static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
125188 UNUSED_PARAMETER(argc);
125203 static void lowerFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
125207 UNUSED_PARAMETER(argc);
125264 int argc,
125269 assert( argc==1 );
125270 UNUSED_PARAMETER(argc);
125589 int argc,
125621 if( argc==3 ){
125708 int argc,
125711 UNUSED_PARAMETER(argc);
125724 int argc,
125728 assert( argc==1 );
125729 UNUSED_PARAMETER(argc);
125748 int argc,
125752 assert( argc==1 );
125753 UNUSED_PARAMETER(argc);
125842 static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
125845 assert( argc==1 );
125846 UNUSED_PARAMETER(argc);
125863 int argc,
125867 (void)argc;
125878 int argc,
125883 zOut = z = sqlite3_malloc64( argc*4+1 );
125888 for(i=0; i<argc; i++){
125919 int argc,
125925 assert( argc==1 );
125926 UNUSED_PARAMETER(argc);
125947 int argc,
125952 assert( argc==1 );
125953 UNUSED_PARAMETER(argc);
125970 int argc,
125986 assert( argc==3 );
125987 UNUSED_PARAMETER(argc);
126063 int argc,
126082 if( argc==1 ){
126155 int argc,
126176 int argc,
126192 assert( argc==1 );
126227 static void loadExt(sqlite3_context *context, int argc, sqlite3_value **argv){
126241 if( argc==2 ){
126277 static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){
126280 assert( argc==1 );
126281 UNUSED_PARAMETER(argc);
126299 static void sumInverse(sqlite3_context *context, int argc, sqlite3_value**argv){
126302 assert( argc==1 );
126303 UNUSED_PARAMETER(argc);
126366 static void countStep(sqlite3_context *context, int argc, sqlite3_value **argv){
126369 if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && p ){
126378 assert( argc==1 || p==0 || p->n>0x7fffffff || p->bInverse
126388 static void countInverse(sqlite3_context *ctx, int argc, sqlite3_value **argv){
126392 if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && ALWAYS(p) ){
126490 int argc,
126497 assert( argc==1 || argc==2 );
126504 if( argc==1 ){
126561 int argc,
126565 assert( argc==1 || argc==2 );
126566 (void)argc; /* Suppress unused parameter warning */
126769 int argc,
126772 assert( argc==1 );
126807 int argc,
126811 assert( argc==1 || argc==2 );
126821 if( argc==2 ){
126865 int argc,
126871 assert( argc==1 );
126887 int argc,
126893 assert( argc==2 );
126910 int argc,
126913 assert( argc==0 );
126924 int argc,
126929 UNUSED_PARAMETER(argc);
126930 assert( argc==1 );
136856 int argc, const char *const*argv,
136868 UNUSED_PARAMETER(argc);
137016 int argc, sqlite3_value **argv
137029 for(i=0; i<argc; i++, j++){
137238 SQLITE_PRIVATE int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){
137243 assert( argc==5 );
137244 UNUSED_PARAMETER2(NotUsed, argc);
179107 ** then argc is set to 2, and the argv[] array contains pointers
179117 int argc, /* Size of argv array */
180817 int argc, /* Number of elements in argv array */
180859 nByte = sizeof(const char *) * (argc-2);
180884 for(i=3; rc==SQLITE_OK && i<argc; i++){
181200 int argc, /* Number of elements in argv array */
181205 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
181210 int argc, /* Number of elements in argv array */
181215 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
185820 int argc, /* Number of elements in argv array */
185840 if( argc!=4 && argc!=5 ) goto bad_args;
185844 if( argc==5 ){
187501 int argc,
187517 if( argc<3 ){
187538 nCol = argc-2;
187582 int argc,
187585 fts3ExprTestCommon(0, context, argc, argv);
187589 int argc,
187592 fts3ExprTestCommon(1, context, argc, argv);
188061 int argc, const char * const *argv,
188066 UNUSED_PARAMETER(argc);
188732 int argc,
188740 assert( argc==1 || argc==2 );
188747 if( argc==2 ){
188929 int argc,
188955 if( argc<2 ){
188962 nInput = sqlite3_value_bytes(argv[argc-1]);
188963 zInput = (const char *)sqlite3_value_text(argv[argc-1]);
188978 for(i=1; i<argc-1; i++){
188982 if( SQLITE_OK!=p->xCreate(argc-2, azArg, &pTokenizer) ){
189091 int argc,
189099 UNUSED_PARAMETER(argc);
189251 int argc, const char * const *argv,
189265 if( argc>1 ){
189535 int argc, /* Number of elements in argv[] */
189540 if( argc==0 ){
189547 for(i=0; i<argc; i++){
189551 *pazDequote = azDequote = sqlite3_malloc64(sizeof(char *)*argc + nByte);
189555 char *pSpace = (char *)&azDequote[argc];
189556 for(i=0; i<argc; i++){
189587 int argc, /* Number of elements in argv array */
189602 nDequote = argc-3;
199613 int argc,
199620 assert( argc==1 );
199655 int argc,
199658 UNUSED_PARAMETER(argc);
199675 int argc,
199679 UNUSED_PARAMETER(argc);
199694 int argc,
199702 for(i=0; i<argc; i++){
199721 int argc,
199732 if( argc==2 ){
199770 ** is present and argc==2, then return JSON for objects and arrays and SQL
199781 int argc,
199790 if( argc<2 ) return;
199793 if( argc==2 ){
199840 for(i=1; i<argc; i++){
199851 if( i==argc ){
199946 int argc,
199953 UNUSED_PARAMETER(argc);
199978 int argc,
199986 if( argc&1 ){
199993 for(i=0; i<argc; i+=2){
200020 int argc,
200028 if( argc<1 ) return;
200031 for(i=1; i<(u32)argc; i++){
200053 int argc,
200061 if( argc<1 ) return;
200062 if( (argc&1)==0 ) {
200068 for(i=1; i<(u32)argc; i+=2){
200105 int argc,
200115 if( argc<1 ) return;
200116 if( (argc&1)==0 ) {
200122 for(i=1; i<(u32)argc; i+=2){
200158 int argc,
200167 if( argc==2 ){
200186 int argc,
200190 UNUSED_PARAMETER(argc);
200206 int argc,
200210 UNUSED_PARAMETER(argc);
200261 int argc,
200270 UNUSED_PARAMETER(argc);
200309 int argc,
200315 UNUSED_PARAMETER(argc);
200384 int argc, const char *const*argv,
200408 UNUSED_PARAMETER(argc);
200751 int argc, sqlite3_value **argv
200759 UNUSED_PARAMETER(argc);
201927 int argc, const char *const*argv,
201931 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
201940 int argc, const char *const*argv,
201944 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
202781 int argc, sqlite3_value **argv
202828 if( rc==SQLITE_OK && argc>0 ){
202829 pCsr->aConstraint = sqlite3_malloc64(sizeof(RtreeConstraint)*argc);
202830 pCsr->nConstraint = argc;
202834 memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc);
202836 assert( (idxStr==0 && argc==0)
202837 || (idxStr && (int)strlen(idxStr)==argc*2) );
202838 for(ii=0; ii<argc; ii++){
204267 ** (aData[2]..aData[argc-1]) contain a new record to insert into
204676 int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */
204700 if( argc<6 || argc>RTREE_MAX_AUX_COLUMN+3 ){
204701 *pzErr = sqlite3_mprintf("%s", aErrMsg[2 + (argc>=6)]);
204731 for(ii=4; ii<argc; ii++){
204749 }else if( ii<argc ){
205711 int argc,
205730 int argc,
205756 int argc,
205760 if( argc<1 ) return;
205773 for(i=1; i<argc; i++){
205803 int argc,
205861 int argc,
205886 int argc,
205935 int argc,
206049 int argc,
206075 int argc,
206159 int argc,
206202 int argc,
206532 int argc,
206554 int argc,
206574 int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */
206616 for(ii=3; ii<argc; ii++){
206658 int argc, const char *const*argv,
206662 return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
206671 int argc, const char *const*argv,
206675 return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
206695 int argc, sqlite3_value **argv /* Parameters to the query plan */
206736 assert( argc==1 );
207002 ** (aData[2]..aData[argc-1]) contain a new record to insert into
207561 int argc,
207577 if( argc==3 ){
207960 int argc, /* Number of entries in argv[] */
207967 if( argc>0 ){
209487 int argc,
209499 assert( argc==2 );
209755 int argc,
209760 assert( argc==1 || argc==2 );
209765 assert( argc==2 || argc==1 );
209766 if( argc==1 || 0==sqlite3_value_int(argv[1]) ){
214343 int argc, const char *const*argv,
214351 if( argc>=4 ){
214919 int argc, sqlite3_value **argv
215156 int argc, const char *const*argv,
215307 int argc, sqlite3_value **argv
215321 assert( argc>=1 );
215334 assert( argc>(idxNum>>1) );
215395 int argc,
215414 if( argc==1 ){
237188 int argc, /* Number of elements in argv array */
237196 Fts5Config *pConfig = 0; /* Results of parsing argc/argv */
237202 rc = sqlite3Fts5ConfigParse(pGlobal, db, argc, azConfig, &pConfig, pzErr);
237253 int argc, /* Number of elements in argv array */
237258 return fts5InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
237263 int argc, /* Number of elements in argv array */
237268 return fts5InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
239169 int argc,
239174 pAux->xFunc(&sFts5Api, (Fts5Context*)pCsr, context, argc, argv);
239188 int argc,
239196 assert( argc>=1 );
239206 fts5ApiInvoke(pAux, pCsr, context, argc-1, &argv[1]);
243636 int argc, /* Number of elements in argv array */
243651 bDb = (argc==6 && strlen(argv[1])==4 && memcmp("temp", argv[1], 4)==0);
243653 if( argc!=5 && bDb==0 ){
243698 int argc, /* Number of elements in argv array */
243703 return fts5VocabInitVtab(db, pAux, argc, argv, ppVtab, pzErr);
243708 int argc, /* Number of elements in argv array */
243713 return fts5VocabInitVtab(db, pAux, argc, argv, ppVtab, pzErr);
244341 int argc, const char *const*argv,
244474 int argc, sqlite3_value **argv
246101 void sqlite3CodecExportData(sqlite3_context *context, int argc, sqlite3_value **argv){