Searched refs:stopObserving (Results 1 – 25 of 249) sorted by relevance
12345678910
| /expo/packages/expo-sensors/src/__tests__/ |
| H A D | DeviceSensor-test.android.ts | 9 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 19 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 21 expect(nativeModule.stopObserving).toHaveBeenCalledTimes(1); 29 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 38 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 40 expect(nativeModule.stopObserving).toHaveBeenCalledTimes(1);
|
| H A D | DeviceSensor-test.ios.ts | 30 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 40 expect(nativeModule.stopObserving).not.toHaveBeenCalled(); 42 expect(nativeModule.stopObserving).not.toHaveBeenCalled();
|
| /expo/packages/expo-modules-core/src/ |
| H A D | EventEmitter.ts | 9 stopObserving?: () => void; 78 if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) { 79 this._nativeModule.stopObserving(); 104 if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) { 105 this._nativeModule.stopObserving();
|
| /expo/packages/expo-modules-core/src/__tests__/ |
| H A D | EventEmitter-test.ts | 127 expect(mockNativeModule.stopObserving).not.toHaveBeenCalled(); 129 expect(mockNativeModule.stopObserving).not.toHaveBeenCalled(); 131 expect(mockNativeModule.stopObserving).toHaveBeenCalledTimes(1); 141 expect(mockNativeModule.stopObserving).toHaveBeenCalledTimes(1); 153 expect(mockNativeModule.stopObserving).toHaveBeenCalledTimes(1); 169 expect(mockNativeModule.stopObserving).not.toHaveBeenCalled(); 172 expect(mockNativeModule.stopObserving).toHaveBeenCalledTimes(1); 179 stopObserving: jest.fn(),
|
| /expo/packages/expo-modules-core/build/ |
| H A D | EventEmitter.js | 44 if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) { 45 this._nativeModule.stopObserving(); 66 if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) { 67 this._nativeModule.stopObserving();
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | FileNotifier.ts | 17 instance.stopObserving(); 56 public stopObserving() {
|
| /expo/packages/expo-sensors/src/ |
| H A D | ExponentPedometer.web.ts | 9 stopObserving() {},
|
| H A D | ExponentMagnetometerUncalibrated.web.ts | 9 stopObserving() {},
|
| H A D | ExpoBarometer.web.ts | 9 stopObserving() {},
|
| H A D | ExpoLightSensor.web.ts | 9 stopObserving() {},
|
| H A D | ExpoLightSensor.ios.ts | 10 stopObserving() {},
|
| /expo/packages/expo-sensors/build/ |
| H A D | ExpoLightSensor.web.js | 9 stopObserving() { },
|
| H A D | ExponentPedometer.web.js | 9 stopObserving() { },
|
| H A D | ExponentMagnetometerUncalibrated.web.js | 9 stopObserving() { },
|
| H A D | ExpoBarometer.web.js | 9 stopObserving() { },
|
| H A D | ExpoBarometer.web.d.ts | 5 stopObserving(): void; constant
|
| H A D | ExpoLightSensor.ios.js | 10 stopObserving() { },
|
| H A D | ExponentMagnetometerUncalibrated.web.d.ts | 5 stopObserving(): void; constant
|
| H A D | ExpoLightSensor.web.d.ts | 5 stopObserving(): void; constant
|
| H A D | ExponentPedometer.web.d.ts | 5 stopObserving(): void; constant
|
| /expo/packages/expo/build/environment/ |
| H A D | DevLoadingViewNativeModule.js | 4 stopObserving() { }, method
|
| H A D | DevLoadingViewNativeModule.d.ts | 4 stopObserving(): void;
|
| /expo/packages/expo/src/environment/ |
| H A D | DevLoadingViewNativeModule.ts | 4 stopObserving() {},
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/sensors/modules/ |
| H A D | BarometerModule.kt | 37 fun stopObserving(promise: Promise) { in stopObserving() method 38 super.stopObserving() in stopObserving()
|
| H A D | LightSensorModule.kt | 36 fun stopObserving(promise: Promise) { in stopObserving() method 37 super.stopObserving() in stopObserving()
|
12345678910