Home
last modified time | relevance | path

Searched refs:resize (Results 1 – 25 of 161) sorted by relevance

1234567

/expo/packages/expo-image-manipulator/build/
H A Dvalidators.js66 const isValid = typeof action.resize === 'object' &&
67 action.resize !== null &&
68 (typeof action.resize.width === 'number' || typeof action.resize.width === 'undefined') &&
69 (typeof action.resize.height === 'number' || typeof action.resize.height === 'undefined');
H A DExpoImageManipulator.web.js1 import { crop, flip, resize, rotate } from './actions/index.web';
51 return resize(canvas, action.resize);
H A DImageManipulator.types.d.ts27 resize: {
H A Dvalidators.js.map1resize'];\n const actionKeys = Object.keys(action);\n if (actionKeys.length !== 1) {\n …
/expo/packages/expo-image-manipulator/src/
H A Dvalidators.ts88 typeof action.resize === 'object' &&
89 action.resize !== null &&
90 (typeof action.resize.width === 'number' || typeof action.resize.width === 'undefined') &&
91 (typeof action.resize.height === 'number' || typeof action.resize.height === 'undefined');
H A DExpoImageManipulator.web.ts2 import { crop, flip, resize, rotate } from './actions/index.web';
60 return resize(canvas, action.resize);
H A DImageManipulator.types.ts30 resize: {
/expo/packages/expo-image-manipulator/src/__tests__/
H A Dvalidators-test.ts114 resize: {
127 resize: {
137 resize: {
147 resize: {
/expo/apps/test-suite/tests/
H A DImageManipulator.js20 { resize: { width: 100, height: 100 } }, property
32 [{ resize: { width: 100, height: 100 } }] property
42 { resize: { width: 100, height: 100 } }, property
55 [{ resize: { width: 100, height: 100 } }], property
71 [{ resize: { width: 100, height: 100 } }], property
87 [{ resize: { width: 100, height: 100 } }], property
144 { resize: { width: 100, height: 100 } }, property
160 { resize: { width: 200, height: 200 } }, property
/expo/packages/expo-image-manipulator/ios/
H A DImageManipulations.swift14 if let resize = action.resize { in manipulate() variable
15 image = try manipulate(image: image, resize: resize) in manipulate()
30 internal func manipulate(image: UIImage, resize: ResizeOptions) throws -> UIImage { in manipulate()
37 if let width = resize.width { in manipulate()
41 if let height = resize.height { in manipulate()
/expo/ios/versioned/sdk49/ExpoImageManipulator/
H A DImageManipulations.swift14 if let resize = action.resize { in manipulate() variable
15 image = try manipulate(image: image, resize: resize) in manipulate()
30 internal func manipulate(image: UIImage, resize: ResizeOptions) throws -> UIImage { in manipulate()
37 if let width = resize.width { in manipulate()
41 if let height = resize.height { in manipulate()
/expo/ios/versioned/sdk48/ExpoImageManipulator/
H A DImageManipulations.swift14 if let resize = action.resize { in manipulate() variable
15 image = try manipulate(image: image, resize: resize) in manipulate()
30 internal func manipulate(image: UIImage, resize: ResizeOptions) throws -> UIImage { in manipulate()
37 if let width = resize.width { in manipulate()
41 if let height = resize.height { in manipulate()
/expo/ios/versioned/sdk47/ExpoImageManipulator/
H A DImageManipulations.swift14 if let resize = action.resize { in manipulate() variable
15 image = try manipulate(image: image, resize: resize) in manipulate()
30 internal func manipulate(image: UIImage, resize: ResizeOptions) throws -> UIImage { in manipulate()
37 if let width = resize.width { in manipulate()
41 if let height = resize.height { in manipulate()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementView.java40 RNSharedElementResize resize, in updateViewAndDrawable() argument
46 boolean useGPUScaling = (resize != RNSharedElementResize.CLIP) && in updateViewAndDrawable()
74 switch (resize) { in updateViewAndDrawable()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementView.java40 RNSharedElementResize resize, in updateViewAndDrawable() argument
46 boolean useGPUScaling = (resize != RNSharedElementResize.CLIP) && in updateViewAndDrawable()
74 switch (resize) { in updateViewAndDrawable()
/expo/packages/expo-image-manipulator/src/actions/
H A Dindex.web.ts3 export { default as resize } from './ResizeAction.web';
/expo/packages/expo-image-manipulator/build/actions/
H A Dindex.web.d.ts3 export { default as resize } from './ResizeAction.web';
H A Dindex.web.js3 export { default as resize } from './ResizeAction.web';
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/mapbuffer/
H A DABI48_0_0MapBufferBuilder.cpp85 dynamicData_.resize(offset + INT_SIZE + strSize, 0); in putString()
103 dynamicData_.resize(offset + INT_SIZE + mapBufferSize, 0); in putMapBuffer()
125 dynamicData_.resize(offset + INT_SIZE, 0); in putMapBufferList()
131 dynamicData_.resize(dynamicDataSize + INT_SIZE + mapBufferSize, 0); in putMapBufferList()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/mapbuffer/
H A DABI49_0_0MapBufferBuilder.cpp85 dynamicData_.resize(offset + INT_SIZE + strSize, 0); in putString()
103 dynamicData_.resize(offset + INT_SIZE + mapBufferSize, 0); in putMapBuffer()
125 dynamicData_.resize(offset + INT_SIZE, 0); in putMapBufferList()
131 dynamicData_.resize(dynamicDataSize + INT_SIZE + mapBufferSize, 0); in putMapBufferList()
/expo/packages/expo-video/ios/
H A DVideoContentFit.swift36 return .resize in toVideoGravity()
/expo/packages/expo-image/ios/
H A DImageUtils.swift96 func resize(animatedImage image: UIImage, toSize size: CGSize, scale: Double) async -> UIImage { in resize() function
101 return resize(image: image, toSize: size, scale: scale) in resize()
110 return resize(image: image, toSize: size, scale: scale) in resize()
116 func resize(image: UIImage, toSize size: CGSize, scale: Double) -> UIImage { in resize() function
/expo/ios/versioned/sdk49/ExpoImage/
H A DImageUtils.swift96 func resize(animatedImage image: UIImage, toSize size: CGSize, scale: Double) async -> UIImage { in resize() function
101 return resize(image: image, toSize: size, scale: scale) in resize()
110 return resize(image: image, toSize: size, scale: scale) in resize()
116 func resize(image: UIImage, toSize size: CGSize, scale: Double) -> UIImage { in resize() function
/expo/ios/versioned/sdk48/ExpoImage/
H A DImageUtils.swift96 func resize(animatedImage image: UIImage, toSize size: CGSize, scale: Double) async -> UIImage { in resize() function
101 return resize(image: image, toSize: size, scale: scale) in resize()
110 return resize(image: image, toSize: size, scale: scale) in resize()
116 func resize(image: UIImage, toSize size: CGSize, scale: Double) -> UIImage { in resize() function
/expo/packages/@expo/config-plugins/src/android/
H A DWindowSoftInputMode.ts11 resize: 'adjustResize',

1234567