Home
last modified time | relevance | path

Searched refs:newProps (Results 1 – 25 of 134) sorted by relevance

123456

/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI49_0_0ViewPropsMapBuffer.cpp37 ViewProps const &newProps = *this; in propsDiffMapBuffer() local
41 switch (newProps.backfaceVisibility) { in propsDiffMapBuffer()
83 if (oldProps.elevation != newProps.elevation) { in propsDiffMapBuffer()
87 if (oldProps.focusable != newProps.focusable) { in propsDiffMapBuffer()
95 if (oldProps.hitSlop != newProps.hitSlop) { in propsDiffMapBuffer()
112 newProps.needsOffscreenAlphaCompositing) { in propsDiffMapBuffer()
118 if (oldProps.opacity != newProps.opacity) { in propsDiffMapBuffer()
124 switch (newProps.pointerEvents) { in propsDiffMapBuffer()
142 if (oldProps.events != newProps.events) { in propsDiffMapBuffer()
186 if (oldProps.testId != newProps.testId) { in propsDiffMapBuffer()
[all …]
H A DABI49_0_0AccessibilityPropsMapBuffer.cpp86 AccessibilityProps const &newProps = *this; in propsDiffMapBuffer() local
94 if (oldProps.accessibilityHint != newProps.accessibilityHint) { in propsDiffMapBuffer()
98 if (oldProps.accessibilityLabel != newProps.accessibilityLabel) { in propsDiffMapBuffer()
110 switch (newProps.accessibilityLiveRegion) { in propsDiffMapBuffer()
124 if (oldProps.accessibilityRole != newProps.accessibilityRole) { in propsDiffMapBuffer()
128 if (oldProps.accessibilityState != newProps.accessibilityState) { in propsDiffMapBuffer()
131 convertAccessibilityState(newProps.accessibilityState)); in propsDiffMapBuffer()
139 if (oldProps.accessible != newProps.accessible) { in propsDiffMapBuffer()
140 builder.putBool(AP_ACCESSIBLE, newProps.accessible); in propsDiffMapBuffer()
144 newProps.importantForAccessibility) { in propsDiffMapBuffer()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI48_0_0ViewPropsMapBuffer.cpp37 ViewProps const &newProps = *this; in propsDiffMapBuffer() local
41 switch (newProps.backfaceVisibility) { in propsDiffMapBuffer()
83 if (oldProps.elevation != newProps.elevation) { in propsDiffMapBuffer()
87 if (oldProps.focusable != newProps.focusable) { in propsDiffMapBuffer()
95 if (oldProps.hitSlop != newProps.hitSlop) { in propsDiffMapBuffer()
112 newProps.needsOffscreenAlphaCompositing) { in propsDiffMapBuffer()
118 if (oldProps.opacity != newProps.opacity) { in propsDiffMapBuffer()
124 switch (newProps.pointerEvents) { in propsDiffMapBuffer()
142 if (oldProps.events != newProps.events) { in propsDiffMapBuffer()
186 if (oldProps.testId != newProps.testId) { in propsDiffMapBuffer()
[all …]
H A DABI48_0_0AccessibilityPropsMapBuffer.cpp88 AccessibilityProps const &newProps = *this; in propsDiffMapBuffer() local
96 if (oldProps.accessibilityHint != newProps.accessibilityHint) { in propsDiffMapBuffer()
100 if (oldProps.accessibilityLabel != newProps.accessibilityLabel) { in propsDiffMapBuffer()
112 switch (newProps.accessibilityLiveRegion) { in propsDiffMapBuffer()
126 if (oldProps.accessibilityRole != newProps.accessibilityRole) { in propsDiffMapBuffer()
130 if (oldProps.accessibilityState != newProps.accessibilityState) { in propsDiffMapBuffer()
133 convertAccessibilityState(newProps.accessibilityState)); in propsDiffMapBuffer()
141 if (oldProps.accessible != newProps.accessible) { in propsDiffMapBuffer()
142 builder.putBool(AP_ACCESSIBLE, newProps.accessible); in propsDiffMapBuffer()
146 newProps.importantForAccessibility) { in propsDiffMapBuffer()
[all …]
/expo/packages/expo-camera/build/utils/
H A Dprops.js26 const newProps = convertNativeProps(props);
27 if (newProps.onBarCodeScanned) {
28 newProps.barCodeScannerEnabled = true;
30 if (newProps.onFacesDetected) {
31 newProps.faceDetectorEnabled = true;
34 delete newProps.ratio;
35 delete newProps.useCamera2Api;
38 delete newProps.poster;
40 return newProps;
/expo/packages/expo-camera/src/utils/
H A Dprops.ts45 const newProps = convertNativeProps(props); constant
47 if (newProps.onBarCodeScanned) {
48 newProps.barCodeScannerEnabled = true;
51 if (newProps.onFacesDetected) {
52 newProps.faceDetectorEnabled = true;
56 delete newProps.ratio;
57 delete newProps.useCamera2Api;
61 delete newProps.poster;
64 return newProps;
/expo/ios/vendored/sdk47/react-native-svg/apple/Elements/
H A DABI47_0_0RNSVGMask.mm44 const auto &newProps = *std::static_pointer_cast<const ABI47_0_0RNSVGMaskProps>(props);
48 if (ABI47_0_0RCTNSStringFromStringNilIfEmpty(newProps.height)) {
51 if (ABI47_0_0RCTNSStringFromStringNilIfEmpty(newProps.width)) {
56 if (newProps.maskTransform.size() == 6) {
58 newProps.maskTransform.at(0),
59 newProps.maskTransform.at(1),
60 newProps.maskTransform.at(2),
61 newProps.maskTransform.at(3),
62 newProps.maskTransform.at(4),
63 newProps.maskTransform.at(5));
[all …]
H A DABI47_0_0RNSVGPattern.mm58 newProps.patternTransform.at(0),
59 newProps.patternTransform.at(1),
60 newProps.patternTransform.at(2),
61 newProps.patternTransform.at(3),
62 newProps.patternTransform.at(4),
63 newProps.patternTransform.at(5));
65 self.minX = newProps.minX;
66 self.minY = newProps.minY;
67 self.vbWidth = newProps.vbWidth;
68 self.vbHeight = newProps.vbHeight;
[all …]
H A DABI47_0_0RNSVGLinearGradient.mm45 self.x1 = [ABI47_0_0RNSVGLength lengthWithString:ABI47_0_0RCTNSStringFromString(newProps.x1)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI47_0_0RNSVGRadialGradient.mm43 self.fx = [ABI47_0_0RNSVGLength lengthWithString:ABI47_0_0RCTNSStringFromString(newProps.fx)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI47_0_0RNSVGMarker.mm45 const auto &newProps = *std::static_pointer_cast<const ABI47_0_0RNSVGMarkerProps>(props);
47 self.refX = [ABI47_0_0RNSVGLength lengthWithString:ABI47_0_0RCTNSStringFromString(newProps.refX)];
51 self.markerUnits = ABI47_0_0RCTNSStringFromStringNilIfEmpty(newProps.markerUnits);
52 self.orient = ABI47_0_0RCTNSStringFromStringNilIfEmpty(newProps.orient);
54 self.minX = newProps.minX;
55 self.minY = newProps.minY;
56 self.vbWidth = newProps.vbWidth;
57 self.vbHeight = newProps.vbHeight;
58 self.align = ABI47_0_0RCTNSStringFromStringNilIfEmpty(newProps.align);
59 self.meetOrSlice = intToRNSVGVBMOS(newProps.meetOrSlice);
[all …]
/expo/ios/vendored/sdk48/react-native-svg/apple/Elements/
H A DABI48_0_0RNSVGMask.mm44 const auto &newProps = *std::static_pointer_cast<const ABI48_0_0RNSVGMaskProps>(props);
48 if (ABI48_0_0RCTNSStringFromStringNilIfEmpty(newProps.height)) {
51 if (ABI48_0_0RCTNSStringFromStringNilIfEmpty(newProps.width)) {
56 if (newProps.maskTransform.size() == 6) {
58 newProps.maskTransform.at(0),
59 newProps.maskTransform.at(1),
60 newProps.maskTransform.at(2),
61 newProps.maskTransform.at(3),
62 newProps.maskTransform.at(4),
63 newProps.maskTransform.at(5));
[all …]
H A DABI48_0_0RNSVGPattern.mm58 newProps.patternTransform.at(0),
59 newProps.patternTransform.at(1),
60 newProps.patternTransform.at(2),
61 newProps.patternTransform.at(3),
62 newProps.patternTransform.at(4),
63 newProps.patternTransform.at(5));
65 self.minX = newProps.minX;
66 self.minY = newProps.minY;
67 self.vbWidth = newProps.vbWidth;
68 self.vbHeight = newProps.vbHeight;
[all …]
H A DABI48_0_0RNSVGLinearGradient.mm45 self.x1 = [ABI48_0_0RNSVGLength lengthWithString:ABI48_0_0RCTNSStringFromString(newProps.x1)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI48_0_0RNSVGRadialGradient.mm43 self.fx = [ABI48_0_0RNSVGLength lengthWithString:ABI48_0_0RCTNSStringFromString(newProps.fx)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI48_0_0RNSVGMarker.mm45 const auto &newProps = *std::static_pointer_cast<const ABI48_0_0RNSVGMarkerProps>(props);
47 self.refX = [ABI48_0_0RNSVGLength lengthWithString:ABI48_0_0RCTNSStringFromString(newProps.refX)];
51 self.markerUnits = ABI48_0_0RCTNSStringFromStringNilIfEmpty(newProps.markerUnits);
52 self.orient = ABI48_0_0RCTNSStringFromStringNilIfEmpty(newProps.orient);
54 self.minX = newProps.minX;
55 self.minY = newProps.minY;
56 self.vbWidth = newProps.vbWidth;
57 self.vbHeight = newProps.vbHeight;
58 self.align = ABI48_0_0RCTNSStringFromStringNilIfEmpty(newProps.align);
59 self.meetOrSlice = intToRNSVGVBMOS(newProps.meetOrSlice);
[all …]
/expo/ios/vendored/sdk49/react-native-svg/apple/Elements/
H A DABI49_0_0RNSVGPattern.mm59 newProps.patternTransform.at(0),
60 newProps.patternTransform.at(1),
61 newProps.patternTransform.at(2),
62 newProps.patternTransform.at(3),
63 newProps.patternTransform.at(4),
64 newProps.patternTransform.at(5));
66 self.minX = newProps.minX;
67 self.minY = newProps.minY;
68 self.vbWidth = newProps.vbWidth;
69 self.vbHeight = newProps.vbHeight;
[all …]
H A DABI49_0_0RNSVGLinearGradient.mm45 self.x1 = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.x1)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI49_0_0RNSVGRadialGradient.mm43 self.fx = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.fx)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DABI49_0_0RNSVGMask.mm44 const auto &newProps = *std::static_pointer_cast<const ABI49_0_0RNSVGMaskProps>(props);
46 self.x = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.x)];
47 self.y = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.y)];
48 if (ABI49_0_0RCTNSStringFromStringNilIfEmpty(newProps.height)) {
49 …skheight = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.height)];
51 if (ABI49_0_0RCTNSStringFromStringNilIfEmpty(newProps.width)) {
52 …self.maskwidth = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.wi…
54 …self.maskUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSpaceOnUs…
55 …self.maskContentUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSp…
57 setCommonGroupProps(newProps, self);
H A DABI49_0_0RNSVGMarker.mm45 const auto &newProps = *std::static_pointer_cast<const ABI49_0_0RNSVGMarkerProps>(props);
47 self.refX = [ABI49_0_0RNSVGLength lengthWithString:ABI49_0_0RCTNSStringFromString(newProps.refX)];
51 self.markerUnits = ABI49_0_0RCTNSStringFromStringNilIfEmpty(newProps.markerUnits);
52 self.orient = ABI49_0_0RCTNSStringFromStringNilIfEmpty(newProps.orient);
54 self.minX = newProps.minX;
55 self.minY = newProps.minY;
56 self.vbWidth = newProps.vbWidth;
57 self.vbHeight = newProps.vbHeight;
58 self.align = ABI49_0_0RCTNSStringFromStringNilIfEmpty(newProps.align);
59 self.meetOrSlice = intToRNSVGVBMOS(newProps.meetOrSlice);
[all …]
/expo/ios/vendored/unversioned/react-native-svg/apple/Elements/
H A DRNSVGPattern.mm59 newProps.patternTransform.at(0),
60 newProps.patternTransform.at(1),
61 newProps.patternTransform.at(2),
62 newProps.patternTransform.at(3),
63 newProps.patternTransform.at(4),
64 newProps.patternTransform.at(5));
66 self.minX = newProps.minX;
67 self.minY = newProps.minY;
68 self.vbWidth = newProps.vbWidth;
69 self.vbHeight = newProps.vbHeight;
[all …]
H A DRNSVGLinearGradient.mm45 self.x1 = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.x1)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DRNSVGRadialGradient.mm43 self.fx = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.fx)];
49 if (newProps.gradient.size() > 0) {
51 for (auto number : newProps.gradient) {
57 if (newProps.gradientTransform.size() == 6) {
59 newProps.gradientTransform.at(0),
60 newProps.gradientTransform.at(1),
61 newProps.gradientTransform.at(2),
62 newProps.gradientTransform.at(3),
63 newProps.gradientTransform.at(4),
64 newProps.gradientTransform.at(5));
[all …]
H A DRNSVGMask.mm44 const auto &newProps = *std::static_pointer_cast<const RNSVGMaskProps>(props);
46 self.x = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.x)];
47 self.y = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.y)];
48 if (RCTNSStringFromStringNilIfEmpty(newProps.height)) {
49 self.maskheight = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.height)];
51 if (RCTNSStringFromStringNilIfEmpty(newProps.width)) {
52 self.maskwidth = [RNSVGLength lengthWithString:RCTNSStringFromString(newProps.width)];
54 …self.maskUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSpaceOnUs…
55 …self.maskContentUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSp…
57 setCommonGroupProps(newProps, self);

123456