Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c6940 static const char *re_compile(ReCompiled **ppRe, const char *zIn, int noCase){ in re_compile() argument
6951 pRe->xNextChar = noCase ? re_next_char_nocase : re_next_char; in re_compile()
6985 if( pRe->aOp[0]==RE_OP_ANYSTAR && !noCase ){ in re_compile()
H A Dsqlite3.c129307 u8 noCase; /* true to ignore case differences */
129385 u8 noCase = pInfo->noCase; /* True if uppercase==lowercase */
129430 if( noCase ){
129496 if( noCase && sqlite3Tolower(c)==sqlite3Tolower(c2) && c<0x80 && c2<0x80 ){
161313 int noCase = 0; /* uppercase equivalent to lowercase */
161566 && isLikeOrGlob(pParse, pExpr, &pStr1, &isComplete, &noCase)
161588 if( noCase && !pParse->db->mallocFailed ){
161602 if( noCase ){
161614 zCollSeqName = noCase ? "NOCASE" : sqlite3StrBINARY;