Lines Matching refs:zLeft
21270 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
21272 a = (unsigned char *)zLeft;
21277 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
21279 a = (unsigned char *)zLeft;
92262 ** Check to see if zRight and zLeft refer to a pragma that queries
92266 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
92307 if( sqlite3StrICmp(zLeft, p->zName)==0 ){
92409 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
92437 zLeft = sqlite3NameFromToken(db, pId);
92438 if( !zLeft ) return;
92447 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
92456 aFcntl[1] = zLeft;
92496 if( sqlite3StrICmp(zLeft,"default_cache_size")==0 ){
92540 if( sqlite3StrICmp(zLeft,"page_size")==0 ){
92565 if( sqlite3StrICmp(zLeft,"secure_delete")==0 ){
92599 if( sqlite3StrICmp(zLeft,"page_count")==0
92600 || sqlite3StrICmp(zLeft,"max_page_count")==0
92606 if( sqlite3Tolower(zLeft[0])=='p' ){
92614 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT);
92621 if( sqlite3StrICmp(zLeft,"locking_mode")==0 ){
92669 if( sqlite3StrICmp(zLeft,"journal_mode")==0 ){
92720 if( sqlite3StrICmp(zLeft,"journal_size_limit")==0 ){
92741 if( sqlite3StrICmp(zLeft,"auto_vacuum")==0 ){
92800 if( sqlite3StrICmp(zLeft,"incremental_vacuum")==0 ){
92830 if( sqlite3StrICmp(zLeft,"cache_size")==0 ){
92853 if( sqlite3StrICmp(zLeft, "temp_store")==0 ){
92871 if( sqlite3StrICmp(zLeft, "temp_store_directory")==0 ){
92922 if( sqlite3StrICmp(zLeft, "lock_proxy_file")==0 ){
92965 if( sqlite3StrICmp(zLeft,"synchronous")==0 ){
92981 if( flagPragma(pParse, zLeft, zRight) ){
93000 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
93038 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
93062 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
93089 zLeft, "database_list")==0 ){
93108 if( sqlite3StrICmp(zLeft, "collation_list")==0 ){
93125 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
93171 if( sqlite3StrICmp(zLeft, "parser_trace")==0 ){
93185 if( sqlite3StrICmp(zLeft, "case_sensitive_like")==0 ){
93200 if( sqlite3StrICmp(zLeft, "integrity_check")==0
93201 || sqlite3StrICmp(zLeft, "quick_check")==0
93216 int isQuick = (sqlite3Tolower(zLeft[0])=='q');
93382 if( sqlite3StrICmp(zLeft, "encoding")==0 ){
93458 if( sqlite3StrICmp(zLeft, "schema_version")==0
93459 || sqlite3StrICmp(zLeft, "user_version")==0
93460 || sqlite3StrICmp(zLeft, "freelist_count")==0
93464 switch( zLeft[0] ){
93500 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT);
93512 if( sqlite3StrICmp(zLeft, "compile_options")==0 ){
93531 if( sqlite3StrICmp(zLeft, "wal_checkpoint")==0 ){
93560 if( sqlite3StrICmp(zLeft, "wal_autocheckpoint")==0 ){
93576 if( sqlite3StrICmp(zLeft, "shrink_memory")==0 ){
93584 if( sqlite3StrICmp(zLeft, "lock_status")==0 ){
93615 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
93618 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
93621 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
93622 sqlite3StrICmp(zLeft, "hexrekey")==0) ){
93630 if( (zLeft[3] & 0xf)==0xb ){
93638 if( sqlite3StrICmp(zLeft, "activate_extensions")==0 ){
93667 sqlite3DbFree(db, zLeft);
133830 const void *zLeft,
133836 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);