Home
last modified time | relevance | path

Searched refs:isDownloading (Results 1 – 23 of 23) sorted by relevance

/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/
H A DUpdatesStateMachine.swift157 let isDownloading: Bool variable
170 "isDownloading": self.isDownloading,
186 self.isDownloading = false
207 var isDownloading: Bool = false variable
219 self.isDownloading = original.isDownloading
233 isDownloading: isDownloading, in toContext()
353 $0.isDownloading = true in reducedContext()
357 $0.isDownloading = false in reducedContext()
366 $0.isDownloading = false in reducedContext()
/expo/packages/expo-updates/src/statemachine/
H A DUpdatesStateMachine.ts41 isDownloading: boolean; property
81 isDownloading: () => false,
91 isDownloading: () => false,
99 isDownloading: (context: UpdatesStateMachineContext) => true,
111 isDownloading: false,
/expo/packages/expo-updates/ios/EXUpdates/
H A DUpdatesStateMachine.swift177 let isDownloading: Bool variable
199 "isDownloading": self.isDownloading,
217 self.isDownloading = false
240 var isDownloading: Bool = false variable
254 self.isDownloading = original.isDownloading
270 isDownloading: isDownloading, in toContext()
403 $0.isDownloading = true in reducedContext()
407 $0.isDownloading = false in reducedContext()
416 $0.isDownloading = false in reducedContext()
/expo/packages/expo-updates/src/
H A DUseUpdatesUtils.ts31 isDownloading: boolean;
62 isDownloading: false, constant
87 isDownloading: context.isDownloading,
H A DUseUpdates.types.ts163 isDownloading: boolean;
H A DUpdates.types.ts327 isDownloading: boolean;
/expo/packages/expo-updates/build/statemachine/
H A DUpdatesStateMachine.js38 isDownloading: () => false,
44 isDownloading: () => false,
50 isDownloading: (context) => true,
61 isDownloading: false, property
H A DUpdatesStateMachine.d.ts36 isDownloading: boolean; property
H A DUpdatesStateMachine.js.map1isDownloading: boolean;\n isRollback: boolean;\n downloadedManifest?: Manifest;\n checkError?: …
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/statemachine/
H A DUpdatesStateMachine.kt134 is UpdatesStateEvent.Download -> context.copy(isDownloading = true) in reduceContext()
136 isDownloading = false, in reduceContext()
141 isDownloading = false, in reduceContext()
146 isDownloading = false, in reduceContext()
155 isDownloading = false, in reduceContext()
H A DUpdatesStateContext.kt18 val isDownloading: Boolean = false, constant in expo.modules.updates.statemachine.UpdatesStateContext
34 "isDownloading" to isDownloading,
77 putBoolean("isDownloading", isDownloading) in <lambda>()
/expo/packages/expo-updates/build/
H A DUseUpdatesUtils.js35 isDownloading: false, property
56 isDownloading: context.isDownloading,
H A DUseUpdatesUtils.d.ts13 isDownloading: boolean;
H A DUseUpdates.types.d.ts157 isDownloading: boolean;
H A DUseUpdatesUtils.js.map1isDownloading: boolean;\n lastCheckForUpdateTimeSinceRestart?: Date;\n};\n\n// Constructs an Upda…
H A DUpdates.types.d.ts296 isDownloading: boolean;
H A DUseUpdates.types.js.map1 …the app is currently downloading an update from the server.\n */\n isDownloading: boolean;\n /…
H A DUpdates.types.js.map1 …ble: boolean;\n isUpdatePending: boolean;\n isChecking: boolean;\n isDownloading: boolean;\n i…
/expo/packages/expo-updates/src/__tests__/
H A DUseUpdates-test.ios.tsx39 isDownloading: false,
49 isDownloading: false,
60 isDownloading: false,
70 isDownloading: false,
81 isDownloading: true,
91 isDownloading: false,
103 isDownloading: false,
114 isDownloading: false,
/expo/packages/expo-updates/src/__mocks__/
H A DExpoUpdates.ts11 isDownloading: false,
/expo/packages/expo-updates/e2e/fixtures/
H A DApp-apitest.tsx47 isDownloading,
65 const downloadingMessage = isDownloading ? 'Downloading...\n' : '';
91 isDownloading,
/expo/packages/expo-updates/src/statemachine/__tests__/
H A DUpdatesStateMachine-test.node.ts53 expect(state.context.isDownloading).toBe(true);
/expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/
H A DUpdatesStateMachineInstrumentationTest.kt98 Assert.assertFalse(machine.context.isDownloading) in test_handleDownloadAndDownloadComplete()