OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:zInput
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.c
148
const char *
zInput
;
166
zInput
= (const char *)sqlite3_value_text(argv[argc-1]);
190
if( SQLITE_OK!=p->xOpen(pTokenizer,
zInput
, nInput, &pCsr) ){
199
zToken = &
zInput
[iStart];
fts2_porter.c
47
const char *
zInput
; /* input we are tokenizing */
49
int iOffset; /* current position in
zInput
*/
85
** string to be tokenized is
zInput
[0..nInput-1]. A cursor
91
const char *
zInput
, int nInput, /* String to be tokenized */
99
c->
zInput
=
zInput
;
100
if(
zInput
==0 ){
103
c->nInput = (int)strlen(
zInput
);
585
const char *z = c->
zInput
;
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c
48
const char *
zInput
; /* input we are tokenizing */
50
int iOffset; /* current position in
zInput
*/
86
** string to be tokenized is
zInput
[0..nInput-1]. A cursor
92
const char *
zInput
, int nInput, /* String to be tokenized */
100
c->
zInput
=
zInput
;
101
if(
zInput
==0 ){
104
c->nInput = (int)strlen(
zInput
);
587
const char *z = c->
zInput
;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c
48
const char *
zInput
; /* input we are tokenizing */
50
int iOffset; /* current position in
zInput
*/
86
** string to be tokenized is
zInput
[0..nInput-1]. A cursor
92
const char *
zInput
, int nInput, /* String to be tokenized */
102
c->
zInput
=
zInput
;
103
if(
zInput
==0 ){
106
c->nInput = (int)strlen(
zInput
);
588
const char *z = c->
zInput
;
fts3_tokenizer.c
254
const char *
zInput
;
272
zInput
= (const char *)sqlite3_value_text(argv[argc-1]);
296
if( SQLITE_OK!=p->xOpen(pTokenizer,
zInput
, nInput, &pCsr) ){
305
zToken = &
zInput
[iStart];
fts3_expr.c
203
** Buffer
zInput
, length nInput, contains the contents of a quoted string
216
const char *
zInput
, int nInput, /* Input string */
227
rc = pModule->xOpen(pTokenizer,
zInput
, nInput, &pCursor);
252
if( iEnd<nInput &&
zInput
[iEnd]=='*' ){
341
const char *
zInput
= z;
347
while( nInput>0 && fts3isspace(*
zInput
) ){
349
zInput
++;
363
if( nInput>=pKey->n && 0==memcmp(
zInput
, pKey->z, pKey->n) ){
371
if(
zInput
[4]=='/' &&
zInput
[5]>='0' && zInput[5]<='9' )
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c
328
const UChar *
zInput
;
341
zInput
= sqlite3_value_text16(apArg[0]);
342
if( !
zInput
){
354
u_strToUpper(zOutput, nOutput/2,
zInput
, nInput/2, zLocale, &status);
356
u_strToLower(zOutput, nOutput/2,
zInput
, nInput/2, zLocale, &status);
/external/chromium_org/third_party/sqlite/src/src/
alter.c
110
unsigned char const *
zInput
= sqlite3_value_text(argv[0]);
119
for(z=
zInput
; *z; z=z+n){
133
(zOutput?zOutput:""), z-
zInput
,
zInput
, (const char *)zNew
137
zInput
= &z[n];
143
zResult = sqlite3MPrintf(db, "%s%s", (zOutput?zOutput:""),
zInput
),
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 472 milliseconds