Home
last modified time | relevance | path

Searched refs:parentView (Results 1 – 25 of 44) sorted by relevance

12

/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementTransitionItem.java130 ViewParent parentView = getView().getParent(); in getClippedLayout() local
132 while (parentView != null) { in getClippedLayout()
133 if (!(parentView instanceof ViewGroup)) break; in getClippedLayout()
134 ViewGroup viewGroup = (ViewGroup) parentView; in getClippedLayout()
159 if (parentView == ancestorView) { in getClippedLayout()
162 parentView = parentView.getParent(); in getClippedLayout()
H A DRNSharedElementStyle.java247 ViewParent parentView = view.getParent(); in getAbsoluteViewTransform() local
249 while (parentView instanceof View && parentView != null) { in getAbsoluteViewTransform()
250 Matrix parentMatrix = ((View) parentView).getMatrix(); in getAbsoluteViewTransform()
263 parentView = parentView.getParent(); in getAbsoluteViewTransform()
265 if (parentView == null) { in getAbsoluteViewTransform()
/expo/android/vendored/sdk48/react-native-reanimated/android/src/main/java/abi48_0_0/com/swmansion/reanimated/
H A DNativeMethodsHelper.java103 View parentView = (View) parent; in mapRectFromViewToWindowCoords() local
105 rect.offset(-parentView.getScrollX(), -parentView.getScrollY()); in mapRectFromViewToWindowCoords()
107 matrix = parentView.getMatrix(); in mapRectFromViewToWindowCoords()
112 rect.offset(parentView.getLeft(), parentView.getTop()); in mapRectFromViewToWindowCoords()
114 parent = parentView.getParent(); in mapRectFromViewToWindowCoords()
/expo/android/vendored/unversioned/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/
H A DNativeMethodsHelper.java98 View parentView = (View) parent; in mapRectFromViewToWindowCoords() local
100 rect.offset(-parentView.getScrollX(), -parentView.getScrollY()); in mapRectFromViewToWindowCoords()
102 matrix = parentView.getMatrix(); in mapRectFromViewToWindowCoords()
107 rect.offset(parentView.getLeft(), parentView.getTop()); in mapRectFromViewToWindowCoords()
109 parent = parentView.getParent(); in mapRectFromViewToWindowCoords()
/expo/android/vendored/sdk47/react-native-reanimated/android/src/main/java/abi47_0_0/com/swmansion/reanimated/
H A DNativeMethodsHelper.java103 View parentView = (View) parent; in mapRectFromViewToWindowCoords() local
105 rect.offset(-parentView.getScrollX(), -parentView.getScrollY()); in mapRectFromViewToWindowCoords()
107 matrix = parentView.getMatrix(); in mapRectFromViewToWindowCoords()
112 rect.offset(parentView.getLeft(), parentView.getTop()); in mapRectFromViewToWindowCoords()
114 parent = parentView.getParent(); in mapRectFromViewToWindowCoords()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementTransitionItem.java130 ViewParent parentView = getView().getParent(); in getClippedLayout() local
132 while (parentView != null) { in getClippedLayout()
133 if (!(parentView instanceof ViewGroup)) break; in getClippedLayout()
134 ViewGroup viewGroup = (ViewGroup) parentView; in getClippedLayout()
159 if (parentView == ancestorView) { in getClippedLayout()
162 parentView = parentView.getParent(); in getClippedLayout()
H A DRNSharedElementStyle.java247 ViewParent parentView = view.getParent(); in getAbsoluteViewTransform() local
249 while (parentView instanceof View && parentView != null) { in getAbsoluteViewTransform()
250 Matrix parentMatrix = ((View) parentView).getMatrix(); in getAbsoluteViewTransform()
263 parentView = parentView.getParent(); in getAbsoluteViewTransform()
265 if (parentView == null) { in getAbsoluteViewTransform()
/expo/android/vendored/sdk49/react-native-reanimated/android/src/main/java/abi49_0_0/com/swmansion/reanimated/
H A DNativeMethodsHelper.java98 View parentView = (View) parent; in mapRectFromViewToWindowCoords() local
100 rect.offset(-parentView.getScrollX(), -parentView.getScrollY()); in mapRectFromViewToWindowCoords()
102 matrix = parentView.getMatrix(); in mapRectFromViewToWindowCoords()
107 rect.offset(parentView.getLeft(), parentView.getTop()); in mapRectFromViewToWindowCoords()
109 parent = parentView.getParent(); in mapRectFromViewToWindowCoords()
/expo/ios/vendored/sdk47/react-native-svg/apple/
H A DABI47_0_0RNSVGUIKit.macos.mm32 NSView *parentView = [self superview];
33 if ([parentView isKindOfClass:[ABI47_0_0RNSVGView class]]) {
34 return [(ABI47_0_0RNSVGView *)parentView tintColor];
/expo/ios/vendored/sdk48/react-native-svg/apple/
H A DABI48_0_0RNSVGUIKit.macos.mm32 NSView *parentView = [self superview];
33 if ([parentView isKindOfClass:[ABI48_0_0RNSVGView class]]) {
34 return [(ABI48_0_0RNSVGView *)parentView tintColor];
/expo/ios/vendored/unversioned/react-native-svg/apple/
H A DRNSVGUIKit.macos.mm32 NSView *parentView = [self superview];
33 if ([parentView isKindOfClass:[RNSVGView class]]) {
34 return [(RNSVGView *)parentView tintColor];
/expo/ios/vendored/sdk49/react-native-svg/apple/
H A DABI49_0_0RNSVGUIKit.macos.mm32 NSView *parentView = [self superview];
33 if ([parentView isKindOfClass:[ABI49_0_0RNSVGView class]]) {
34 return [(ABI49_0_0RNSVGView *)parentView tintColor];
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/
H A DABI49_0_0UIView+React.m223 UIView *parentView = (UIView *)self.ABI49_0_0ReactSuperview;
224 while (parentView) {
225 if (parentView.ABI49_0_0ReactViewController) {
226 [parentView.ABI49_0_0ReactViewController addChildViewController:controller];
227 [controller didMoveToParentViewController:parentView.ABI49_0_0ReactViewController];
230 parentView = (UIView *)parentView.ABI49_0_0ReactSuperview;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/
H A DABI48_0_0UIView+React.m223 UIView *parentView = (UIView *)self.ABI48_0_0ReactSuperview;
224 while (parentView) {
225 if (parentView.ABI48_0_0ReactViewController) {
226 [parentView.ABI48_0_0ReactViewController addChildViewController:controller];
227 [controller didMoveToParentViewController:parentView.ABI48_0_0ReactViewController];
230 parentView = (UIView *)parentView.ABI48_0_0ReactSuperview;
H A DABI48_0_0RCTView.h34 + (void)autoAdjustInsetsForView:(UIView<ABI48_0_0RCTAutoInsetsProtocol> *)parentView
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/
H A DABI47_0_0UIView+React.m223 UIView *parentView = (UIView *)self.ABI47_0_0ReactSuperview;
224 while (parentView) {
225 if (parentView.ABI47_0_0ReactViewController) {
226 [parentView.ABI47_0_0ReactViewController addChildViewController:controller];
227 [controller didMoveToParentViewController:parentView.ABI47_0_0ReactViewController];
230 parentView = (UIView *)parentView.ABI47_0_0ReactSuperview;
H A DABI47_0_0RCTView.h33 + (void)autoAdjustInsetsForView:(UIView<ABI47_0_0RCTAutoInsetsProtocol> *)parentView
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI48_0_0primitives.h74 ShadowView parentView; member
H A DABI48_0_0LayoutAnimationDriver.cpp59 keyframe.viewPrev, mutatedShadowView, keyframe.parentView)); in animationMutationsForFrame()
H A DABI48_0_0LayoutAnimationKeyFrameManager.cpp1257 keyframe.viewPrev, mutatedShadowView, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1268 mutatedShadowView, keyframe.viewEnd, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1277 keyframe.viewPrev, keyframe.viewEnd, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1336 if (animatedKeyFrame.parentView.tag != mutation.parentShadowView.tag) { in adjustImmediateMutationIndicesForDelayedMutations()
1441 if (animatedKeyFrame.parentView.tag != mutation.parentShadowView.tag) { in adjustDelayedMutationIndicesForMutation()
1559 animatedKeyFrame.parentView.tag == baselineTag && in getAndEraseConflictingAnimations()
1560 animatedKeyFrame.parentView.tag != 0); in getAndEraseConflictingAnimations()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI47_0_0primitives.h74 ShadowView parentView; member
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI49_0_0primitives.h74 ShadowView parentView; member
H A DABI49_0_0LayoutAnimationDriver.cpp59 keyframe.viewPrev, mutatedShadowView, keyframe.parentView)); in animationMutationsForFrame()
H A DABI49_0_0LayoutAnimationKeyFrameManager.cpp1268 keyframe.viewPrev, mutatedShadowView, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1279 mutatedShadowView, keyframe.viewEnd, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1288 keyframe.viewPrev, keyframe.viewEnd, keyframe.parentView); in queueFinalMutationsForCompletedKeyFrame()
1347 if (animatedKeyFrame.parentView.tag != mutation.parentShadowView.tag) { in adjustImmediateMutationIndicesForDelayedMutations()
1452 if (animatedKeyFrame.parentView.tag != mutation.parentShadowView.tag) { in adjustDelayedMutationIndicesForMutation()
1570 animatedKeyFrame.parentView.tag == baselineTag && in getAndEraseConflictingAnimations()
1571 animatedKeyFrame.parentView.tag != 0); in getAndEraseConflictingAnimations()
/expo/android/expoview/src/main/java/host/exp/exponent/kernel/
H A DDevMenuManager.kt110 val parentView = it.parent as ViewGroup? in hideInActivity() constant
116 parentView?.removeView(it) in hideInActivity()

12