Lines Matching refs:zLeft
34957 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ in sqlite3_stricmp() argument
34958 if( zLeft==0 ){ in sqlite3_stricmp()
34963 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp()
34965 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
34968 a = (unsigned char *)zLeft; in sqlite3StrICmp()
34984 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
34986 if( zLeft==0 ){ in sqlite3_strnicmp()
34991 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
138151 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
138180 zLeft = sqlite3NameFromToken(db, pId);
138181 if( !zLeft ) return;
138190 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
138210 aFcntl[1] = zLeft;
138233 pPragma = pragmaLocate(zLeft);
138387 if( sqlite3Tolower(zLeft[0])=='p' ){
139420 int isQuick = (sqlite3Tolower(zLeft[0])=='q');
140384 sqlite3DbFree(db, zLeft);
163016 char zLeft[50];
163024 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}",
163027 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx",
163030 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor);
163034 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags);
205755 const char *zLeft, /* The left label */
205767 }else if( rawLeft || zLeft[0]!='\\' ){
205768 cLeft = ((u8*)zLeft)[0];
205770 int sz = sqlite3Utf8ReadLimited((u8*)zLeft, nLeft, &cLeft);
205771 zLeft += sz;
205774 zLeft++;
205778 u32 n = jsonUnescapeOneChar(zLeft, nLeft, &cLeft);
205779 zLeft += n;
205811 const char *zLeft, /* The left label */
205822 return memcmp(zLeft, zRight, nLeft)==0;
205824 return jsonLabelCompareEscaped(zLeft, nLeft, rawLeft,
215250 const void *zLeft,
215256 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);