Home
last modified time | relevance | path

Searched refs:RNSVGMarkerType (Results 1 – 11 of 11) sorted by relevance

/expo/ios/vendored/unversioned/react-native-svg/apple/Utils/
H A DRNSVGMarkerPosition.h5 typedef enum RNSVGMarkerType { kStartMarker, kMidMarker, kEndMarker } RNSVGMarkerType; typedef
12 @property (nonatomic, assign) RNSVGMarkerType type;
17 + (instancetype)markerPosition:(RNSVGMarkerType)type origin:(CGPoint)origin angle:(float)angle;
H A DRNSVGMarkerPosition.mm16 + (instancetype)markerPosition:(RNSVGMarkerType)type origin:(CGPoint)origin angle:(float)angle
63 double CurrentAngle(RNSVGMarkerType type) category
143 RNSVGMarkerType marker_type = element_index_ == 1 ? kStartMarker : kMidMarker;
/expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java5 enum RNSVGMarkerType { enum
47 RNSVGMarkerType type;
51 private RNSVGMarkerPosition(RNSVGMarkerType type, Point origin, double angle) { in RNSVGMarkerPosition()
70 double angle = CurrentAngle(RNSVGMarkerType.kEndMarker); in PathIsDone()
71 positions_.add(new RNSVGMarkerPosition(RNSVGMarkerType.kEndMarker, origin_, angle)); in PathIsDone()
89 private static double CurrentAngle(RNSVGMarkerType type) { in CurrentAngle()
157 RNSVGMarkerType marker_type = in UpdateFromPathElement()
158 element_index_ == 1 ? RNSVGMarkerType.kStartMarker : RNSVGMarkerType.kMidMarker; in UpdateFromPathElement()
H A DRenderableView.java469 RNSVGMarkerType type = position.type; in renderMarkers()
/expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java5 enum RNSVGMarkerType { enum
47 RNSVGMarkerType type;
51 private RNSVGMarkerPosition(RNSVGMarkerType type, Point origin, double angle) { in RNSVGMarkerPosition()
70 double angle = CurrentAngle(RNSVGMarkerType.kEndMarker); in PathIsDone()
71 positions_.add(new RNSVGMarkerPosition(RNSVGMarkerType.kEndMarker, origin_, angle)); in PathIsDone()
89 private static double CurrentAngle(RNSVGMarkerType type) { in CurrentAngle()
157 RNSVGMarkerType marker_type = in UpdateFromPathElement()
158 element_index_ == 1 ? RNSVGMarkerType.kStartMarker : RNSVGMarkerType.kMidMarker; in UpdateFromPathElement()
H A DRenderableView.java469 RNSVGMarkerType type = position.type; in renderMarkers()
/expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/
H A DRNSVGMarkerPosition.java5 enum RNSVGMarkerType { enum
47 RNSVGMarkerType type;
51 private RNSVGMarkerPosition(RNSVGMarkerType type, Point origin, double angle) { in RNSVGMarkerPosition()
70 double angle = CurrentAngle(RNSVGMarkerType.kEndMarker); in PathIsDone()
71 positions_.add(new RNSVGMarkerPosition(RNSVGMarkerType.kEndMarker, origin_, angle)); in PathIsDone()
89 private static double CurrentAngle(RNSVGMarkerType type) { in CurrentAngle()
157 RNSVGMarkerType marker_type = in UpdateFromPathElement()
158 element_index_ == 1 ? RNSVGMarkerType.kStartMarker : RNSVGMarkerType.kMidMarker; in UpdateFromPathElement()
H A DRenderableView.java468 RNSVGMarkerType type = position.type; in renderMarkers()
/expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java5 enum RNSVGMarkerType { enum
47 RNSVGMarkerType type;
51 private RNSVGMarkerPosition(RNSVGMarkerType type, Point origin, double angle) { in RNSVGMarkerPosition()
70 double angle = CurrentAngle(RNSVGMarkerType.kEndMarker); in PathIsDone()
71 positions_.add(new RNSVGMarkerPosition(RNSVGMarkerType.kEndMarker, origin_, angle)); in PathIsDone()
89 private static double CurrentAngle(RNSVGMarkerType type) { in CurrentAngle()
157 RNSVGMarkerType marker_type = in UpdateFromPathElement()
158 element_index_ == 1 ? RNSVGMarkerType.kStartMarker : RNSVGMarkerType.kMidMarker; in UpdateFromPathElement()
H A DRenderableView.java468 RNSVGMarkerType type = position.type; in renderMarkers()
/expo/ios/vendored/unversioned/react-native-svg/apple/
H A DRNSVGRenderable.mm374 RNSVGMarkerType type = [position type];