/third_party/ejdb/src/bindings/ejdb2_react_native/binding/ |
D | index.js | 648 removeFloatIndex(collection, path, unique) { method in EJDB2 649 return ejdb2.removeFloatIndex(this._db, collection, path, unique).then(_ => this);
|
D | index.d.ts | 346 removeFloatIndex(collection: string, path: string, unique?: boolean): Promise<void>;
|
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/ |
D | SwiftEjdb2FlutterPlugin.swift | 195 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/ |
D | EJDB2DBModule.java | 208 …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/ |
D | index.d.ts | 438 removeFloatIndex(collection: string, path: string, unique?: boolean): Promise<void>;
|
D | index.js | 676 removeFloatIndex(collection, path, unique) { method in EJDB2
|
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/ |
D | Ejdb2FlutterPlugin.java | 49 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/ |
D | EJDB2.java | 362 …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/ |
D | EJDB2.java | 470 …public EJDB2 removeFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in removeFloatIndex() method in EJDB2
|
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/ |
D | ejdb2_flutter.dart | 451 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/ |
D | ejdb2_dart.dart | 533 Future<void> removeFloatIndex(String collection, String path, {bool unique = false}) {
|