Home
last modified time | relevance | path

Searched refs:nDequote (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/fts3/
H A Dfts3_tokenize_vtab.c171 int nDequote; in fts3tokConnectMethod() local
176 nDequote = argc-3; in fts3tokConnectMethod()
177 rc = fts3tokDequoteArray(nDequote, &argv[3], &azDequote); in fts3tokConnectMethod()
181 if( nDequote<1 ){ in fts3tokConnectMethod()
192 if( nDequote>1 ) azArg = (const char * const *)&azDequote[1]; in fts3tokConnectMethod()
193 rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok); in fts3tokConnectMethod()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_test_tok.c185 int nDequote = 0; in fts5tokConnectMethod() local
192 nDequote = argc-3; in fts5tokConnectMethod()
193 rc = fts5tokDequoteArray(nDequote, &argv[3], &azDequote); in fts5tokConnectMethod()
208 if( nDequote>0 ){ in fts5tokConnectMethod()
214 const char **azArg = (nDequote>1 ? (const char **)&azDequote[1] : 0); in fts5tokConnectMethod()
215 int nArg = nDequote>0 ? nDequote-1 : 0; in fts5tokConnectMethod()