Lines Matching defs:zLeft
33915 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
33916 if( zLeft==0 ){
33921 return sqlite3StrICmp(zLeft, zRight);
33923 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
33926 a = (unsigned char *)zLeft;
33942 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
33944 if( zLeft==0 ){
33949 a = (unsigned char *)zLeft;
134626 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
134661 zLeft = sqlite3NameFromToken(db, pId);
134662 if( !zLeft ) return;
134671 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
134691 aFcntl[1] = zLeft;
134715 if(sqlite3CodecPragma(db, iDb, pParse, zLeft, zRight)) {
134723 pPragma = pragmaLocate(zLeft);
134877 if( sqlite3Tolower(zLeft[0])=='p' ){
135906 int isQuick = (sqlite3Tolower(zLeft[0])=='q');
136826 sqlite3DbFree(db, zLeft);
158638 char zLeft[50];
158646 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}",
158649 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx",
158652 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor);
158656 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags);
207782 const void *zLeft,
207788 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
245872 int sqlite3CodecPragma(sqlite3 *db, int iDb, Parse *parse, const char *zLeft, const char *zRight){
245879 if(sqlite3StrICmp(zLeft, "cipher_default_attach_cipher") == 0 && zRight != NULL){
245882 }else if(sqlite3StrICmp(zLeft, "cipher_default_attach_kdf_iter") == 0 && zRight != NULL){
245885 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_hmac_algo")==0 && zRight!=NULL ){
245903 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_kdf_algo")==0 && zRight!=NULL ){
245914 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_page_size")==0 && zRight!=NULL ){
245922 if(sqlite3StrICmp(zLeft, "codec_cipher") == 0){
245935 }else if(sqlite3StrICmp(zLeft, "codec_kdf_iter") == 0){
245946 }else if( sqlite3StrICmp(zLeft, "codec_hmac_algo")==0 ){
245983 }else if( sqlite3StrICmp(zLeft, "codec_kdf_algo")==0 ){
246010 }else if( sqlite3StrICmp(zLeft, "codec_page_size")==0 ){
246027 }else if(sqlite3StrICmp(zLeft, "codec_rekey_hmac_algo") == 0){