Home
last modified time | relevance | path

Searched refs:CameraManager (Results 1 – 13 of 13) sorted by relevance

/expo/packages/expo-camera/build/
H A DCamera.js5 import CameraManager from './ExponentCameraManager';
49 if (!CameraManager.isAvailableAsync) {
77 Type: CameraManager.Type,
78 FlashMode: CameraManager.FlashMode,
79 AutoFocus: CameraManager.AutoFocus,
83 VideoCodec: CameraManager.VideoCodec,
92 type: CameraManager.Type.back,
237 if (!CameraManager.record) {
247 if (!CameraManager.stopRecording) {
256 if (!CameraManager.pausePreview) {
[all …]
H A DExponentCameraManager.d.ts1 declare const CameraManager: Record<string, any>; constant
2 export default CameraManager;
H A DExponentCameraManager.js2 const CameraManager = requireNativeModule('ExponentCamera'); constant
3 export default CameraManager;
H A DExponentCameraManager.js.map1 …odules-core';\n\nconst CameraManager: Record<string, any> = requireNativeModule('ExponentCamera');…
H A DCamera.js.map1CameraManager from './ExponentCameraManager';\nimport { ConversionTables, ensureNativeProps } from…
H A DExponentCamera.web.js6 import CameraManager from './ExponentCameraManager.web';
76 const isFrontFacingCamera = native.type === CameraManager.Type.front;
H A DExponentCamera.web.js.map1CameraManager from './ExponentCameraManager.web';\nimport { capture } from './WebCameraUtils';\nim…
/expo/packages/expo-camera/build/utils/
H A Dprops.js2 import CameraManager from '../ExponentCameraManager';
5 type: CameraManager.Type,
6 flashMode: CameraManager.FlashMode,
7 autoFocus: CameraManager.AutoFocus,
8 whiteBalance: CameraManager.WhiteBalance,
H A Dprops.js.map1CameraManager from '../ExponentCameraManager';\n\n// Values under keys from this object will be tr…
/expo/packages/expo-camera/src/utils/
H A Dprops.ts11 import CameraManager from '../ExponentCameraManager';
20 type: CameraManager.Type,
21 flashMode: CameraManager.FlashMode,
22 autoFocus: CameraManager.AutoFocus,
23 whiteBalance: CameraManager.WhiteBalance,
/expo/packages/expo-camera/src/
H A DCamera.tsx75 if (!CameraManager.isAvailableAsync) {
109 Type: CameraManager.Type,
110 FlashMode: CameraManager.FlashMode,
111 AutoFocus: CameraManager.AutoFocus,
115 VideoCodec: CameraManager.VideoCodec,
126 type: CameraManager.Type.back,
127 autoFocus: CameraManager.AutoFocus.on,
290 if (!CameraManager.record) {
302 if (!CameraManager.stopRecording) {
313 if (!CameraManager.pausePreview) {
[all …]
H A DExponentCameraManager.ts3 const CameraManager: Record<string, any> = requireNativeModule('ExponentCamera'); constant
5 export default CameraManager;
H A DExponentCamera.web.tsx12 import CameraManager from './ExponentCameraManager.web';
111 const isFrontFacingCamera = native.type === CameraManager.Type.front;