OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nInput
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.c
149
int
nInput
;
165
nInput
= sqlite3_value_bytes(argv[argc-1]);
190
if( SQLITE_OK!=p->xOpen(pTokenizer, zInput,
nInput
, &pCsr) ){
fts2_porter.c
48
int
nInput
; /* size of the input */
85
** string to be tokenized is zInput[0..
nInput
-1]. A cursor
91
const char *zInput, int
nInput
, /* String to be tokenized */
101
c->
nInput
= 0;
102
}else if(
nInput
<0 ){
103
c->
nInput
= (int)strlen(zInput);
105
c->
nInput
=
nInput
;
587
while( c->iOffset<c->
nInput
){
591
while( c->iOffset<c->
nInput
&& isDelim(z[c->iOffset]) )
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c
49
int
nInput
; /* size of the input */
86
** string to be tokenized is zInput[0..
nInput
-1]. A cursor
92
const char *zInput, int
nInput
, /* String to be tokenized */
102
c->
nInput
= 0;
103
}else if(
nInput
<0 ){
104
c->
nInput
= (int)strlen(zInput);
106
c->
nInput
=
nInput
;
589
while( c->iOffset<c->
nInput
){
593
while( c->iOffset<c->
nInput
&& isDelim(z[c->iOffset]) )
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c
49
int
nInput
; /* size of the input */
86
** string to be tokenized is zInput[0..
nInput
-1]. A cursor
92
const char *zInput, int
nInput
, /* String to be tokenized */
104
c->
nInput
= 0;
105
}else if(
nInput
<0 ){
106
c->
nInput
= (int)strlen(zInput);
108
c->
nInput
=
nInput
;
590
while( c->iOffset<c->
nInput
){
594
while( c->iOffset<c->
nInput
&& isDelim(z[c->iOffset]) )
[
all
...]
fts3_tokenizer.c
255
int
nInput
;
271
nInput
= sqlite3_value_bytes(argv[argc-1]);
296
if( SQLITE_OK!=p->xOpen(pTokenizer, zInput,
nInput
, &pCsr) ){
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]=='*' ){
342
int
nInput
= n;
347
while(
nInput
>0 && fts3isspace(*zInput) ){
348
nInput
--;
351
if(
nInput
==0 ){
363
if(
nInput
>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
409
rc = fts3ExprParse(pParse, &zInput[1],
nInput
-1, ppExpr, &nConsumed)
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c
330
int
nInput
;
345
nInput
= sqlite3_value_bytes16(apArg[0]);
347
nOutput =
nInput
* 2 + 2;
354
u_strToUpper(zOutput, nOutput/2, zInput,
nInput
/2, zLocale, &status);
356
u_strToLower(zOutput, nOutput/2, zInput,
nInput
/2, zLocale, &status);