Searched defs:zTo (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c259 ** ending to zTo.
261 ** The input word *pz and zFrom are both in reverse order. zTo
271 const char *zTo, /* ... change the ending to this (not reversed) */
278 while( *zTo ){
279 *(--z) = *(zTo++);
268 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_porter.c258 ** ending to zTo.
260 ** The input word *pz and zFrom are both in reverse order. zTo
270 const char *zTo, /* ... change the ending to this (not reversed) */
277 while( *zTo ){
278 *(--z) = *(zTo++);
267 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_porter.c261 ** ending to zTo.
263 ** The input word *pz and zFrom are both in reverse order. zTo
273 const char *zTo, /* ... change the ending to this (not reversed) */
280 while( *zTo ){
281 *(--z) = *(zTo++);
270 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_fuzzer.c128 int nFrom, nTo; /* Length of the zFrom and zTo strings */
130 char zTo[4]; /* Transform to (extra space appended) */ member in struct:fuzzer_rule
361 memcpy(&z[n], pRule->zTo, pRule->nTo);
811 const char *zTo; local
828 zTo = (char*)sqlite3_value_text(argv[5]);
829 if( zTo==0 ) zTo = "";
830 if( strcmp(zFrom,zTo)==0 ){
841 nTo = strlen(zTo);
846 pRule->zFrom = &pRule->zTo[nT
[all...]
H A DsqliteInt.h1345 char *zTo; /* Name of table that the key points to (aka: Parent) */ member in struct:FKey
1346 FKey *pNextTo; /* Next foreign key on table named zTo */
1347 FKey *pPrevTo; /* Previous foreign key on table named zTo */
1353 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
1355 char *zCol; /* Name of column in zTo. If 0 use PRIMARY KEY */
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9690 char *zTo; /* Name of table that the key points to (aka: Parent) */ member in struct:FKey
9691 FKey *pNextTo; /* Next foreign key on table named zTo */
9692 FKey *pPrevTo; /* Previous foreign key on table named zTo */
9698 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
9700 char *zCol; /* Name of column in zTo. If 0 use PRIMARY KEY */
118820 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11030 char *zTo; /* Name of table that the key points to (aka: Parent) */ member in struct:FKey
11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */
11032 FKey *pPrevTo; /* Previous with the same zTo */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
11040 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */
135123 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11030 char *zTo; /* Name of table that the key points to (aka: Parent) */ member in struct:FKey
11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */
11032 FKey *pPrevTo; /* Previous with the same zTo */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
11040 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */
135155 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]

Completed in 2422 milliseconds