Home
last modified time | relevance | path

Searched refs:stopObserving (Results 1 – 25 of 249) sorted by relevance

12345678910

/expo/packages/expo-sensors/src/__tests__/
H A DDeviceSensor-test.android.ts9 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 DDeviceSensor-test.ios.ts30 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 DEventEmitter.ts9 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 DEventEmitter-test.ts127 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 DEventEmitter.js44 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 DFileNotifier.ts17 instance.stopObserving();
56 public stopObserving() {
/expo/packages/expo-sensors/src/
H A DExponentPedometer.web.ts9 stopObserving() {},
H A DExponentMagnetometerUncalibrated.web.ts9 stopObserving() {},
H A DExpoBarometer.web.ts9 stopObserving() {},
H A DExpoLightSensor.web.ts9 stopObserving() {},
H A DExpoLightSensor.ios.ts10 stopObserving() {},
/expo/packages/expo-sensors/build/
H A DExpoLightSensor.web.js9 stopObserving() { },
H A DExponentPedometer.web.js9 stopObserving() { },
H A DExponentMagnetometerUncalibrated.web.js9 stopObserving() { },
H A DExpoBarometer.web.js9 stopObserving() { },
H A DExpoBarometer.web.d.ts5 stopObserving(): void; constant
H A DExpoLightSensor.ios.js10 stopObserving() { },
H A DExponentMagnetometerUncalibrated.web.d.ts5 stopObserving(): void; constant
H A DExpoLightSensor.web.d.ts5 stopObserving(): void; constant
H A DExponentPedometer.web.d.ts5 stopObserving(): void; constant
/expo/packages/expo/build/environment/
H A DDevLoadingViewNativeModule.js4 stopObserving() { }, method
H A DDevLoadingViewNativeModule.d.ts4 stopObserving(): void;
/expo/packages/expo/src/environment/
H A DDevLoadingViewNativeModule.ts4 stopObserving() {},
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/sensors/modules/
H A DBarometerModule.kt37 fun stopObserving(promise: Promise) { in stopObserving() method
38 super.stopObserving() in stopObserving()
H A DLightSensorModule.kt36 fun stopObserving(promise: Promise) { in stopObserving() method
37 super.stopObserving() in stopObserving()

12345678910