Home
last modified time | relevance | path

Searched refs:startTime (Results 1 – 25 of 71) sorted by relevance

123

/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI48_0_0utils.cpp21 uint64_t startTime = animation.startTime; in calculateAnimationProgress() local
23 uint64_t endTime = startTime + delay + (uint64_t)mutationConfig.duration; in calculateAnimationProgress()
28 if (now < startTime + delay) { in calculateAnimationProgress()
33 (double)(endTime - delay - now) / (double)(endTime - animation.startTime); in calculateAnimationProgress()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI47_0_0utils.cpp22 uint64_t startTime = animation.startTime; in calculateAnimationProgress() local
24 uint64_t endTime = startTime + delay + (uint64_t)mutationConfig.duration; in calculateAnimationProgress()
29 if (now < startTime + delay) { in calculateAnimationProgress()
34 (double)(endTime - delay - now) / (double)(endTime - animation.startTime); in calculateAnimationProgress()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI49_0_0utils.cpp21 uint64_t startTime = animation.startTime; in calculateAnimationProgress() local
23 uint64_t endTime = startTime + delay + (uint64_t)mutationConfig.duration; in calculateAnimationProgress()
28 if (now < startTime + delay) { in calculateAnimationProgress()
33 (double)(endTime - delay - now) / (double)(endTime - animation.startTime); in calculateAnimationProgress()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/WebPerformance/
H A DABI49_0_0NativePerformance.cpp31 double startTime, in mark() argument
33 PerformanceEntryReporter::getInstance().mark(name, startTime, duration); in mark()
39 double startTime, in measure() argument
45 name, startTime, endTime, duration, startMark, endMark); in measure()
64 result.startTime = startupLogger.getAppStartTime(); in getABI49_0_0ReactNativeStartupTiming()
H A DABI49_0_0PerformanceEntryReporter.cpp120 double startTime, in mark() argument
138 mark.timeStamp = startTime; in mark()
144 startTime, in mark()
215 double startTime, in measure() argument
220 double startTimeVal = startMark ? getMarkTime(*startMark) : startTime; in measure()
225 PerformanceMeasure{name, startTime, endTime}; in measure()
253 double startTime, in event() argument
261 startTime, in event()
399 entry.startTime, in onEventEnd()
400 timeStamp - entry.startTime, in onEventEnd()
H A DABI49_0_0NativePerformance.h45 mark(jsi::Runtime &rt, std::string name, double startTime, double duration);
50 double startTime,
H A DABI49_0_0PerformanceEntryReporter.h104 void mark(const std::string &name, double startTime, double duration);
108 double startTime,
124 double startTime,
161 double startTime{0.0};
/expo/android/app/src/androidTest/java/host/exp/exponent/utils/
H A DElapsedTimeIdlingResource.kt7 private var startTime: Long = 0 variable in host.exp.exponent.utils.ElapsedTimeIdlingResource
14 startTime = System.currentTimeMillis() in sleep()
26 val elapsed = System.currentTimeMillis() - startTime in isIdleNow()
/expo/packages/@expo/cli/src/start/server/metro/
H A DTerminalReporter.ts109 const startTime = this._bundleTimers.get(event.buildID); constant
112 if (startTime == null) {
116 this.bundleBuildEnded(event, startTime ? Date.now() - startTime : 0);
H A DMetroTerminalReporter.ts26 _getElapsedTime(startTime: number): number {
27 return Date.now() - startTime;
43 const startTime = this._bundleTimers.get(progress.bundleDetails.buildID!); constant
44 const time = startTime != null ? chalk.dim(this._getElapsedTime(startTime) + 'ms') : '';
/expo/packages/expo-dev-menu/android/src/main/java/expo/modules/devmenu/detectors/
H A DThreeFingerLongPressDetector.kt22 private var startTime = Long.MAX_VALUE variable in expo.modules.devmenu.detectors.ThreeFingerLongPressDetector
31 startTime = SystemClock.uptimeMillis() in onTouchEvent()
55 if (SystemClock.uptimeMillis() - startTime >= NEEDED_PRESS_TIME) { in onTouchEvent()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Utilities/
H A DIPerformanceLogger.d.ts11 startTime: number;
26 startTime: number,
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Utilities/
H A DcreatePerformanceLogger.d.ts11 startTime: number;
26 startTime: number,
/expo/android/vendored/unversioned/react-native-gesture-handler/android/src/main/java/com/swmansion/gesturehandler/core/
H A DLongPressGestureHandler.kt12 get() = (previousTime - startTime).toInt()
17 private var startTime: Long = 0 variable
43 startTime = previousTime in onHandle()
/expo/android/vendored/sdk47/react-native-gesture-handler/android/src/main/java/abi47_0_0/com/swmansion/gesturehandler/core/
H A DLongPressGestureHandler.kt12 get() = (previousTime - startTime).toInt()
17 private var startTime: Long = 0 variable
43 startTime = previousTime in onHandle()
/expo/android/vendored/sdk48/react-native-gesture-handler/android/src/main/java/abi48_0_0/com/swmansion/gesturehandler/core/
H A DLongPressGestureHandler.kt12 get() = (previousTime - startTime).toInt()
17 private var startTime: Long = 0 variable
43 startTime = previousTime in onHandle()
/expo/android/vendored/sdk49/react-native-gesture-handler/android/src/main/java/abi49_0_0/com/swmansion/gesturehandler/core/
H A DLongPressGestureHandler.kt12 get() = (previousTime - startTime).toInt()
17 private var startTime: Long = 0 variable
43 startTime = previousTime in onHandle()
/expo/tools/src/commands/
H A DPrebuildPackages.ts45 const startTime = performance.now(); constant
54 const timeDiff = (endTime - startTime) / 1000;
/expo/packages/expo-sensors/ios/
H A DPedometerModule.swift23 AsyncFunction("getStepCountAsync") { (startTime: Double, endTime: Double, promise: Promise) in in definition()
24 let startDate = Date(timeIntervalSince1970: startTime / 1000.0) in definition()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/safeareacontext/
H A DSafeAreaView.kt67 val startTime = System.nanoTime() in waitForReactLayout() constant
85 waitTime += System.nanoTime() - startTime in waitForReactLayout()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/safeareacontext/
H A DSafeAreaView.kt76 val startTime = System.nanoTime() in waitForReactLayout() constant
94 waitTime += System.nanoTime() - startTime in waitForReactLayout()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/safeareacontext/
H A DSafeAreaView.kt67 val startTime = System.nanoTime() in waitForReactLayout() constant
85 waitTime += System.nanoTime() - startTime in waitForReactLayout()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/safeareacontext/
H A DSafeAreaView.kt75 val startTime = System.nanoTime() in waitForReactLayout() constant
93 waitTime += System.nanoTime() - startTime in waitForReactLayout()
/expo/ios/vendored/sdk49/react-native-gesture-handler/ios/Handlers/
H A DABI49_0_0RNLongPressHandler.m18 uint64_t startTime; field
64 startTime = mach_absolute_time();
114 …return (NSUInteger)(((previousTime - startTime) * sTimebaseInfo.numer / (sTimebaseInfo.denom * 100…
/expo/ios/vendored/unversioned/react-native-gesture-handler/ios/Handlers/
H A DRNLongPressHandler.m18 uint64_t startTime; field
64 startTime = mach_absolute_time();
114 …return (NSUInteger)(((previousTime - startTime) * sTimebaseInfo.numer / (sTimebaseInfo.denom * 100…

123