Lines Matching refs:zLeft

35919 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){  in sqlite3_stricmp()  argument
35920 if( zLeft==0 ){ in sqlite3_stricmp()
35925 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp()
35927 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
35930 a = (unsigned char *)zLeft; in sqlite3StrICmp()
35946 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
35948 if( zLeft==0 ){ in sqlite3_strnicmp()
35953 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
141084 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
141113 zLeft = sqlite3NameFromToken(db, pId);
141114 if( !zLeft ) return;
141123 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
141143 aFcntl[1] = zLeft;
141166 pPragma = pragmaLocate(zLeft);
141320 if( sqlite3Tolower(zLeft[0])=='p' ){
142351 int isQuick = (sqlite3Tolower(zLeft[0])=='q');
143426 sqlite3DbFree(db, zLeft);
166840 char zLeft[50];
166848 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}",
166851 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx",
166854 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor);
166858 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags);
210640 const char *zLeft, /* The left label */
210652 }else if( rawLeft || zLeft[0]!='\\' ){
210653 cLeft = ((u8*)zLeft)[0];
210655 int sz = sqlite3Utf8ReadLimited((u8*)zLeft, nLeft, &cLeft);
210656 zLeft += sz;
210659 zLeft++;
210663 u32 n = jsonUnescapeOneChar(zLeft, nLeft, &cLeft);
210664 zLeft += n;
210696 const char *zLeft, /* The left label */
210707 return memcmp(zLeft, zRight, nLeft)==0;
210709 return jsonLabelCompareEscaped(zLeft, nLeft, rawLeft,
220213 const void *zLeft,
220219 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);