Home
last modified time | relevance | path

Searched refs:zLeft (Results 1 – 14 of 14) sorted by relevance

/sqlite-3.40.0/tool/
H A Dshowwal.c552 char *zLeft; in main() local
561 iStart = strtol(argv[i], &zLeft, 0); in main()
562 if( zLeft && strcmp(zLeft,"..end")==0 ){ in main()
564 }else if( zLeft && zLeft[0]=='.' && zLeft[1]=='.' ){ in main()
565 iEnd = strtol(&zLeft[2], 0, 0); in main()
566 }else if( zLeft && zLeft[0]=='b' ){ in main()
581 decode_btree_page(a, iStart, hdrSize, zLeft+1); in main()
585 }else if( zLeft && strcmp(zLeft,"truncate")==0 ){ in main()
H A Dshowdb.c1165 char *zLeft; in main() local
1186 iStart = strtoul(azArg[i], &zLeft, 0); in main()
1187 if( zLeft && strcmp(zLeft,"..end")==0 ){ in main()
1189 }else if( zLeft && zLeft[0]=='.' && zLeft[1]=='.' ){ in main()
1190 iEnd = strtol(&zLeft[2], 0, 0); in main()
1191 }else if( zLeft && zLeft[0]=='b' ){ in main()
1203 decode_btree_page(a, iStart, hdrSize, &zLeft[1]); in main()
1206 }else if( zLeft && zLeft[0]=='t' ){ in main()
1210 for(j=1; zLeft[j]; j++){ in main()
1211 if( zLeft[j]=='r' ) recursive = 1; in main()
[all …]
H A Dspeedtest8inst1.c75 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 Dfts3expr2.test126 set zLeft [tree_to_expr $lhs $all_brackets $implicit_and]
138 set zLeft "($zLeft)"
144 return "$zLeft $op $zRight"
H A Dcollate7.test22 proc caseless_cmp {zLeft zRight} {
23 string compare -nocase $zLeft $zRight
H A Dprefixes.test26 foreach {tn zLeft zRight expected} {
39 do_execsql_test 1.$tn { SELECT prefix_length($zLeft, $zRight) } $expected
H A Denc.test153 proc test_collate {enc zLeft zRight} {
154 return [string compare $zLeft $zRight]
H A De_expr.test360 proc reverse_collate {zLeft zRight} {
361 string compare [reverse_str $zLeft] [reverse_str $zRight]
/sqlite-3.40.0/src/
H A Dutil.c316 int sqlite3_stricmp(const char *zLeft, const char *zRight){ in sqlite3_stricmp() argument
317 if( zLeft==0 ){ in sqlite3_stricmp()
322 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp()
324 int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
327 a = (unsigned char *)zLeft; in sqlite3StrICmp()
343 int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
345 if( zLeft==0 ){ in sqlite3_strnicmp()
350 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
H A Dpragma.c388 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */ in sqlite3Pragma() local
417 zLeft = sqlite3NameFromToken(db, pId); in sqlite3Pragma()
418 if( !zLeft ) return; in sqlite3Pragma()
427 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){ in sqlite3Pragma()
447 aFcntl[1] = zLeft; in sqlite3Pragma()
470 pPragma = pragmaLocate(zLeft); in sqlite3Pragma()
624 if( sqlite3Tolower(zLeft[0])=='p' ){ in sqlite3Pragma()
1653 int isQuick = (sqlite3Tolower(zLeft[0])=='q'); in sqlite3Pragma()
2532 sqlite3DbFree(db, zLeft); in sqlite3Pragma()
H A Dwhere.c2088 char zLeft[50]; in sqlite3WhereTermPrint() local
2096 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}", in sqlite3WhereTermPrint()
2099 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx", in sqlite3WhereTermPrint()
2102 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor); in sqlite3WhereTermPrint()
2106 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags); in sqlite3WhereTermPrint()
H A Dtest1.c1736 const void *zLeft, in testCreateCollationCmp() argument
1745 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj((char *)zLeft, nLeft)); in testCreateCollationCmp()
/sqlite-3.40.0/ext/icu/
H A Dicu.c433 const void *zLeft, 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 Dlsm_sorted.c5887 char zLeft[1024]; in lsmSortedDumpStructure() local
5915 zLeft[0] = '\0'; in lsmSortedDumpStructure()
5919 fileToString(pDb, zLeft, sizeof(zLeft), 24, aLeft[i]); in lsmSortedDumpStructure()
5938 zLevel, iPad, "", zLeft, zRight in lsmSortedDumpStructure()