Home
last modified time | relevance | path

Searched refs:Point (Results 1 – 25 of 182) sorted by relevance

12345678

/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI47_0_0Point.h21 struct Point { struct
25 Point &operator+=(Point const &point) noexcept {
31 Point &operator-=(Point const &point) noexcept {
37 Point &operator*=(Point const &point) noexcept {
43 friend Point operator+(Point lhs, Point const &rhs) noexcept {
47 friend Point operator-(Point lhs, Point const &rhs) noexcept {
52 inline bool operator==(Point const &rhs, Point const &lhs) noexcept {
56 inline bool operator!=(Point const &rhs, Point const &lhs) noexcept {
66 struct hash<ABI47_0_0facebook::ABI47_0_0React::Point> {
67 size_t operator()(ABI47_0_0facebook::ABI47_0_0React::Point const &point) const noexcept {
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI48_0_0Point.h21 struct Point { struct
25 Point &operator+=(Point const &point) noexcept {
31 Point &operator-=(Point const &point) noexcept {
37 Point &operator*=(Point const &point) noexcept {
43 friend Point operator+(Point lhs, Point const &rhs) noexcept {
47 friend Point operator-(Point lhs, Point const &rhs) noexcept {
52 inline bool operator==(Point const &rhs, Point const &lhs) noexcept {
56 inline bool operator!=(Point const &rhs, Point const &lhs) noexcept {
66 struct hash<ABI48_0_0facebook::ABI48_0_0React::Point> {
67 size_t operator()(ABI48_0_0facebook::ABI48_0_0React::Point const &point) const noexcept {
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI49_0_0Point.h21 struct Point { struct
25 Point &operator+=(Point const &point) noexcept {
31 Point &operator-=(Point const &point) noexcept {
37 Point &operator*=(Point const &point) noexcept {
43 friend Point operator+(Point lhs, Point const &rhs) noexcept {
47 friend Point operator-(Point lhs, Point const &rhs) noexcept {
52 inline bool operator==(Point const &rhs, Point const &lhs) noexcept {
56 inline bool operator!=(Point const &rhs, Point const &lhs) noexcept {
66 struct hash<ABI49_0_0facebook::ABI49_0_0React::Point> {
67 size_t operator()(ABI49_0_0facebook::ABI49_0_0React::Point const &point) const noexcept {
/expo/packages/expo-face-detector/build/
H A DFaceDetector.d.ts1 export type Point = { alias
19 leftEarPosition?: Point;
24 rightEarPosition?: Point;
29 leftEyePosition?: Point;
39 rightEyePosition?: Point;
49 leftCheekPosition?: Point;
54 rightCheekPosition?: Point;
59 leftMouthPosition?: Point;
64 mouthPosition?: Point;
79 noseBasePosition?: Point;
[all …]
/expo/packages/expo-face-detector/src/
H A DFaceDetector.ts25 leftEarPosition?: Point;
30 rightEarPosition?: Point;
35 leftEyePosition?: Point;
45 rightEyePosition?: Point;
55 leftCheekPosition?: Point;
60 rightCheekPosition?: Point;
65 leftMouthPosition?: Point;
70 mouthPosition?: Point;
75 rightMouthPosition?: Point;
85 noseBasePosition?: Point;
[all …]
/expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java19 class Point { class
23 Point(double x, double y) { in Point() method in Point
39 private static Point origin_;
40 private static Point subpath_start_;
41 private static Point in_slope_;
42 private static Point out_slope_;
48 Point origin;
60 origin_ = new Point(0, 0); in fromPath()
61 subpath_start_ = new Point(0, 0); in fromPath()
106 private static Point subtract(Point p1, Point p2) { in subtract()
[all …]
/expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java19 class Point { class
23 Point(double x, double y) { in Point() method in Point
39 private static Point origin_;
40 private static Point subpath_start_;
41 private static Point in_slope_;
42 private static Point out_slope_;
48 Point origin;
60 origin_ = new Point(0, 0); in fromPath()
61 subpath_start_ = new Point(0, 0); in fromPath()
106 private static Point subtract(Point p1, Point p2) { in subtract()
[all …]
/expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/
H A DRNSVGMarkerPosition.java19 class Point { class
23 Point(double x, double y) { in Point() method in Point
39 private static Point origin_;
40 private static Point subpath_start_;
41 private static Point in_slope_;
42 private static Point out_slope_;
48 Point origin;
60 origin_ = new Point(0, 0); in fromPath()
61 subpath_start_ = new Point(0, 0); in fromPath()
106 private static Point subtract(Point p1, Point p2) { in subtract()
[all …]
H A DCircleView.java87 ElementType.kCGPathElementMoveToPoint, new Point[] {new Point(cx, cy - r)})); in getPath()
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()
103 new Point[] {new Point(cx - r, cy), new Point(cx, cy - r)})); in getPath()
H A DEllipseView.java105 ElementType.kCGPathElementMoveToPoint, new Point[] {new Point(cx, 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()
121 new Point[] {new Point(cx - rx, cy), new Point(cx, cy - ry)})); in getPath()
/expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/
H A DRNSVGMarkerPosition.java19 class Point { class
23 Point(double x, double y) { in Point() method in Point
39 private static Point origin_;
40 private static Point subpath_start_;
41 private static Point in_slope_;
42 private static Point out_slope_;
48 Point origin;
60 origin_ = new Point(0, 0); in fromPath()
61 subpath_start_ = new Point(0, 0); in fromPath()
106 private static Point subtract(Point p1, Point p2) { in subtract()
[all …]
H A DCircleView.java87 ElementType.kCGPathElementMoveToPoint, new Point[] {new Point(cx, cy - r)})); in getPath()
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()
103 new Point[] {new Point(cx - r, cy), new Point(cx, cy - r)})); in getPath()
H A DEllipseView.java105 ElementType.kCGPathElementMoveToPoint, new Point[] {new Point(cx, 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()
121 new Point[] {new Point(cx - rx, cy), new Point(cx, cy - ry)})); in getPath()
/expo/packages/expo-maps/src/
H A DCommon.types.ts4 export type Point = { alias
36 export type PointWithData = Point & {
69 target: Point;
116 target?: Point;
157 position: Point;
182 position: Point;
194 position: Point;
202 position: Point;
H A DOverlay.ts3 import { Point } from './Common.types';
16 southWest: Point;
20 northEast: Point;
H A DCircle.ts3 import { Point } from './Common.types';
13 center: Point;
57 center: Point;
H A DMarker.ts3 import { Point } from './Common.types';
85 export type MarkerProps = MarkerOptions & Point;
95 Point;
/expo/packages/expo-maps/build/
H A DCommon.types.d.ts4 export type Point = { alias
34 export type PointWithData = Point & {
65 target: Point;
105 target?: Point;
139 position: Point;
163 position: Point;
174 position: Point;
181 position: Point;
H A DOverlay.d.ts2 import { Point } from './Common.types';
14 southWest: Point;
18 northEast: Point;
H A DCircle.d.ts2 import { Point } from './Common.types';
11 center: Point;
54 center: Point;
H A DMarker.d.ts2 import { Point } from './Common.types';
81 export type MarkerProps = MarkerOptions & Point;
89 } & MarkerOptions & Point;
/expo/packages/expo-maps/ios/ExpoMaps/
H A DPropsData.swift39 struct Point: Record { struct
51 @Field var points: [Point] = []
60 @Field var points: [Point] = []
91 @Field var center: Point = Point()
151 @Field var southWest: Point = Point()
152 @Field var northEast: Point = Point()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/
H A DPropsData.swift39 struct Point: Record { struct
51 @Field var points: [Point] = []
60 @Field var points: [Point] = []
91 @Field var center: Point = Point()
151 @Field var southWest: Point = Point()
152 @Field var northEast: Point = Point()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/
H A DPropsData.swift39 struct Point: Record { struct
51 @Field var points: [Point] = []
60 @Field var points: [Point] = []
91 @Field var center: Point = Point()
151 @Field var southWest: Point = Point()
152 @Field var northEast: Point = Point()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI47_0_0PointerEvent.h36 Point clientPoint;
40 Point screenPoint;
45 Point offsetPoint;

12345678