Searched refs:totalMemory (Results 1 – 15 of 15) sorted by relevance
22 expect(ExpoDevice.totalMemory).toBe(8589934592);26 expect(ExpoDevice.totalMemory).toBe(null);
30 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');
102 export const totalMemory = ExpoDevice ? ExpoDevice.totalMemory : null; constant
9 readonly totalMemory: number | null; constant
100 export declare const totalMemory: number | null; constant
47 get totalMemory() {
1 …t deviceType(): DeviceType {\n return getDeviceType();\n },\n get totalMemory(): number | nul…
1 …```js\n * Device.totalMemory; // 17179869184\n * ```\n */\nexport const totalMemory: number | null…
114 export const totalMemory: number | null = ExpoDevice ? ExpoDevice.totalMemory : null; constant
54 get totalMemory(): number | null {
75 <DeviceConstants name="Device total Memory" value={Device.totalMemory} />
129 - Added `totalMemory` to web. ([#12526](https://github.com/expo/expo/pull/12526) by [@EvanBacon](ht…
97 ### `Device.totalMemory`104 Device.totalMemory; // 17179869184
44 @"totalMemory": @(NSProcessInfo.processInfo.physicalMemory),
706 totalMemory: { type: 'number', mock: 17179869184 }, property