Searched refs:zRight (Results 1 – 11 of 11) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | pragma.c | 524 if( !zRight ){ in sqlite3Pragma() 557 if( !zRight ){ in sqlite3Pragma() 584 if( zRight ){ in sqlite3Pragma() 627 if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){ in sqlite3Pragma() 739 if( zRight ){ in sqlite3Pragma() 761 if( !zRight ){ in sqlite3Pragma() 911 if( zRight ){ in sqlite3Pragma() 1613 if( zRight ){ in sqlite3Pragma() 1673 if( zRight ){ in sqlite3Pragma() 2454 if( zRight in sqlite3Pragma() [all …]
|
| H A D | util.c | 316 int sqlite3_stricmp(const char *zLeft, const char *zRight){ in sqlite3_stricmp() argument 318 return zRight ? -1 : 0; in sqlite3_stricmp() 319 }else if( zRight==0 ){ in sqlite3_stricmp() 322 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp() 324 int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument 328 b = (unsigned char *)zRight; in sqlite3StrICmp() 343 int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument 346 return zRight ? -1 : 0; in sqlite3_strnicmp() 347 }else if( zRight==0 ){ in sqlite3_strnicmp() 351 b = (unsigned char *)zRight; in sqlite3_strnicmp()
|
| H A D | test1.c | 1738 const void *zRight in testCreateCollationCmp() argument 1746 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj((char *)zRight,nRight)); in testCreateCollationCmp()
|
| /sqlite-3.40.0/tool/ |
| H A D | speedtest8inst1.c | 75 static int stringcompare(const char *zLeft, const char *zRight){ in stringcompare() argument 77 for(ii=0; zLeft[ii] && zRight[ii]; ii++){ in stringcompare() 78 if( zLeft[ii]!=zRight[ii] ) return 0; in stringcompare() 80 return( zLeft[ii]==zRight[ii] ); in stringcompare()
|
| /sqlite-3.40.0/test/ |
| H A D | fts3expr2.test | 127 set zRight [tree_to_expr $rhs $all_brackets $implicit_and] 141 set zRight "($zRight)" 144 return "$zLeft $op $zRight"
|
| H A D | collate7.test | 22 proc caseless_cmp {zLeft zRight} { 23 string compare -nocase $zLeft $zRight
|
| H A D | prefixes.test | 26 foreach {tn zLeft zRight expected} { 39 do_execsql_test 1.$tn { SELECT prefix_length($zLeft, $zRight) } $expected
|
| H A D | enc.test | 153 proc test_collate {enc zLeft zRight} { 154 return [string compare $zLeft $zRight]
|
| H A D | e_expr.test | 360 proc reverse_collate {zLeft zRight} { 361 string compare [reverse_str $zLeft] [reverse_str $zRight]
|
| /sqlite-3.40.0/ext/icu/ |
| H A D | icu.c | 435 const void *zRight in icuCollationColl() argument 439 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2); in icuCollationColl()
|
| /sqlite-3.40.0/ext/lsm1/ |
| H A D | lsm_sorted.c | 5888 char zRight[1024]; in lsmSortedDumpStructure() local 5916 zRight[0] = '\0'; in lsmSortedDumpStructure() 5922 fileToString(pDb, zRight, sizeof(zRight), 24, aRight[i]); in lsmSortedDumpStructure() 5938 zLevel, iPad, "", zLeft, zRight in lsmSortedDumpStructure()
|