Lines Matching refs:zLeft
35317 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ in sqlite3_stricmp() argument
35318 if( zLeft==0 ){ in sqlite3_stricmp()
35323 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp()
35325 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
35328 a = (unsigned char *)zLeft; in sqlite3StrICmp()
35344 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
35346 if( zLeft==0 ){ in sqlite3_strnicmp()
35351 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
139140 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
139169 zLeft = sqlite3NameFromToken(db, pId);
139170 if( !zLeft ) return;
139179 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
139199 aFcntl[1] = zLeft;
139222 pPragma = pragmaLocate(zLeft);
139376 if( sqlite3Tolower(zLeft[0])=='p' ){
140409 int isQuick = (sqlite3Tolower(zLeft[0])=='q');
141483 sqlite3DbFree(db, zLeft);
164365 char zLeft[50];
164373 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}",
164376 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx",
164379 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor);
164383 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags);
207517 const char *zLeft, /* The left label */
207529 }else if( rawLeft || zLeft[0]!='\\' ){
207530 cLeft = ((u8*)zLeft)[0];
207532 int sz = sqlite3Utf8ReadLimited((u8*)zLeft, nLeft, &cLeft);
207533 zLeft += sz;
207536 zLeft++;
207540 u32 n = jsonUnescapeOneChar(zLeft, nLeft, &cLeft);
207541 zLeft += n;
207573 const char *zLeft, /* The left label */
207584 return memcmp(zLeft, zRight, nLeft)==0;
207586 return jsonLabelCompareEscaped(zLeft, nLeft, rawLeft,
217058 const void *zLeft,
217064 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);