| /expo/packages/expo-av/android/src/test/java/expo/modules/av/progress/ |
| H A D | ProgressLooperTest.kt | 64 looper.loop(1000, callback) in callback not invoked prematurely() 70 looper.loop(1000L, callback) in callback invoked once after time passed() 78 looper.loop(1000, callback) in callback invoked twice after two timeouts() 88 looper.loop(1000, callback) in callback invoked once after twice too big timeout() 110 looper.loop(100, callback) in callback not invoked earlier if interval shortened() 126 looper.loop(1000, callback) in callback invoked earlier even if interval lengthened() 128 looper.loop(2000, callback) in callback invoked earlier even if interval lengthened() 137 looper.loop(1000, callback) in callback not invoked later even if interval lengthened() 139 looper.loop(2000, callback) in callback not invoked later even if interval lengthened() 188 looper.loop(1000) { } in new listener is notified after registration() [all …]
|
| /expo/packages/expo-dev-launcher/bundle/components/ |
| H A D | PulseIndicator.tsx | 23 const loop = React.useRef( 24 Animated.loop( 35 loop.current.start(); 38 loop.current.stop(); 39 loop.current.reset();
|
| H A D | ActivityIndicator.tsx | 11 Animated.loop(
|
| /expo/ios/vendored/sdk49/@shopify/react-native-skia/ios/RNSkia-iOS/ |
| H A D | ABI49_0_0DisplayLink.mm | 7 // check whether the loop is already running 13 // add the display link to the main run loop 20 // check whether the loop is already stopped 22 // if the display link is present, it gets invalidated (loop stops)
|
| /expo/ios/vendored/sdk47/@shopify/react-native-skia/ios/RNSkia-iOS/ |
| H A D | ABI47_0_0DisplayLink.mm | 8 // check whether the loop is already running 14 // add the display link to the main run loop 21 // check whether the loop is already stopped 23 // if the display link is present, it gets invalidated (loop stops)
|
| /expo/ios/vendored/unversioned/@shopify/react-native-skia/ios/RNSkia-iOS/ |
| H A D | DisplayLink.mm | 7 // check whether the loop is already running 13 // add the display link to the main run loop 20 // check whether the loop is already stopped 22 // if the display link is present, it gets invalidated (loop stops)
|
| /expo/ios/vendored/sdk48/@shopify/react-native-skia/ios/RNSkia-iOS/ |
| H A D | ABI48_0_0DisplayLink.mm | 8 // check whether the loop is already running 14 // add the display link to the main run loop 21 // check whether the loop is already stopped 23 // if the display link is present, it gets invalidated (loop stops)
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/lottie/ |
| H A D | LottieAnimationViewPropertyManager.java | 34 private Boolean loop; field in LottieAnimationViewPropertyManager 72 public void setLoop(boolean loop) { in setLoop() argument 73 this.loop = loop; in setLoop() 141 if (loop != null) { in commitChanges() 142 view.setRepeatCount(loop ? LottieDrawable.INFINITE : 0); in commitChanges() 143 loop = null; in commitChanges()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/lottie/ |
| H A D | LottieAnimationViewPropertyManager.java | 34 private Boolean loop; field in LottieAnimationViewPropertyManager 72 public void setLoop(boolean loop) { in setLoop() argument 73 this.loop = loop; in setLoop() 141 if (loop != null) { in commitChanges() 142 view.setRepeatCount(loop ? LottieDrawable.INFINITE : 0); in commitChanges() 143 loop = null; in commitChanges()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/lottie/ |
| H A D | LottieAnimationViewPropertyManager.java | 34 private Boolean loop; field in LottieAnimationViewPropertyManager 72 public void setLoop(boolean loop) { in setLoop() argument 73 this.loop = loop; in setLoop() 141 if (loop != null) { in commitChanges() 142 view.setRepeatCount(loop ? LottieDrawable.INFINITE : 0); in commitChanges() 143 loop = null; in commitChanges()
|
| /expo/ios/vendored/sdk49/lottie-react-native/src/ios/LottieReactNative/ |
| H A D | ContainerView.swift | 7 private var loop: LottieLoopMode = .playOnce variable 50 loop = isLooping ? .loop : .playOnce in setLoop() 51 animationView?.loopMode = loop in setLoop() 158 …animationView?.play(fromFrame: fromFrame, toFrame: toFrame, loopMode: self.loop, completion: callb… in play() 203 animationView.loopMode = loop in applyProperties()
|
| H A D | LRNAnimationViewManagerObjC.m | 11 ABI49_0_0RCT_EXPORT_VIEW_PROPERTY(loop, BOOL); category
|
| /expo/ios/vendored/sdk48/lottie-react-native/src/ios/LottieReactNative/ |
| H A D | ContainerView.swift | 7 private var loop: LottieLoopMode = .playOnce variable 50 loop = isLooping ? .loop : .playOnce in setLoop() 51 animationView?.loopMode = loop in setLoop() 158 …animationView?.play(fromFrame: fromFrame, toFrame: toFrame, loopMode: self.loop, completion: callb… in play() 203 animationView.loopMode = loop in applyProperties()
|
| H A D | LRNAnimationViewManagerObjC.m | 11 ABI48_0_0RCT_EXPORT_VIEW_PROPERTY(loop, BOOL); category
|
| /expo/ios/vendored/sdk47/lottie-react-native/src/ios/LottieReactNative/ |
| H A D | ContainerView.swift | 7 private var loop: LottieLoopMode = .playOnce variable 50 loop = isLooping ? .loop : .playOnce in setLoop() 51 animationView?.loopMode = loop in setLoop() 158 …animationView?.play(fromFrame: fromFrame, toFrame: toFrame, loopMode: self.loop, completion: callb… in play() 203 animationView.loopMode = loop in applyProperties()
|
| H A D | LRNAnimationViewManagerObjC.m | 11 ABI47_0_0RCT_EXPORT_VIEW_PROPERTY(loop, BOOL); category
|
| /expo/docs/components/plugins/ |
| H A D | Video.tsx | 16 loop?: boolean; 19 const Video = ({ controls, spaceAfter, url, file, loop = true }: VideoProps) => { 46 loop={loop}
|
| /expo/ios/vendored/unversioned/lottie-react-native/ios/LottieReactNative/ |
| H A D | ContainerView.swift | 18 private var loop: LottieLoopMode = .playOnce variable 86 loop = isLooping ? .loop : .playOnce in setLoop() 87 animationView?.loopMode = loop in setLoop() 257 …animationView?.play(fromFrame: fromFrame, toFrame: toFrame, loopMode: self.loop, completion: compl… in play() 295 animationView?.loopMode = loop in replaceAnimationView()
|
| H A D | LRNAnimationViewManagerObjC.m | 12 RCT_EXPORT_VIEW_PROPERTY(loop, BOOL); category
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/ |
| H A D | .clang-tidy | 9 modernize-loop-convert, 33 performance-implicit-conversion-in-loop,
|
| /expo/android/vendored/unversioned/lottie-react-native/android/src/main/java/com/airbnb/android/react/lottie/ |
| H A D | LottieAnimationViewPropertyManager.kt | 55 var loop: Boolean? = null in <lambda>() variable 112 loop?.let { in <lambda>() 114 loop = null in <lambda>()
|
| H A D | LottieAnimationViewManagerImpl.kt | 257 loop: Boolean, in setLoop() 260 viewManager.loop = loop in setLoop()
|
| /expo/ios/vendored/unversioned/lottie-react-native/ios/Fabric/ |
| H A D | LottieAnimationViewComponentView.mm | 72 if(oldLottieProps.loop != newLottieProps.loop) { 73 [_view setLoop:newLottieProps.loop];
|
| /expo/apps/native-component-list/src/screens/GL/ |
| H A D | GLCameraScreen.tsx | 106 // Render loop 107 const loop = () => { 108 this._rafID = requestAnimationFrame(loop); 124 loop();
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | MaskedViewScreen.tsx | 28 Animated.loop( 38 Animated.loop(
|