| /sqlite-3.40.0/ext/fts5/ |
| H A D | extract_api_docs.tcl | 21 proc output {text} { 25 proc output {text} { 139 output "<dl>" 154 output "$link>" 155 output "<b>$hdr</b></dt><dd>" 169 output "<$mode$margin>" 172 output $line 175 output "</dd>" 177 output "</dl>" 213 output [get_fts5_struct $data \ [all …]
|
| /sqlite-3.40.0/test/ |
| H A D | fts2token.test | 127 proc do_icu_test {name locale input output} { 131 } $output 145 append output "1 \u0e19\u0e30 \u0e19\u0e30 " 148 do_icu_test fts2token-4.3 th_TH $input $output 149 do_icu_test fts2token-4.4 en_US $input $output 160 set output "0 short short " 161 append output "1 tokens tokens " 162 append output "2 then then " 163 append output "3 [string tolower $longtoken] $longtoken" 166 do_icu_test fts2token-4.7 th_TH $input $output [all …]
|
| H A D | fts3atoken.test | 197 proc do_icu_test {name locale input output} { 201 } $output 215 append output "1 \u0e19\u0e30 \u0e19\u0e30 " 218 do_icu_test fts3atoken-4.3 th_TH $input $output 219 do_icu_test fts3atoken-4.4 en_US $input $output 230 set output "0 short short " 231 append output "1 tokens tokens " 232 append output "2 then then " 233 append output "3 [string tolower $longtoken] $longtoken" 236 do_icu_test fts3atoken-4.7 th_TH $input $output [all …]
|
| H A D | shell1.test | 437 } {0 {current output mode: list}} 482 # .output FILENAME Send output to FILENAME 484 catchcmd "test.db" ".output" 487 catchcmd "test.db" ".output FOO" 493 .output ?FILE? Send output to FILE or stdout if FILE is omitted 501 # .output stdout Send output to the screen 509 .output ?FILE? Send output to FILE or stdout if FILE is omitted 623 [regexp {output:} $res] \ 810 # rowid column in the output. 961 # Test the output of ".mode tcl" [all …]
|
| H A D | testrunner.tcl | 67 output TEXT, -- full output of test script 343 proc r_set_test_result {config filename ms nerr ntest output} { argument 540 append R(output) [lindex $args 0] 541 append R(output) "\n" 543 append R(output) [lindex $args 1] 562 db eval {SELECT output FROM script ORDER BY config!='full',config,filename} { 563 puts $fd $output 653 set R(output) "" 676 r_set_test_result $config $filename $ms $TC(errors) $TC(count) $R(output)
|
| H A D | resolver01.test | 24 # "ORDER BY y" binds to the output result-set column named "y" 25 # if available. If no output column is named "y", then try to 54 # SQLite allows the WHERE clause to reference output columns if there is 69 # The "y" binds more tightly to output columns than to input columns. 107 # the input column names and only use the output column names if no
|
| H A D | pg_common.tcl | 132 set output [file join $dir $name.test] 133 set ::fd [open $output w]
|
| H A D | tester.tcl | 404 --output=FILE set --verbose=2 and output to FILE. Implies -q 450 set cmdlinearg(output) "" 521 foreach {dummy cmdlinearg(output)} [split $a =] break 522 set cmdlinearg(output) [file normalize $cmdlinearg(output)] 542 set cmdlinearg(output) test-out.txt 586 if {$cmdlinearg(output)!=""} { 587 puts "Copying output to file $cmdlinearg(output)" 588 set ::G(output_fd) [open $cmdlinearg(output) w]
|
| H A D | pragma.test | 54 # Capture the output of a pragma in a TEMP table. 755 # (The first column of output from PRAGMA index_info is...) 759 # (The second column of output from PRAGMA index_info is...) 763 # (The third column of output from PRAGMA index_info is...) 1900 # (The first column of output from PRAGMA index_xinfo is...) 1909 # (The third column of output from PRAGMA index_xinfo is...) 1918 # (The fifth column of output from PRAGMA index_xinfo is...) 1922 # (The sixth column of output from PRAGMA index_xinfo is...) 1939 # (The first column of output from PRAGMA index_list is...) 1943 # (The second column of output from PRAGMA index_list is...) [all …]
|
| H A D | orderby9.test | 43 # the output should appear in sorted order. If random() is evaluated 44 # separately for the result set and the ORDER BY clause, then the output
|
| H A D | coveridxscan.test | 50 # With the optimization turned off, output in rowid order 66 # With the optimization configured off, output in rowid order
|
| H A D | selectE.test | 23 # sqlite3.exe shell program to output delimiter lines so that you can more 24 # easily tell where the output of one query ends and the next query
|
| H A D | shell6.test | 23 foreach {tn schema output} { 110 foreach line [split $output "\n"] {
|
| /sqlite-3.40.0/ |
| H A D | ltmain.sh | 4167 output) 4948 case $output in 7163 : > $output 7297 libobjs=$output 7417 libobj=$output 7423 obj="$output" 7821 case $output in 7868 $RM $output 7872 chmod +x $output 8027 case $output in [all …]
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest_bt.c | 56 sqlite4_buffer_init(&buf.output, 0); in do_bt() 68 printf("%s\n", (char*)buf.output.p); in do_bt() 69 sqlite4_buffer_clear(&buf.output); in do_bt()
|
| H A D | lsmtest_tdb4.c | 880 sqlite4_buffer_init(&info.output, 0); in bgc_attach() 887 n = info.output.n; in bgc_attach() 889 if( n==pCkpter->file.n && 0==memcmp(info.output.p, pCkpter->file.p, n) ){ in bgc_attach() 899 memcpy(&pCkpter->file, &info.output, sizeof(sqlite4_buffer)); in bgc_attach() 900 info.output.p = 0; in bgc_attach() 933 sqlite4_buffer_clear(&info.output); in bgc_attach()
|
| /sqlite-3.40.0/tool/ |
| H A D | stripccomments.c | 39 FILE * output; member 57 FILE * out = App.output; in do_it_all() 225 App.output = stdout; in main()
|
| H A D | dbtotxt.md | 7 The hex-dump output is formatted in such a way as to be easily readable 9 of the TH3 test suite. The output of dbtotxt can be embedded in TH3 test 16 dbtotxt output. The CLI dot-command is:
|
| H A D | build-all-msvc.bat | 19 REM for the generated output files, which will be placed in sub-directories 29 REM directory for the generated output files. 155 REM NOTE: The first and only argument to this batch file should be the output 513 REM 2. Make sure that no stale build output files are present. 609 REM makefile to clean any stale build output from previous 623 REM need to remove the build output for all the files we are 626 %_AECHO% Cleaning final core library output files only... 687 REM NOTE: If necessary, make sure any previous build output for the 693 REM need to remove the build output for all the files we are 696 %_AECHO% Cleaning final shell executable output files only...
|
| H A D | omittest.tcl | 17 as a sub-directory of the current directory by the script. The output 18 of the build is saved in <sub-directory>/build.log. The output of the
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | batch-runner.js | 79 output: E('#test-output'), property 96 cls: function(){this.e.output.innerHTML = ''}, 101 this.e.output.append(ln); 537 this.e.output.classList.add('reverse'); 540 who.e.output.classList[this.checked ? 'add' : 'remove']('reverse');
|
| /sqlite-3.40.0/ext/recover/ |
| H A D | recoverrowid.test | 18 proc recover {db bRowids output} { 19 forcedelete $output
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | testing.css | 50 #test-output { 60 #test-output.reverse {
|
| /sqlite-3.40.0/src/ |
| H A D | shell.c.in | 474 ** Render output like fprintf(). Except, if the output is going to the 476 ** output from UTF-8 into MBCS. 1093 /* A single line in the EQP output */ 1514 ** Save or restore the current output mode 2543 ** output onto the end of a ShellText object. 3424 ** any output. 4415 " from the \".mode\" output mode", 4438 ".mode MODE ?OPTIONS? Set output mode", 4489 ".output ?FILE? Send output to FILE or stdout if FILE is omitted", 5852 ** Change the output file back to stdout. [all …]
|
| /sqlite-3.40.0/ext/fts5/test/ |
| H A D | fts5unicode.test | 24 proc tokenize_test {tn tokenizer input output} { 31 }] [list {*}$output]]
|