Home
last modified time | relevance | path

Searched refs:removeIntIndex (Results 1 – 11 of 11) sorted by relevance

/third_party/ejdb/src/bindings/ejdb2_react_native/binding/
Dindex.js624 removeIntIndex(collection, path, unique) { method in EJDB2
625 return ejdb2.removeIntIndex(this._db, collection, path, unique).then(_ => this);
Dindex.d.ts336 removeIntIndex(collection: string, path: string, unique?: boolean): Promise<void>;
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift201 execute(mc, removeIntIndex) in handle()
382 func removeIntIndex(_ mc: DbMethodCall) throws { in removeIntIndex() function
386 try mc.db.removeIntIndex(coll, path, unique: unique) in removeIntIndex()
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java192 …public void removeIntIndex(Integer handle, String collection, String path, Boolean unique, Promise… in removeIntIndex() method in EJDB2DBModule
194 db.removeIntIndex(collection, path, unique); in removeIntIndex()
/third_party/ejdb/src/bindings/ejdb2_node/
Dindex.d.ts428 removeIntIndex(collection: string, path: string, unique?: boolean): Promise<void>;
Dindex.js652 removeIntIndex(collection, path, unique) { method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java51 methods.put("removeIntIndex", thread(Ejdb2FlutterPlugin::removeIntIndex));
297 private static void removeIntIndex(DbMethodCall mc) { in removeIntIndex() method in Ejdb2FlutterPlugin
301 mc.getDb().removeIntIndex(coll, path, unique); in removeIntIndex()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DEJDB2.java342 …public EJDB2 removeIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in removeIntIndex() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DEJDB2.java450 …public EJDB2 removeIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in removeIntIndex() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/
Dejdb2_flutter.dart445 Future<void> removeIntIndex(String coll, String path, [bool unique]) =>
446 _mc.invokeMethod('removeIntIndex', [_handle, coll, path, unique ?? false]);
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Dejdb2_dart.dart523 Future<void> removeIntIndex(String collection, String path, {bool unique = false}) {