| /expo/tools/src/ |
| H A D | Transforms.ts | 19 function isRawTransform(transform: any): transform is RawTransform { 20 return transform.transform; 23 function isReplaceTransform(transform: any): transform is ReplaceTransform { 24 return transform.find !== undefined && transform.replaceWith !== undefined; 52 for (const transform of transforms) { constant 57 transformsUsed.add(transform); 78 transform: FileTransform 84 typeof transform.debug === 'string' ? transform.debug : JSON.stringify(transform, null, 2); 102 if (isRawTransform(transform)) { 103 return transform.transform(input); [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/graphics/ |
| H A D | ABI48_0_0Transform.h | 216 transform.matrix[0], 217 transform.matrix[1], 218 transform.matrix[2], 219 transform.matrix[3], 220 transform.matrix[4], 221 transform.matrix[5], 222 transform.matrix[6], 223 transform.matrix[7], 224 transform.matrix[8], 225 transform.matrix[9], [all …]
|
| H A D | ABI48_0_0Transform.cpp | 47 return transform; in Perspective() 62 return transform; in Scale() 77 return transform; in Translate() 88 return transform; in Skew() 101 return transform; in RotateX() 114 return transform; in RotateY() 127 return transform; in RotateZ() 135 transform = transform * Transform::RotateX(x); in Rotate() 138 transform = transform * Transform::RotateY(y); in Rotate() 141 transform = transform * Transform::RotateZ(z); in Rotate() [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/graphics/ |
| H A D | ABI49_0_0Transform.h | 219 transform.matrix[0], 220 transform.matrix[1], 221 transform.matrix[2], 222 transform.matrix[3], 223 transform.matrix[4], 224 transform.matrix[5], 225 transform.matrix[6], 226 transform.matrix[7], 227 transform.matrix[8], 228 transform.matrix[9], [all …]
|
| H A D | ABI49_0_0Transform.cpp | 47 return transform; in Perspective() 62 return transform; in Scale() 77 return transform; in Translate() 88 return transform; in Skew() 101 return transform; in RotateX() 114 return transform; in RotateY() 127 return transform; in RotateZ() 135 transform = transform * Transform::RotateX(x); in Rotate() 138 transform = transform * Transform::RotateY(y); in Rotate() 141 transform = transform * Transform::RotateZ(z); in Rotate() [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/graphics/ |
| H A D | ABI47_0_0Transform.cpp | 40 return transform; in Perspective() 55 return transform; in Scale() 70 return transform; in Translate() 81 return transform; in Skew() 94 return transform; in RotateX() 107 return transform; in RotateY() 120 return transform; in RotateZ() 128 transform = transform * Transform::RotateX(x); in Rotate() 131 transform = transform * Transform::RotateY(y); in Rotate() 134 transform = transform * Transform::RotateZ(z); in Rotate() [all …]
|
| H A D | ABI47_0_0Transform.h | 201 transform.matrix[0], 202 transform.matrix[1], 203 transform.matrix[2], 204 transform.matrix[3], 205 transform.matrix[4], 206 transform.matrix[5], 207 transform.matrix[6], 208 transform.matrix[7], 209 transform.matrix[8], 210 transform.matrix[9], [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/ |
| H A D | ABI48_0_0RCTConvert+Transform.m | 46 return transform; 79 transform = CATransform3DConcat(next, transform); 84 transform = CATransform3DConcat(next, transform); 88 transform = CATransform3DRotate(transform, rotate, 1, 0, 0); 92 transform = CATransform3DRotate(transform, rotate, 0, 1, 0); 96 transform = CATransform3DRotate(transform, rotate, 0, 0, 1); 101 transform = CATransform3DScale(transform, scale, scale, 1); 106 transform = CATransform3DScale(transform, scale, 1, 1); 111 transform = CATransform3DScale(transform, 1, scale, 1); 132 transform = CATransform3DConcat(next, transform); [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/ |
| H A D | ABI49_0_0RCTConvert+Transform.m | 46 return transform; 79 transform = CATransform3DConcat(next, transform); 84 transform = CATransform3DConcat(next, transform); 88 transform = CATransform3DRotate(transform, rotate, 1, 0, 0); 92 transform = CATransform3DRotate(transform, rotate, 0, 1, 0); 96 transform = CATransform3DRotate(transform, rotate, 0, 0, 1); 101 transform = CATransform3DScale(transform, scale, scale, 1); 106 transform = CATransform3DScale(transform, scale, 1, 1); 111 transform = CATransform3DScale(transform, 1, scale, 1); 132 transform = CATransform3DConcat(next, transform); [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/ |
| H A D | ABI47_0_0RCTConvert+Transform.m | 46 return transform; 79 transform = CATransform3DConcat(next, transform); 84 transform = CATransform3DConcat(next, transform); 88 transform = CATransform3DRotate(transform, rotate, 1, 0, 0); 92 transform = CATransform3DRotate(transform, rotate, 0, 1, 0); 96 transform = CATransform3DRotate(transform, rotate, 0, 0, 1); 101 transform = CATransform3DScale(transform, scale, scale, 1); 106 transform = CATransform3DScale(transform, scale, 1, 1); 111 transform = CATransform3DScale(transform, 1, scale, 1); 132 transform = CATransform3DConcat(next, transform); [all …]
|
| /expo/packages/expo-image-picker/ios/ |
| H A D | UIImage+fixOrientation.swift | 11 var transform = CGAffineTransform.identity in fixOrientation() variable 17 transform = transform in fixOrientation() 22 transform = transform in fixOrientation() 27 transform = transform in fixOrientation() 38 transform = transform in fixOrientation() 43 transform = transform in fixOrientation() 63 ctx.concatenate(transform) in fixOrientation()
|
| /expo/ios/versioned/sdk49/ExpoImagePicker/ |
| H A D | UIImage+fixOrientation.swift | 11 var transform = CGAffineTransform.identity in fixOrientation() variable 17 transform = transform in fixOrientation() 22 transform = transform in fixOrientation() 27 transform = transform in fixOrientation() 38 transform = transform in fixOrientation() 43 transform = transform in fixOrientation() 63 ctx.concatenate(transform) in fixOrientation()
|
| /expo/ios/versioned/sdk48/ExpoImagePicker/ |
| H A D | UIImage+fixOrientation.swift | 11 var transform = CGAffineTransform.identity in fixOrientation() variable 17 transform = transform in fixOrientation() 22 transform = transform in fixOrientation() 27 transform = transform in fixOrientation() 38 transform = transform in fixOrientation() 43 transform = transform in fixOrientation() 63 ctx.concatenate(transform) in fixOrientation()
|
| /expo/ios/versioned/sdk47/ExpoImagePicker/ |
| H A D | UIImage+fixOrientation.swift | 11 var transform = CGAffineTransform.identity in fixOrientation() variable 17 transform = transform in fixOrientation() 22 transform = transform in fixOrientation() 27 transform = transform in fixOrientation() 38 transform = transform in fixOrientation() 43 transform = transform in fixOrientation() 63 ctx.concatenate(transform) in fixOrientation()
|
| /expo/ios/vendored/sdk47/react-native-svg/apple/ViewManagers/ |
| H A D | ABI47_0_0RNSVGNodeManager.mm | 36 return transform; 40 return transform; 45 return transform; 50 return transform; 57 return transform; 88 transform = CATransform3DRotate(transform, rotate, 1, 0, 0); 92 transform = CATransform3DRotate(transform, rotate, 0, 1, 0); 96 transform = CATransform3DRotate(transform, rotate, 0, 0, 1); 101 transform = CATransform3DScale(transform, scale, scale, 1); 106 transform = CATransform3DScale(transform, scale, 1, 1); [all …]
|
| /expo/ios/vendored/sdk48/react-native-svg/apple/ViewManagers/ |
| H A D | ABI48_0_0RNSVGNodeManager.mm | 36 return transform; 40 return transform; 45 return transform; 50 return transform; 57 return transform; 88 transform = CATransform3DRotate(transform, rotate, 1, 0, 0); 92 transform = CATransform3DRotate(transform, rotate, 0, 1, 0); 96 transform = CATransform3DRotate(transform, rotate, 0, 0, 1); 101 transform = CATransform3DScale(transform, scale, scale, 1); 106 transform = CATransform3DScale(transform, scale, 1, 1); [all …]
|
| /expo/packages/expo-image-manipulator/ios/ |
| H A D | ImageManipulations.swift | 139 transform = transform.translatedBy(x: image.size.width, y: image.size.height) in fixImageOrientation() 140 transform = transform.rotated(by: Double.pi) in fixImageOrientation() 142 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 143 transform = transform.rotated(by: Double.pi / 2) in fixImageOrientation() 145 transform = transform.translatedBy(x: 0, y: image.size.height) in fixImageOrientation() 146 transform = transform.rotated(by: -Double.pi / 2) in fixImageOrientation() 153 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 154 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() 156 transform = transform.translatedBy(x: image.size.height, y: 0) in fixImageOrientation() 157 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() [all …]
|
| /expo/ios/versioned/sdk49/ExpoImageManipulator/ |
| H A D | ImageManipulations.swift | 139 transform = transform.translatedBy(x: image.size.width, y: image.size.height) in fixImageOrientation() 140 transform = transform.rotated(by: Double.pi) in fixImageOrientation() 142 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 143 transform = transform.rotated(by: Double.pi / 2) in fixImageOrientation() 145 transform = transform.translatedBy(x: 0, y: image.size.height) in fixImageOrientation() 146 transform = transform.rotated(by: -Double.pi / 2) in fixImageOrientation() 153 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 154 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() 156 transform = transform.translatedBy(x: image.size.height, y: 0) in fixImageOrientation() 157 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() [all …]
|
| /expo/ios/versioned/sdk48/ExpoImageManipulator/ |
| H A D | ImageManipulations.swift | 136 transform = transform.translatedBy(x: image.size.width, y: image.size.height) in fixImageOrientation() 137 transform = transform.rotated(by: Double.pi) in fixImageOrientation() 139 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 140 transform = transform.rotated(by: Double.pi / 2) in fixImageOrientation() 142 transform = transform.translatedBy(x: 0, y: image.size.height) in fixImageOrientation() 143 transform = transform.rotated(by: -Double.pi / 2) in fixImageOrientation() 150 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 151 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() 153 transform = transform.translatedBy(x: image.size.height, y: 0) in fixImageOrientation() 154 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() [all …]
|
| /expo/ios/versioned/sdk47/ExpoImageManipulator/ |
| H A D | ImageManipulations.swift | 136 transform = transform.translatedBy(x: image.size.width, y: image.size.height) in fixImageOrientation() 137 transform = transform.rotated(by: Double.pi) in fixImageOrientation() 139 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 140 transform = transform.rotated(by: Double.pi / 2) in fixImageOrientation() 142 transform = transform.translatedBy(x: 0, y: image.size.height) in fixImageOrientation() 143 transform = transform.rotated(by: -Double.pi / 2) in fixImageOrientation() 150 transform = transform.translatedBy(x: image.size.width, y: 0) in fixImageOrientation() 151 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() 153 transform = transform.translatedBy(x: image.size.height, y: 0) in fixImageOrientation() 154 transform = transform.scaledBy(x: -1, y: 1) in fixImageOrientation() [all …]
|
| /expo/packages/@expo/metro-config/src/transformer/ |
| H A D | createExoticTransformer.ts | 55 const transform = createMultiRuleTransformer({ constant 73 transform: loaders.passthroughModule, 81 transform: loaders.reactNativeModule, 89 transform: loaders.expoModule, 99 transform: loaders.untranspiledModule, 111 transform: loaders.passthroughModule, 119 transform: loaders.app, 125 transform,
|
| /expo/docs/mdx-plugins/ |
| H A D | remark-export-headings.test.js | 7 const { data } = transform(u('root', [u('text', 'lorem ipsum')])); 13 const { data } = transform(u('root', [u('heading', [u('text', 'lorem ipsum')])])); 18 const { data } = transform( 27 const { data } = transform(u('root', [u('heading', [u('text', 'header title')])])); 32 const { data } = transform( 39 const { data } = transform(u('root', [u('heading', { depth: 3 }, [u('text', 'title')])])); 44 const { data } = transform( 51 const { data } = transform( 58 const { data } = transform( 71 function transform(tree, options = {}) { function
|
| /expo/tools/src/vendoring/devmenu/steps/ |
| H A D | GenerateJsonFromPodspec.ts | 12 transform: (map: Record<string, any>) => Promise<Record<string, any>>; 18 protected readonly transform: (map: Record<string, any>) => Promise<Record<string, any>>; property in GenerateJsonFromPodspec 20 constructor({ from, saveTo, transform }: GenerateJsonFromPodspecSettings) { 24 this.transform = transform; 34 const transformedPodspec = await this.transform(podspec);
|
| /expo/packages/@expo/metro-config/build/transformer/ |
| H A D | createExoticTransformer.js | 69 const transform = (0, _createMultiRuleTransformer().createMultiRuleTransformer)({ 89 transform: _createMultiRuleTransformer().loaders.passthroughModule, property 99 transform: _createMultiRuleTransformer().loaders.reactNativeModule, property 109 transform: _createMultiRuleTransformer().loaders.expoModule, property 119 transform: _createMultiRuleTransformer().loaders.untranspiledModule, property 131 transform: _createMultiRuleTransformer().loaders.passthroughModule 139 transform: _createMultiRuleTransformer().loaders.app 143 transform,
|
| /expo/packages/expo-image/src/web/ |
| H A D | imageStyles.tsx | 16 transition-property: transform, opacity; 18 transform-origin: center; 34 transform: translateZ(0px) rotateY(0) ; 42 transition-property: transform, opacity; 44 transform-origin: center; 59 transform: translateZ(0px) rotateY(0) ; 67 transition-property: transform, opacity; 69 transform-origin: center; 84 transform: translateZ(0px) rotateX(0) ; 94 transform-origin: center; [all …]
|