| /sqlite-3.40.0/ext/wasm/ |
| H A D | fiddle.make | 53 fiddle-module.js := $(dir.fiddle)/fiddle-module.js 54 fiddle-module.wasm := $(subst .js,.wasm,$(fiddle-module.js)) 61 $(eval $(call call-make-pre-js,fiddle-module)) 62 $(fiddle-module.js): $(MAKEFILE) $(MAKEFILE.fiddle) \ 66 $(pre-post-common.flags) $(pre-post-fiddle-module.flags) \ 68 $(maybe-wasm-strip) $(fiddle-module.wasm) 70 gzip < $(fiddle-module.wasm) > $(fiddle-module.wasm).gz 77 rm -f $(fiddle-module.js) $(fiddle-module.js).gz \ 78 $(fiddle-module.wasm) $(fiddle-module.wasm).gz \ 80 $(dir.fiddle)/fiddle-module.worker.js \ [all …]
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | rtree2.test | 35 foreach module {rtree_i32 rtree} { 36 if {$module=="rtree_i32"} {set etype INT} {set etype REAL} 39 do_test rtree2-$module.$nDim.1 { 46 CREATE VIRTUAL TABLE t1 USING ${module}(ii, $cols); 51 do_test rtree2-$module.$nDim.2 { 85 do_rtree_integrity_test rtree2-$module.$nDim.3 t1 89 do_test rtree2-$module.$nDim.4.$ii.1 { 122 do_test rtree2-$module.$nDim.5.$ii.1 { 135 do_rtree_integrity_test rtree2-$module.$nDim.5.$ii.2 t1 138 do_test rtree2-$module.$nDim.6 {
|
| H A D | rtreecheck.test | 53 proc setup_simple_db {{module rtree}} { 57 CREATE VIRTUAL TABLE r1 USING $module (id, x1, x2, y1, y2);
|
| H A D | rtreeA.test | 11 # This file contains tests for the r-tree module. Specifically, it tests 13 # module.
|
| /sqlite-3.40.0/test/ |
| H A D | vtab1.test | 62 } {1 {no such module: echo}} 67 } {1 {no such module: echo}} 74 # Register the module 77 # Once a module has been registered, virtual tables using that module 185 } {1 {no such module: echo}} 190 } {1 {no such module: echo}} 195 } {1 {no such module: echo}} 200 } {1 {no such module: echo}} 205 } {1 {no such module: echo}} 210 } {1 {no such module: echo}} [all …]
|
| H A D | fts3dropmod.test | 12 # focus of this script is testing the FTS3 module. 33 } {1 {no such module: fts4}} 42 } {1 {no such module: fts3}}
|
| H A D | vtab7.test | 25 # Register the echo module. Code inside the echo module appends elements 27 # certain module callbacks. This includes the xSync(), xCommit() and 41 # the echo module xSync() callback. 168 # if an attempt to write to a virtual module table or create a new
|
| H A D | vtab_alter.test | 25 # Register the echo module. 27 # This test uses a special feature of the echo module. If the name 92 # Cause an error to occur when the echo module renames its
|
| H A D | fts4merge.test | 37 do_test 1.0 { fts3_build_db_1 -module $mod 1004 } {} 101 fts3_build_db_2 -module $mod 30040 183 fts3_build_db_1 -module $mod 1000 299 fts3_build_db_1 -module $mod 1000
|
| H A D | vtab_shared.test | 43 # Fails because the 'echo' module has not been registered with connection db2 46 } {1 {no such module: echo}} 57 # Works after the module is registered with db2
|
| H A D | fts3_common.tcl | 59 set default(-module) fts4 107 set default(-module) fts4
|
| H A D | pcache.test | 12 # This file is focused on testing the pcache module. 32 # The pcache module limits the number of pages available to purgeable
|
| H A D | fts3fault.test | 26 # function that registers the FTS3 module and various support functions 50 INSERT INTO t1 VALUES('registers the FTS3 module');
|
| H A D | fts3tok_err.test | 13 # that is part of the FTS3 module.
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | emscripten.css | 1 /* emcscript-related styling, used during the module load/intialization processes... */ 5 #module-spinner { overflow: visible; } 6 #module-spinner > * {
|
| /sqlite-3.40.0/ext/wasm/fiddle/ |
| H A D | emscripten.css | 1 /* emcscript-related styling, used during the module load/intialization processes... */ 5 #module-spinner { overflow: visible; } 6 #module-spinner > * {
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | README.md | 54 version of the library against which this module was built. 69 loaded by a client Worker thread. It loads the sqlite3 module 102 Emscripten-provided module loading pieces. 131 `sqlite3InitModule()` function with one which, after the module is 133 module. For example, the OPFS VFS support.
|
| H A D | pre-js.js | 77 .then((arg)=>onSuccess(arg.instance, arg.module)); 83 .then((arg)=>onSuccess(arg.instance, arg.module));
|
| H A D | extern-post-js.js | 97 if (typeof exports === 'object' && typeof module === 'object') 98 module.exports = sqlite3InitModule;
|
| /sqlite-3.40.0/ext/session/ |
| H A D | session3.test | 11 # This file implements regression tests for the session module. More 26 # These tests - session3-1.* - verify that the session module behaves 87 # These tests - session3-2.* - verify that the session module behaves
|
| /sqlite-3.40.0/ext/fts5/test/ |
| H A D | fts5determin.test | 12 # focus of this script is testing the FTS5 module. 14 # Specifically, that the fts5 module is deterministic. At one point, when
|
| /sqlite-3.40.0/doc/ |
| H A D | vdbesort-memory.md | 21 allocation the sorter module makes. After keys are sorted and flushed out to 30 There are no other significant users of heap memory in the sorter module.
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_unicode.c | 384 static const sqlite3_tokenizer_module module = { in sqlite3Fts3UnicodeTokenizer() local 393 *ppModule = &module; in sqlite3Fts3UnicodeTokenizer()
|
| /sqlite-3.40.0/ |
| H A D | ltmain.sh | 4091 module=no 4570 -module) 4571 module=yes 5840 if test "$module" = yes; then 5852 build_libtool_libs=module 6116 test "$module" = no && \ 6802 if test "$module" = yes; then 6817 build_libtool_libs=module 6835 build_libtool_libs=module 7888 if test "$build_libtool_libs" = module; then [all …]
|
| /sqlite-3.40.0/ext/async/ |
| H A D | README.txt | 4 by WAL-mode. This module is no longer supported or maintained. The 79 A more sophisticated module could to keep track of the quantity of 132 in sqlite3async.h to initialize and configure the module.
|