Lines Matching refs:zRight

35317 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){  in sqlite3_stricmp()  argument
35319 return zRight ? -1 : 0; in sqlite3_stricmp()
35320 }else if( zRight==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
35329 b = (unsigned char *)zRight; in sqlite3StrICmp()
35344 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
35347 return zRight ? -1 : 0; in sqlite3_strnicmp()
35348 }else if( zRight==0 ){ in sqlite3_strnicmp()
35352 b = (unsigned char *)zRight; in sqlite3_strnicmp()
139141 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
139172 zRight = sqlite3MPrintf(db, "-%T", pValue);
139174 zRight = sqlite3NameFromToken(db, pValue);
139179 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
139200 aFcntl[2] = zRight;
139236 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0)
139276 if( !zRight ){
139285 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
139309 if( !zRight ){
139316 db->nextPagesize = sqlite3Atoi(zRight);
139336 if( zRight ){
139337 if( sqlite3_stricmp(zRight, "fast")==0 ){
139340 b = sqlite3GetBoolean(zRight, 0);
139379 if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){
139397 int eMode = getLockingMode(zRight);
139446 if( zRight==0 ){
139452 int n = sqlite3Strlen30(zRight);
139454 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
139491 if( zRight ){
139492 sqlite3DecOrHexToI64(zRight, &iLimit);
139513 if( !zRight ){
139516 int eAuto = getAutoVacuum(zRight);
139564 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
139592 if( !zRight ){
139595 int size = sqlite3Atoi(zRight);
139626 if( !zRight ){
139632 if( sqlite3GetInt32(zRight, &size) ){
139635 if( sqlite3GetBoolean(zRight, size!=0) ){
139663 if( zRight ){
139665 sqlite3DecOrHexToI64(zRight, &sz);
139701 if( !zRight ){
139704 changeTempStorage(pParse, zRight);
139721 if( !zRight ){
139725 if( zRight[0] ){
139727 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
139741 if( zRight[0] ){
139742 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
139768 if( !zRight ){
139772 if( zRight[0] ){
139774 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
139782 if( zRight[0] ){
139783 sqlite3_data_directory = sqlite3_mprintf("%s", zRight);
139804 if( !zRight ){
139815 if( zRight[0] ){
139817 zRight);
139841 if( !zRight ){
139848 int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK;
139861 if( zRight==0 ){
139878 if( sqlite3GetBoolean(zRight, 0) ){
139888 && sqlite3_stricmp(zRight, "reset")==0
139922 case PragTyp_TABLE_INFO: if( zRight ){
139925 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
140029 if( zRight && sqlite3_stricmp(zRight, pTab->zName)!=0 ) continue;
140079 case PragTyp_INDEX_INFO: if( zRight ){
140082 pIdx = sqlite3FindIndex(db, zRight, zDb);
140087 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
140124 case PragTyp_INDEX_LIST: if( zRight ){
140128 pTab = sqlite3FindTable(db, zRight, zDb);
140216 case PragTyp_FOREIGN_KEY_LIST: if( zRight ){
140219 pTab = sqlite3FindTable(db, zRight, zDb);
140271 if( zRight ){
140272 pTab = sqlite3LocateTable(pParse, 0, zRight, zDb);
140369 if( zRight ){
140370 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
140429 if( zRight ){
140435 pObjTab = sqlite3LocateTable(pParse, 0, zRight,
140958 if( !zRight ){ /* "PRAGMA encoding" */
140972 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
140980 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
141024 if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){
141037 aOp[1].p3 = sqlite3Atoi(zRight);
141093 if( zRight ){
141094 if( sqlite3StrICmp(zRight, "full")==0 ){
141096 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
141098 }else if( sqlite3StrICmp(zRight, "truncate")==0 ){
141117 if( zRight ){
141118 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
141227 if( zRight ){
141228 opMask = (u32)sqlite3Atoi(zRight);
141348 if( zRight ){
141349 sqlite3_busy_timeout(db, sqlite3Atoi(zRight));
141368 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
141388 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
141405 if( zRight
141406 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
141424 if( zRight
141425 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK /* IMP: R-40975-20399 */
141463 case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){
141464 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
141465 sqlite3_activate_cerod(&zRight[6]);
141478 if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){
141484 sqlite3DbFree(db, zRight);
207520 const char *zRight, /* The right label */
207547 }else if( rawRight || zRight[0]!='\\' ){
207548 cRight = ((u8*)zRight)[0];
207550 int sz = sqlite3Utf8ReadLimited((u8*)zRight, nRight, &cRight);
207551 zRight += sz;
207554 zRight++;
207558 u32 n = jsonUnescapeOneChar(zRight, nRight, &cRight);
207559 zRight += n;
207576 const char *zRight, /* The right label */
207584 return memcmp(zLeft, zRight, nLeft)==0;
207587 zRight, nRight, rawRight);
217060 const void *zRight
217064 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);