Home
last modified time | relevance | path

Searched refs:StructType (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/wasm/jaccwabyt/
H A Djaccwabyt.js509 const StructType = function ctor(structName, structInfo){ class in self.Jaccwabyt
525 StructType.prototype = Object.create(null, { class
551 Object.defineProperties(StructType, {
554 isA: rop((v)=>v instanceof StructType),
555 hasExternalPointer: rop((v)=>(v instanceof StructType) && !!v[xPtrPropName]),
620 rc = StructType.instanceForPointer(rc) || rc;
638 if(isAutoPtrSig(descr.signature) && (v instanceof StructType)){
726 StructCtor.prototype = new StructType(structName, structInfo, rop);
738 StructBinder.instanceForPointer = StructType.instanceForPointer;
739 StructBinder.StructType = StructType;
H A Djaccwabyt.md109 BST: box same "StructType<T>" fit at 1.5 e of BSBF
134 **[`StructBinder.StructType`][StructType]** and are used to instantiate...
347 [`(y instanceof StructType)`][StructType] then the value of `y.pointer` is
535 a separate [StructType][] instance.
560 [StructType][] for which this Struct Binder has created a
599 [StructBinder][]_ as this StructType.
661 Works identically to `StructBinder.StructType.memberKey()`.
760 Works exactly as documented for [StructType][].
763 Works exactly as documented for [StructType][].
889 [StructType][].
[all …]
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js623 const StructType = S.StructBinder.StructType;
636 assert(k1 instanceof StructType).
637 assert(StructType.isA(k1)).
640 assert(k1 === StructType.instanceForPointer(k1.pointer)).
709 assert(wts instanceof StructType).
710 assert(StructType.isA(wts)).
711 assert(wts === StructType.instanceForPointer(wts.pointer));
985 T.assert(dVfs instanceof SB.StructType)
989 .assert(SB.StructType.hasExternalPointer(dVfs))
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-glue.js45 if(v && v.constructor && v instanceof StructBinder.StructType){
H A Dsqlite3-api-opfs.js596 if(!(tgt instanceof sqlite3.StructBinder.StructType)){