Home
last modified time | relevance | path

Searched refs:dflt (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/wasm/fiddle/
H A Dfiddle.js129 get: (k,dflt)=>$storageHolder.hasOwnProperty(
131 ) ? $storage.getItem(storageKeyPrefix+k) : dflt,
136 getBool: function(k,dflt){
137 return 'true'===this.get(k,''+(!!dflt));
142 getJSON: function f(k,dflt){
145 return x===f ? dflt : JSON.parse(x);
147 catch(e){return dflt}
/sqlite-3.40.0/test/
H A Dwapp.tcl248 proc wapp-param {name {dflt {}}} {
250 if {![dict exists $wapp $name]} {return $dflt}
H A Dincrvacuum.test600 do_test incrvacuum-11.1-av-dflt-on {
606 do_test incrvacuum-11.1-av-dflt-off {
/sqlite-3.40.0/ext/rbu/
H A Drbucrash2.test60 crashsql -file $f -delay $iDelay -tclbody $script -dflt 1 -opendb {} \
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js48 const getOwnOption = (opts, p, dflt)=>{ argument
50 return d ? d.value : dflt;
/sqlite-3.40.0/src/
H A Dpragma.c44 static u8 getSafetyLevel(const char *z, int omitFull, u8 dflt){ in getSafetyLevel() argument
63 return dflt; in getSafetyLevel()
69 u8 sqlite3GetBoolean(const char *z, u8 dflt){ in sqlite3GetBoolean() argument
70 return getSafetyLevel(z,1,dflt)!=0; in sqlite3GetBoolean()