Home
last modified time | relevance | path

Searched refs:point (Results 1 – 25 of 558) sorted by relevance

12345678910>>...23

/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI47_0_0Point.h25 Point &operator+=(Point const &point) noexcept {
26 x += point.x;
27 y += point.y;
31 Point &operator-=(Point const &point) noexcept {
32 x -= point.x;
33 y -= point.y;
37 Point &operator*=(Point const &point) noexcept {
38 x *= point.x;
39 y *= point.y;
67 size_t operator()(ABI47_0_0facebook::ABI47_0_0React::Point const &point) const noexcept {
[all …]
H A DABI47_0_0Size.h26 Size &operator+=(Point const &point) noexcept {
27 width += point.x;
28 height += point.y;
32 Size &operator*=(Point const &point) noexcept {
33 width *= point.x;
34 height *= point.y;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI48_0_0Point.h25 Point &operator+=(Point const &point) noexcept {
26 x += point.x;
27 y += point.y;
31 Point &operator-=(Point const &point) noexcept {
32 x -= point.x;
33 y -= point.y;
37 Point &operator*=(Point const &point) noexcept {
38 x *= point.x;
39 y *= point.y;
67 size_t operator()(ABI48_0_0facebook::ABI48_0_0React::Point const &point) const noexcept {
[all …]
H A DABI48_0_0Size.h26 Size &operator+=(Point const &point) noexcept {
27 width += point.x;
28 height += point.y;
32 Size &operator*=(Point const &point) noexcept {
33 width *= point.x;
34 height *= point.y;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/graphics/
H A DABI49_0_0Point.h25 Point &operator+=(Point const &point) noexcept {
26 x += point.x;
27 y += point.y;
31 Point &operator-=(Point const &point) noexcept {
32 x -= point.x;
33 y -= point.y;
37 Point &operator*=(Point const &point) noexcept {
38 x *= point.x;
39 y *= point.y;
67 size_t operator()(ABI49_0_0facebook::ABI49_0_0React::Point const &point) const noexcept {
[all …]
H A DABI49_0_0Size.h26 Size &operator+=(Point const &point) noexcept {
27 width += point.x;
28 height += point.y;
32 Size &operator*=(Point const &point) noexcept {
33 width *= point.x;
34 height *= point.y;
/expo/packages/expo-linear-gradient/build/
H A DLinearGradient.js21 function _normalizePoint(point) { argument
22 if (!point) {
25 if (Array.isArray(point) && point.length !== 2) {
29 return Array.isArray(point) ? point : [point.x, point.y];
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI49_0_0AIRMapPolylineRenderer.m13 - (void) addPoint:(CGPoint)point color:(UIColor*)color;
27 self.startPoint = point;
28 self.endPoint = point;
29 CGPathMoveToPoint(self.path, nil, point.x, point.y);
35 self.endPoint = point;
37 CGPathAddLineToPoint(self.path, nil, point.x, point.y);
102 CGPoint point = [self pointForIndex:i];
104 CGPathMoveToPoint(path, nil, point.x, point.y);
107 CGPathAddLineToPoint(path, nil, point.x, point.y);
119 CGPoint point = [self pointForIndex:i];
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI48_0_0AIRMapPolylineRenderer.m13 - (void) addPoint:(CGPoint)point color:(UIColor*)color;
27 self.startPoint = point;
28 self.endPoint = point;
29 CGPathMoveToPoint(self.path, nil, point.x, point.y);
35 self.endPoint = point;
37 CGPathAddLineToPoint(self.path, nil, point.x, point.y);
102 CGPoint point = [self pointForIndex:i];
104 CGPathMoveToPoint(path, nil, point.x, point.y);
107 CGPathAddLineToPoint(path, nil, point.x, point.y);
119 CGPoint point = [self pointForIndex:i];
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI47_0_0AIRMapPolylineRenderer.m13 - (void) addPoint:(CGPoint)point color:(UIColor*)color;
27 self.startPoint = point;
28 self.endPoint = point;
29 CGPathMoveToPoint(self.path, nil, point.x, point.y);
35 self.endPoint = point;
37 CGPathAddLineToPoint(self.path, nil, point.x, point.y);
102 CGPoint point = [self pointForIndex:i];
104 CGPathMoveToPoint(path, nil, point.x, point.y);
107 CGPathAddLineToPoint(path, nil, point.x, point.y);
119 CGPoint point = [self pointForIndex:i];
[all …]
/expo/ios/Exponent/Versioned/Core/Api/Components/Maps/
H A DAIRMapPolylineRenderer.m13 - (void) addPoint:(CGPoint)point color:(UIColor*)color;
27 self.startPoint = point;
28 self.endPoint = point;
29 CGPathMoveToPoint(self.path, nil, point.x, point.y);
35 self.endPoint = point;
37 CGPathAddLineToPoint(self.path, nil, point.x, point.y);
102 CGPoint point = [self pointForIndex:i];
104 CGPathMoveToPoint(path, nil, point.x, point.y);
107 CGPathAddLineToPoint(path, nil, point.x, point.y);
119 CGPoint point = [self pointForIndex:i];
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/graphics/tests/
H A DABI47_0_0TransformTest.cpp24 auto point = ABI47_0_0facebook::ABI47_0_0React::Point{100, 200}; in TEST()
25 auto translatedPoint = point * Transform::Translate(-50, -100, 0); in TEST()
32 auto point = ABI47_0_0facebook::ABI47_0_0React::Point{100, 200}; in TEST()
34 auto rect = ABI47_0_0facebook::ABI47_0_0React::Rect{point, size}; in TEST()
45 auto point = ABI47_0_0facebook::ABI47_0_0React::Point{10, 10}; in TEST()
47 auto rect = ABI47_0_0facebook::ABI47_0_0React::Rect{point, size}; in TEST()
58 auto point = ABI47_0_0facebook::ABI47_0_0React::Point{100, 200}; in TEST()
60 auto rect = ABI47_0_0facebook::ABI47_0_0React::Rect{point, size}; in TEST()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/graphics/tests/
H A DABI49_0_0TransformTest.cpp24 auto point = ABI49_0_0facebook::ABI49_0_0React::Point{100, 200}; in TEST()
25 auto translatedPoint = point * Transform::Translate(-50, -100, 0); in TEST()
32 auto point = ABI49_0_0facebook::ABI49_0_0React::Point{100, 200}; in TEST()
34 auto rect = ABI49_0_0facebook::ABI49_0_0React::Rect{point, size}; in TEST()
52 auto point = ABI49_0_0facebook::ABI49_0_0React::Point{10, 10}; in TEST()
54 auto rect = ABI49_0_0facebook::ABI49_0_0React::Rect{point, size}; in TEST()
65 auto point = ABI49_0_0facebook::ABI49_0_0React::Point{100, 200}; in TEST()
67 auto rect = ABI49_0_0facebook::ABI49_0_0React::Rect{point, size}; in TEST()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/graphics/tests/
H A DABI48_0_0TransformTest.cpp24 auto point = ABI48_0_0facebook::ABI48_0_0React::Point{100, 200}; in TEST()
25 auto translatedPoint = point * Transform::Translate(-50, -100, 0); in TEST()
32 auto point = ABI48_0_0facebook::ABI48_0_0React::Point{100, 200}; in TEST()
34 auto rect = ABI48_0_0facebook::ABI48_0_0React::Rect{point, size}; in TEST()
52 auto point = ABI48_0_0facebook::ABI48_0_0React::Point{10, 10}; in TEST()
54 auto rect = ABI48_0_0facebook::ABI48_0_0React::Rect{point, size}; in TEST()
65 auto point = ABI48_0_0facebook::ABI48_0_0React::Point{100, 200}; in TEST()
67 auto rect = ABI48_0_0facebook::ABI48_0_0React::Rect{point, size}; in TEST()
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h30 JsiSkPoint(std::shared_ptr<RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
32 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
54 const SkPoint &point) { in toValue() argument
56 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
69 auto point = in createCtor()
75 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h30 JsiSkPoint(std::shared_ptr<ABI48_0_0RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
32 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
54 const SkPoint &point) { in toValue() argument
56 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
69 auto point = in createCtor()
75 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h31 JsiSkPoint(std::shared_ptr<ABI47_0_0RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
33 std::move(context), std::make_shared<SkPoint>(point)){} in JSI_EXPORT_PROPERTY_GETTERS()
57 const SkPoint &point) { in toValue() argument
59 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
72 auto point = in createCtor()
77 runtime, std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h31 JsiSkPoint(std::shared_ptr<RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
33 std::move(context), std::make_shared<SkPoint>(point)){} in JSI_EXPORT_PROPERTY_GETTERS()
57 const SkPoint &point) { in toValue() argument
59 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
72 auto point = in createCtor()
77 runtime, std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/android/vendored/sdk47/@shopify/react-native-skia/android/cpp/rnskia-android/
H A DRNSkAndroidView.h84 RNSkTouchInfo point; in updateTouchPoints() local
85 point.x = pin[i] / scale; in updateTouchPoints()
86 point.y = pin[i + 1] / scale; in updateTouchPoints()
87 point.force = pin[i + 2]; in updateTouchPoints()
88 point.type = (RNSkia::RNSkTouchInfo::TouchType) pin[i + 3]; in updateTouchPoints()
89 point.id = pin[i + 4]; in updateTouchPoints()
90 points.push_back(point); in updateTouchPoints()
/expo/android/vendored/sdk48/@shopify/react-native-skia/android/cpp/rnskia-android/
H A DRNSkAndroidView.h80 RNSkTouchInfo point; in updateTouchPoints() local
81 point.x = pin[i] / scale; in updateTouchPoints()
82 point.y = pin[i + 1] / scale; in updateTouchPoints()
83 point.force = pin[i + 2]; in updateTouchPoints()
84 point.type = (RNSkia::RNSkTouchInfo::TouchType)pin[i + 3]; in updateTouchPoints()
85 point.id = pin[i + 4]; in updateTouchPoints()
86 points.push_back(point); in updateTouchPoints()
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h35 JsiSkPoint(std::shared_ptr<RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
37 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
59 const SkPoint &point) { in toValue() argument
61 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
74 auto point = in createCtor()
80 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h35 JsiSkPoint(std::shared_ptr<ABI49_0_0RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
37 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
59 const SkPoint &point) { in toValue() argument
61 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
74 auto point = in createCtor()
80 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h35 JsiSkPoint(std::shared_ptr<RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
37 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
59 const SkPoint &point) { in toValue() argument
61 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
74 auto point = in createCtor()
80 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkPoint.h35 JsiSkPoint(std::shared_ptr<RNSkPlatformContext> context, const SkPoint &point) in JSI_EXPORT_PROPERTY_GETTERS()
37 std::move(context), std::make_shared<SkPoint>(point)) {} in JSI_EXPORT_PROPERTY_GETTERS()
59 const SkPoint &point) { in toValue() argument
61 runtime, std::make_shared<JsiSkPoint>(std::move(context), point)); in toValue()
74 auto point = in createCtor()
80 std::make_shared<JsiSkPoint>(std::move(context), std::move(point))); in createCtor()
/expo/android/vendored/sdk49/@shopify/react-native-skia/android/cpp/rnskia-android/
H A DRNSkAndroidView.h84 RNSkTouchInfo point; in updateTouchPoints() local
85 point.x = pin[i] / scale; in updateTouchPoints()
86 point.y = pin[i + 1] / scale; in updateTouchPoints()
87 point.force = pin[i + 2]; in updateTouchPoints()
88 point.type = (RNSkia::RNSkTouchInfo::TouchType)pin[i + 3]; in updateTouchPoints()
89 point.id = pin[i + 4]; in updateTouchPoints()
90 points.push_back(point); in updateTouchPoints()

12345678910>>...23