| /expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/ |
| H A D | CircleView.java | 44 public void setCy(Dynamic cy) { in setCy() argument 45 mCy = SVGLength.from(cy); in setCy() 49 public void setCy(String cy) { in setCy() argument 50 mCy = SVGLength.from(cy); in setCy() 54 public void setCy(Double cy) { in setCy() argument 55 mCy = SVGLength.from(cy); in setCy() 79 double cy = relativeOnHeight(mCy); in getPath() local 91 new Point[] {new Point(cx, cy - r), new Point(cx + r, cy)})); in getPath() 95 new Point[] {new Point(cx + r, cy), new Point(cx, cy + r)})); in getPath() 99 new Point[] {new Point(cx, cy + r), new Point(cx - r, cy)})); in getPath() [all …]
|
| H A D | EllipseView.java | 46 public void setCy(Dynamic cy) { in setCy() argument 47 mCy = SVGLength.from(cy); in setCy() 51 public void setCy(String cy) { in setCy() argument 52 mCy = SVGLength.from(cy); in setCy() 56 public void setCy(Double cy) { in setCy() argument 57 mCy = SVGLength.from(cy); in setCy() 99 new RectF((float) (cx - rx), (float) (cy - ry), (float) (cx + rx), (float) (cy + ry)); in getPath() 109 new Point[] {new Point(cx, cy - ry), new Point(cx + rx, cy)})); in getPath() 113 new Point[] {new Point(cx + rx, cy), new Point(cx, cy + ry)})); in getPath() 117 new Point[] {new Point(cx, cy + ry), new Point(cx - rx, cy)})); in getPath() [all …]
|
| /expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/ |
| H A D | CircleView.java | 44 public void setCy(Dynamic cy) { in setCy() argument 45 mCy = SVGLength.from(cy); in setCy() 49 public void setCy(String cy) { in setCy() argument 50 mCy = SVGLength.from(cy); in setCy() 54 public void setCy(Double cy) { in setCy() argument 55 mCy = SVGLength.from(cy); in setCy() 79 double cy = relativeOnHeight(mCy); in getPath() local 91 new Point[] {new Point(cx, cy - r), new Point(cx + r, cy)})); in getPath() 95 new Point[] {new Point(cx + r, cy), new Point(cx, cy + r)})); in getPath() 99 new Point[] {new Point(cx, cy + r), new Point(cx - r, cy)})); in getPath() [all …]
|
| H A D | EllipseView.java | 46 public void setCy(Dynamic cy) { in setCy() argument 47 mCy = SVGLength.from(cy); in setCy() 51 public void setCy(String cy) { in setCy() argument 52 mCy = SVGLength.from(cy); in setCy() 56 public void setCy(Double cy) { in setCy() argument 57 mCy = SVGLength.from(cy); in setCy() 99 new RectF((float) (cx - rx), (float) (cy - ry), (float) (cx + rx), (float) (cy + ry)); in getPath() 109 new Point[] {new Point(cx, cy - ry), new Point(cx + rx, cy)})); in getPath() 113 new Point[] {new Point(cx + rx, cy), new Point(cx, cy + ry)})); in getPath() 117 new Point[] {new Point(cx, cy + ry), new Point(cx - rx, cy)})); in getPath() [all …]
|
| /expo/packages/expo-image/src/utils/thumbhash/ |
| H A D | thumbhash.ts | 62 for (let cy = 0; cy < ny; cy++) { 147 for (let cy = 0; cy < ny; cy++) 148 for (let cx = cy ? 0 : 1; cx * ny < nx * (ny - cy); cx++) 176 for (let cy = 0, n = max(ly, hasAlpha ? 5 : 3); cy < n; cy++) 177 fy[cy] = cos((PI / h) * (y + 0.5) * cy); 180 for (let cy = 0, j = 0; cy < ly; cy++) 181 for (let cx = cy ? 0 : 1, fy2 = fy[cy] * 2; cx * ly < lx * (ly - cy); cx++, j++) 185 for (let cy = 0, j = 0; cy < 3; cy++) { 186 for (let cx = cy ? 0 : 1, fy2 = fy[cy] * 2; cx < 3 - cy; cx++, j++) { 195 for (let cy = 0, j = 0; cy < 5; cy++) [all …]
|
| /expo/packages/expo-image/build/utils/thumbhash/ |
| H A D | thumbhash.js | 54 for (let cy = 0; cy < ny; cy++) { 137 for (let cy = 0; cy < ny; cy++) 138 for (let cx = cy ? 0 : 1; cx * ny < nx * (ny - cy); cx++) 157 for (let cy = 0, n = max(ly, hasAlpha ? 5 : 3); cy < n; cy++) 158 fy[cy] = cos((PI / h) * (y + 0.5) * cy); 160 for (let cy = 0, j = 0; cy < ly; cy++) 161 for (let cx = cy ? 0 : 1, fy2 = fy[cy] * 2; cx * ly < lx * (ly - cy); cx++, j++) 164 for (let cy = 0, j = 0; cy < 3; cy++) { 165 for (let cx = cy ? 0 : 1, fy2 = fy[cy] * 2; cx < 3 - cy; cx++, j++) { 173 for (let cy = 0, j = 0; cy < 5; cy++) [all …]
|
| /expo/docs/ui/components/AppJSBanner/ |
| H A D | Background.tsx | 11 <circle cx="52.5154" cy="81.121" r="2" fill="#8490E1" /> 12 <circle cx="23.0597" cy="41.371" r="2" fill="#8490E1" /> 13 <circle cx="39.5154" cy="24.121" r="2" fill="#8490E1" /> 14 <circle cx="56.5154" cy="9.52374" r="2" fill="#8490E1" /> 15 <circle cx="90.5154" cy="41.371" r="2" fill="#8490E1" /> 16 <circle cx="119.555" cy="19.4351" r="2" fill="#8490E1" /> 17 <circle cx="2.51537" cy="72.121" r="2" fill="#8490E1" />
|
| /expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/ |
| H A D | CircleView.java | 43 public void setCy(Dynamic cy) { in setCy() argument 44 mCy = SVGLength.from(cy); in setCy() 48 public void setCy(String cy) { in setCy() argument 49 mCy = SVGLength.from(cy); in setCy() 53 public void setCy(Double cy) { in setCy() argument 54 mCy = SVGLength.from(cy); in setCy() 78 double cy = relativeOnHeight(mCy); in getPath() local 81 path.addCircle((float) cx, (float) cy, (float) r, Path.Direction.CW); in getPath()
|
| H A D | EllipseView.java | 45 public void setCy(Dynamic cy) { in setCy() argument 46 mCy = SVGLength.from(cy); in setCy() 50 public void setCy(String cy) { in setCy() argument 51 mCy = SVGLength.from(cy); in setCy() 55 public void setCy(Double cy) { in setCy() argument 56 mCy = SVGLength.from(cy); in setCy() 94 double cy = relativeOnHeight(mCy); in getPath() local 98 new RectF((float) (cx - rx), (float) (cy - ry), (float) (cx + rx), (float) (cy + ry)); in getPath()
|
| /expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/ |
| H A D | CircleView.java | 43 public void setCy(Dynamic cy) { in setCy() argument 44 mCy = SVGLength.from(cy); in setCy() 48 public void setCy(String cy) { in setCy() argument 49 mCy = SVGLength.from(cy); in setCy() 53 public void setCy(Double cy) { in setCy() argument 54 mCy = SVGLength.from(cy); in setCy() 78 double cy = relativeOnHeight(mCy); in getPath() local 81 path.addCircle((float) cx, (float) cy, (float) r, Path.Direction.CW); in getPath()
|
| H A D | EllipseView.java | 45 public void setCy(Dynamic cy) { in setCy() argument 46 mCy = SVGLength.from(cy); in setCy() 50 public void setCy(String cy) { in setCy() argument 51 mCy = SVGLength.from(cy); in setCy() 55 public void setCy(Double cy) { in setCy() argument 56 mCy = SVGLength.from(cy); in setCy() 94 double cy = relativeOnHeight(mCy); in getPath() local 98 new RectF((float) (cx - rx), (float) (cy - ry), (float) (cx + rx), (float) (cy + ry)); in getPath()
|
| /expo/apps/native-component-list/src/screens/SVG/examples/ |
| H A D | G.tsx | 42 <Circle cx="25" cy="25" r="11" /> 44 <Circle cx="25" cy="75" r="11" stroke="red" /> 45 <Circle cx="50" cy="50" r="11" fill="green" /> 46 <Circle cx="75" cy="25" r="11" stroke="red" /> 47 <Circle cx="75" cy="75" r="11" /> 85 <Circle cx="5" cy="5" r="3" /> 86 <Circle cx="5" cy="15" r="3" /> 87 <Circle cx="10" cy="10" fill="green" r="3" /> 88 <Circle cx="15" cy="5" r="3" /> 89 <Circle cx="15" cy="15" r="3" />
|
| H A D | Clipping.tsx | 21 <Circle cx="30" cy="30" r="20" /> 78 <Circle cx="-20" cy="35" r="10" /> 79 <Circle cx="0" cy="35" r="10" /> 80 <Circle cx="20" cy="35" r="10" /> 81 <Circle cx="40" cy="35" r="10" /> 82 <Circle cx="60" cy="35" r="10" /> 83 <Circle cx="80" cy="35" r="10" /> 84 <Circle cx="100" cy="35" r="10" /> 85 <Circle cx="120" cy="35" r="10" /> 86 <Circle cx="140" cy="35" r="10" /> [all …]
|
| H A D | Ellipse.tsx | 13 cy="50%" 30 <Svg.Ellipse cx="98" cy="60" rx="90" ry="30" fill="purple" /> 31 <Svg.Ellipse cx="94" cy="45" rx="80" ry="25" fill="lime" /> 32 <Svg.Ellipse cx="92" cy="30" rx="70" ry="20" fill="yellow" /> 43 <Svg.Ellipse cx="100" cy="50" rx="90" ry="30" fill="yellow" /> 44 <Svg.Ellipse cx="95" cy="50" rx="75" ry="20" fill="white" /> 52 <Svg.Ellipse cx="10" cy="10" rx="8" ry="4" stroke="purple" strokeWidth="1" fill="yellow" />
|
| H A D | Circle.tsx | 11 <Svg.Circle cx="50%" cy="50%" r="40%" fill="pink" /> 22 <Svg.Circle cx="50" cy="50" r="45" stroke="purple" strokeWidth="2.5" fill="none" /> 35 cy="50" 52 <Svg.Circle cx="50" cy="50" r="40" fill="#ddd" /> 57 cy="50" 71 <Svg.Circle cx="10" cy="10" r="8" stroke="purple" strokeWidth="1" fill="pink" />
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/image/thumbhash/ |
| H A D | ThumbhashDecoder.kt | 176 for (cy in 0 until cy_stop) fy[cy] = Math.cos(Math.PI / h * (y + 0.5f) * cy).toFloat() in thumbHashToRGBA() variable 180 var cy = 0 in thumbHashToRGBA() variable 182 while (cy < ly) { in thumbHashToRGBA() 190 cy++ in thumbHashToRGBA() 195 var cy = 0 in thumbHashToRGBA() variable 197 while (cy < 3) { in thumbHashToRGBA() 207 cy++ in thumbHashToRGBA() 212 var cy = 0 in thumbHashToRGBA() variable 214 while (cy < 5) { in thumbHashToRGBA() 222 cy++ in thumbHashToRGBA() [all …]
|
| /expo/packages/expo-image/android/src/main/java/expo/modules/image/thumbhash/ |
| H A D | ThumbhashDecoder.kt | 176 for (cy in 0 until cy_stop) fy[cy] = Math.cos(Math.PI / h * (y + 0.5f) * cy).toFloat() in thumbHashToRGBA() variable 180 var cy = 0 in thumbHashToRGBA() variable 182 while (cy < ly) { in thumbHashToRGBA() 190 cy++ in thumbHashToRGBA() 195 var cy = 0 in thumbHashToRGBA() variable 197 while (cy < 3) { in thumbHashToRGBA() 207 cy++ in thumbHashToRGBA() 212 var cy = 0 in thumbHashToRGBA() variable 214 while (cy < 5) { in thumbHashToRGBA() 222 cy++ in thumbHashToRGBA() [all …]
|
| /expo/packages/expo-image/ios/ |
| H A D | Thumbhash.swift | 111 var cy = 0 in rgbaToThumbHash() variable 112 while cy < ny { in rgbaToThumbHash() 148 cy += 1 in rgbaToThumbHash() 340 var cy = 0 in thumbHashToRGBA() variable 346 cy += 1 in thumbHashToRGBA() 351 cy = 0 in thumbHashToRGBA() 360 cy += 1 in thumbHashToRGBA() 365 cy = 0 in thumbHashToRGBA() 376 cy += 1 in thumbHashToRGBA() 382 cy = 0 in thumbHashToRGBA() [all …]
|
| /expo/ios/versioned/sdk49/ExpoImage/ |
| H A D | Thumbhash.swift | 111 var cy = 0 in rgbaToThumbHash() variable 112 while cy < ny { in rgbaToThumbHash() 148 cy += 1 in rgbaToThumbHash() 340 var cy = 0 in thumbHashToRGBA() variable 346 cy += 1 in thumbHashToRGBA() 351 cy = 0 in thumbHashToRGBA() 360 cy += 1 in thumbHashToRGBA() 365 cy = 0 in thumbHashToRGBA() 376 cy += 1 in thumbHashToRGBA() 382 cy = 0 in thumbHashToRGBA() [all …]
|
| /expo/ios/vendored/sdk47/react-native-svg/apple/Shapes/ |
| H A D | ABI47_0_0RNSVGCircle.mm | 46 self.cy = [ABI47_0_0RNSVGLength lengthWithString:ABI47_0_0RCTNSStringFromString(newProps.cy)]; 71 - (void)setCy:(ABI47_0_0RNSVGLength *)cy 73 if ([cy isEqualTo:_cy]) { 77 _cy = cy; 93 CGFloat cy = [self relativeOnHeight:self.cy]; 95 CGPathAddArc(path, nil, cx, cy, r, 0, 2 * (CGFloat)M_PI, NO);
|
| H A D | ABI47_0_0RNSVGEllipse.mm | 46 self.cy = [ABI47_0_0RNSVGLength lengthWithString:ABI47_0_0RCTNSStringFromString(newProps.cy)]; 73 - (void)setCy:(ABI47_0_0RNSVGLength *)cy 75 if ([cy isEqualTo:_cy]) { 79 _cy = cy; 104 CGFloat cy = [self relativeOnHeight:self.cy]; 107 CGPathAddEllipseInRect(path, nil, CGRectMake(cx - rx, cy - ry, rx * 2, ry * 2));
|
| /expo/ios/vendored/sdk49/react-native-svg/apple/Shapes/ |
| H A D | ABI49_0_0RNSVGCircle.mm | 46 self.cy = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.cy)]; 71 - (void)setCy:(ABI49_0_0RNSVGLength *)cy 73 if ([cy isEqualTo:_cy]) { 77 _cy = cy; 93 CGFloat cy = [self relativeOnHeight:self.cy]; 95 CGPathAddArc(path, nil, cx, cy, r, 0, 2 * (CGFloat)M_PI, NO);
|
| H A D | ABI49_0_0RNSVGEllipse.mm | 46 self.cy = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.cy)]; 73 - (void)setCy:(ABI49_0_0RNSVGLength *)cy 75 if ([cy isEqualTo:_cy]) { 79 _cy = cy; 104 CGFloat cy = [self relativeOnHeight:self.cy]; 107 CGPathAddEllipseInRect(path, nil, CGRectMake(cx - rx, cy - ry, rx * 2, ry * 2));
|
| /expo/ios/vendored/sdk48/react-native-svg/apple/Shapes/ |
| H A D | ABI48_0_0RNSVGCircle.mm | 46 self.cy = [ABI48_0_0RNSVGLength lengthWithString:ABI48_0_0RCTNSStringFromString(newProps.cy)]; 71 - (void)setCy:(ABI48_0_0RNSVGLength *)cy 73 if ([cy isEqualTo:_cy]) { 77 _cy = cy; 93 CGFloat cy = [self relativeOnHeight:self.cy]; 95 CGPathAddArc(path, nil, cx, cy, r, 0, 2 * (CGFloat)M_PI, NO);
|
| /expo/ios/vendored/unversioned/react-native-svg/apple/Shapes/ |
| H A D | RNSVGCircle.mm | 46 self.cy = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.cy)]; 71 - (void)setCy:(RNSVGLength *)cy 73 if ([cy isEqualTo:_cy]) { 77 _cy = cy; 93 CGFloat cy = [self relativeOnHeight:self.cy]; 95 CGPathAddArc(path, nil, cx, cy, r, 0, 2 * (CGFloat)M_PI, NO);
|