Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 24 of 24) sorted by relevance

/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js132 let fn = opt.filename, vfsName = opt.vfs, flagsStr = opt.flags;
392 const opt = out.opt;
395 if(!opt.resultRows) opt.resultRows = [];
399 if(!opt.saveSql) opt.saveSql = [];
409 if(opt.callback || opt.resultRows){
426 }else if('string'===typeof opt.rowMode && opt.rowMode.length>1){
767 const opt = arg.opt;
770 Array.isArray(opt.resultRows) ? opt.resultRows : undefined;
772 let bind = opt.bind;
939 opt = name;
[all …]
H A Dsqlite3-opfs-async-proxy.js791 const opt = data.args;
792 state.littleEndian = opt.littleEndian;
793 state.asyncS11nExceptions = opt.asyncS11nExceptions;
794 state.verbose = opt.verbose ?? 2;
795 state.fileBufferSize = opt.fileBufferSize;
796 state.sabS11nOffset = opt.sabS11nOffset;
797 state.sabS11nSize = opt.sabS11nSize;
798 state.sabOP = opt.sabOP;
800 state.sabIO = opt.sabIO;
803 state.opIds = opt.opIds;
[all …]
H A Dsqlite3-api-opfs.js1040 const dir = opfsUtil.rootDirectory, opt = {recurse: true}; variable
1042 dir.removeEntry(handle.name, opt);
1117 opfsUtil.traverse = async function(opt){ argument
1122 if('function'===typeof opt){
1123 opt = {callback:opt}; variable
1125 opt = Object.assign(defaultOpt, opt||{});
1129 else if(opt.recursive && 'directory' === handle.kind){
1134 doDir(opt.directory, 0);
1142 const opt = sqlite3.oo1.DB.dbCtorHelper.normalizeArgs(...args);
1143 opt.vfs = opfsVfs.$zName;
[all …]
H A Dsqlite3-api-prologue.js837 f._opt = function(opt, rv){ argument
838 const m = f._rx.exec(opt);
839 rv[0] = (m ? m[1] : opt);
H A Dsqlite3-api-worker1.js367 open: function(opt){ argument
368 const db = new DB(opt);
/sqlite-3.40.0/ext/wasm/
H A Dbatch-runner.js326 let opt;
328 opt = document.createElement('option');
330 opt.value = '';
331 opt.disabled = true;
332 opt.selected = true;
333 sel.appendChild(opt);
337 opt = document.createElement('option');
338 opt.value = fn;
339 opt.innerText = fn.split('/').pop();
340 sel.appendChild(opt);
[all …]
H A Dtester1.js279 const opt = arguments[0];
280 predicate = opt.predicate;
281 name = opt.name;
282 callback = opt.test;
/sqlite-3.40.0/src/
H A Dctime.c37 #define CTIMEOPT_VAL_(opt) #opt argument
38 #define CTIMEOPT_VAL(opt) CTIMEOPT_VAL_(opt) argument
44 #define CTIMEOPT_VAL2(opt) CTIMEOPT_VAL2_(opt) argument
H A Dshell.c.in10457 unsigned int opt = (unsigned int)strtol(azArg[2], 0, 0); local
10458 rc2 = sqlite3_test_control(testctrl, p->db, opt);
10477 rc2 = sqlite3_test_control(testctrl, opt);
10507 int opt = booleanValue(azArg[2]); local
10508 rc2 = sqlite3_test_control(testctrl, opt);
10517 int opt = booleanValue(azArg[2]); local
10518 rc2 = sqlite3_test_control(testctrl, opt);
10585 int opt = (unsigned int)integerValue(azArg[2]); local
10586 rc2 = sqlite3_test_control(testctrl, p->db, opt);
10765 #define CTIMEOPT_VAL_(opt) #opt argument
[all …]
/sqlite-3.40.0/tool/
H A Domittest-msvc.tcl87 foreach opt $OPTIONS {
88 if {[regexp x $opt]} continue
89 if {[string compare $opt $start]<0} continue
92 append cmd " CCOPTS=-D$opt"
/sqlite-3.40.0/ext/fts5/tool/
H A Dfts5txt2db.tcl120 set opt [lindex $lArgs $i]
121 if {[string range $opt 0 0]!="-" || $opt=="--"} break
122 set c [array names idx "${opt}*"]
123 if {[llength $c]==0} { cmdline_error $O $E "Unrecognized option: $opt"}
124 if {[llength $c]>1} { cmdline_error $O $E "Ambiguous option: $opt"}
/sqlite-3.40.0/test/
H A Dctime.test68 foreach {tn opt res} {
77 SELECT sqlite_compileoption_used($opt)
215 foreach opt $opts {
223 SELECT sqlite_compileoption_used($opt);
225 list [ lindex $ans1 0 ] [ expr { [lindex $ans1 1]==$opt } ] \
H A Dwapptest.tcl432 proc generate_select_widget {label id lOpt opt} { argument
837 set opt [lindex $lTestArg $i]
838 if {[string range $opt 0 1]=="--"} {
839 set opt [string range $opt 1 end]
841 switch -- $opt {
H A Dtestrunner.tcl477 set rc [catch { interp eval tinterp $script } msg opt]
480 puts_into_caller [dict get $opt -errorinfo]
H A Dtester.tcl1831 set opt [lindex $args $ii]
1837 default { error "unrecognized option: $opt" }
/sqlite-3.40.0/ext/wasm/fiddle/
H A Dfiddle-worker.js276 const opt = ev.data;
277 let buffer = opt.buffer;
286 opt.filename
287 ? opt.filename.split(/[/\\]/).pop().replace('"','_')
/sqlite-3.40.0/ext/fts5/test/
H A Dfts5config.test41 foreach {tn opt} {
51 do_catchsql_test 2.$tn "CREATE VIRTUAL TABLE f1 USING fts5(x, $opt)" $res
233 foreach {tn opt} {
242 do_catchsql_test 11.$tn "CREATE VIRTUAL TABLE f1 USING fts5(x, $opt)" $res
H A Dfts5tokenizer.test140 CREATE VIRTUAL TABLE a3 USING fts5(x, y, tokenize = 'ascii opt arg');
/sqlite-3.40.0/autoconf/tea/win/
H A Dmakefile.vc278 ldebug = -release -opt:ref -opt:icf,3
290 lflags = $(lflags) -opt:nowin98
H A Drules.vc193 !if [nmakehlp -l -opt:nowin98]
/sqlite-3.40.0/autoconf/tea/
H A DREADME13 example will install the extension in the /opt/tcl directory.
16 $ ./configure --prefix=/opt/tcl
/sqlite-3.40.0/ext/fts2/
H A Dfts2_icu.c105 const int32_t opt = U_FOLD_CASE_DEFAULT; in icuOpen() local
135 c = u_foldCase(c, opt); in icuOpen()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_icu.c103 const int32_t opt = U_FOLD_CASE_DEFAULT; in icuOpen() local
136 c = u_foldCase(c, opt); in icuOpen()
/sqlite-3.40.0/
H A Dltmain.sh733 opt="$1"
736 case $opt in
739 --debug) preserve_args="$preserve_args $opt"
767 *) func_error "invalid argument for $opt"
780 --quiet|--silent) preserve_args="$preserve_args $opt"
784 --verbose| -v) preserve_args="$preserve_args $opt"
788 --tag) test "$#" -eq 0 && func_missing_arg "$opt" && break
789 preserve_args="$preserve_args $opt $1"
796 func_opt_split "$opt"
805 -*) func_fatal_help "unrecognized option \`$opt'" ;;
[all …]