Searched defs:inPhrase (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c2665 ** inPhrase is true if pSegment[0..nSegement-1] is contained within
2666 ** double-quotes. If inPhrase is true, then the first term
2668 ** OR and "-" syntax is ignored. If inPhrase is false, then every
2674 int inPhrase, /* True if within "..." */
2695 if( !inPhrase &&
2701 if( !inPhrase && pQuery->nTerms>0 && nToken==2
2707 if( !inPhrase && iBegin>0 && pSegment[iBegin-1]=='-' ){
2711 if( inPhrase ){
2716 if( inPhrase && pQuery->nTerms>firstIndex ){
2735 int iInput, inPhrase local
2671 tokenizeSegment( sqlite3_tokenizer *pTokenizer, const char *pSegment, int nSegment, int inPhrase, Query *pQuery ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c3713 ** inPhrase is true if pSegment[0..nSegement-1] is contained within
3714 ** double-quotes. If inPhrase is true, then the first term
3716 ** OR and "-" syntax is ignored. If inPhrase is false, then every
3722 int inPhrase, /* True if within "..." */
3744 if( !inPhrase &&
3750 if( !inPhrase && pQuery->nTerms>0 && nToken==2
3770 if( !inPhrase && iBegin>0 && pSegment[iBegin-1]=='-' ){
3777 if( inPhrase ){
3782 if( inPhrase && pQuery->nTerms>firstIndex ){
3801 int iInput, inPhrase local
3719 tokenizeSegment( sqlite3_tokenizer *pTokenizer, const char *pSegment, int nSegment, int inPhrase, Query *pQuery ) argument
[all...]

Completed in 1003 milliseconds