Home
last modified time | relevance | path

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

/third_party/ejdb/src/bindings/ejdb2_react_native/binding/
Dindex.js648 removeFloatIndex(collection, path, unique) { method in EJDB2
649 return ejdb2.removeFloatIndex(this._db, collection, path, unique).then(_ => this);
Dindex.d.ts346 removeFloatIndex(collection: string, path: string, unique?: boolean): Promise<void>;
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift195 execute(mc, removeFloatIndex) in handle()
366 func removeFloatIndex(_ mc: DbMethodCall) throws { in removeFloatIndex() function
370 try mc.db.removeFloatIndex(coll, path, unique: unique) in removeFloatIndex()
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java208 …public void removeFloatIndex(Integer handle, String collection, String path, Boolean unique, Promi… in removeFloatIndex() method in EJDB2DBModule
210 db.removeFloatIndex(collection, path, unique); in removeFloatIndex()
/third_party/ejdb/src/bindings/ejdb2_node/
Dindex.d.ts438 removeFloatIndex(collection: string, path: string, unique?: boolean): Promise<void>;
Dindex.js676 removeFloatIndex(collection, path, unique) { method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java49 methods.put("removeFloatIndex", thread(Ejdb2FlutterPlugin::removeFloatIndex));
281 private static void removeFloatIndex(DbMethodCall mc) { in removeFloatIndex() method in Ejdb2FlutterPlugin
285 mc.getDb().removeFloatIndex(coll, path, unique); in removeFloatIndex()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DEJDB2.java362 …public EJDB2 removeFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in removeFloatIndex() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DEJDB2.java470 …public EJDB2 removeFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in removeFloatIndex() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/
Dejdb2_flutter.dart451 Future<void> removeFloatIndex(String coll, String path, [bool unique]) =>
452 _mc.invokeMethod('removeFloatIndex', [_handle, coll, path, unique ?? false]);
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Dejdb2_dart.dart533 Future<void> removeFloatIndex(String collection, String path, {bool unique = false}) {