Home
last modified time | relevance | path

Searched refs:totalMemory (Results 1 – 15 of 15) sorted by relevance

/expo/packages/expo-device/src/__tests__/
H A DExpoDevice-test.web.ts22 expect(ExpoDevice.totalMemory).toBe(8589934592);
26 expect(ExpoDevice.totalMemory).toBe(null);
/expo/apps/test-suite/tests/
H A DDevice.js30 const totalMemory = Device.totalMemory;
46 t.expect(totalMemory).toBeDefined();
47 t.expect(typeof totalMemory).toEqual('number');
126 const totalMemory = await Device.totalMemory;
147 t.expect(totalMemory).toBeDefined();
148 t.expect(typeof totalMemory).toEqual('number');
/expo/packages/expo-device/build/
H A DDevice.js102 export const totalMemory = ExpoDevice ? ExpoDevice.totalMemory : null; constant
H A DExpoDevice.web.d.ts9 readonly totalMemory: number | null; constant
H A DDevice.d.ts100 export declare const totalMemory: number | null; constant
H A DExpoDevice.web.js47 get totalMemory() {
H A DExpoDevice.web.js.map1 …t deviceType(): DeviceType {\n return getDeviceType();\n },\n get totalMemory(): number | nul…
H A DDevice.js.map1 …```js\n * Device.totalMemory; // 17179869184\n * ```\n */\nexport const totalMemory: number | null…
/expo/packages/expo-device/src/
H A DDevice.ts114 export const totalMemory: number | null = ExpoDevice ? ExpoDevice.totalMemory : null; constant
H A DExpoDevice.web.ts54 get totalMemory(): number | null {
/expo/apps/native-component-list/src/screens/
H A DDeviceScreen.tsx75 <DeviceConstants name="Device total Memory" value={Device.totalMemory} />
/expo/packages/expo-device/
H A DCHANGELOG.md129 - Added `totalMemory` to web. ([#12526](https://github.com/expo/expo/pull/12526) by [@EvanBacon](ht…
/expo/docs/pages/versions/v46.0.0/sdk/
H A Ddevice.mdx97 ### `Device.totalMemory`
104 Device.totalMemory; // 17179869184
/expo/ios/versioned/sdk47/EXDevice/EXDevice/
H A DABI47_0_0EXDevice.m44 @"totalMemory": @(NSProcessInfo.processInfo.physicalMemory),
/expo/packages/jest-expo/src/preset/
H A DexpoModules.js706 totalMemory: { type: 'number', mock: 17179869184 }, property