Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 678) sorted by relevance

12345678910>>...28

/expo/android/vendored/sdk48/react-native-reanimated/android/src/main/java/abi48_0_0/com/swmansion/reanimated/nodes/
H A DBezierNode.java27 public float getInterpolation(float time) { in getInterpolation() argument
28 return getBezierCoordinateY(getXForTime(time)); in getInterpolation()
31 protected float getBezierCoordinateY(float time) { in getBezierCoordinateY() argument
35 return time * (c.y + time * (b.y + time * a.y)); in getBezierCoordinateY()
38 protected float getXForTime(float time) { in getXForTime() argument
39 float x = time; in getXForTime()
42 z = getBezierCoordinateX(x) - time; in getXForTime()
55 private float getBezierCoordinateX(float time) { in getBezierCoordinateX() argument
59 return time * (c.x + time * (b.x + time * a.x)); in getBezierCoordinateX()
/expo/android/vendored/sdk47/react-native-reanimated/android/src/main/java/abi47_0_0/com/swmansion/reanimated/nodes/
H A DBezierNode.java27 public float getInterpolation(float time) { in getInterpolation() argument
28 return getBezierCoordinateY(getXForTime(time)); in getInterpolation()
31 protected float getBezierCoordinateY(float time) { in getBezierCoordinateY() argument
35 return time * (c.y + time * (b.y + time * a.y)); in getBezierCoordinateY()
38 protected float getXForTime(float time) { in getXForTime() argument
39 float x = time; in getXForTime()
42 z = getBezierCoordinateX(x) - time; in getXForTime()
55 private float getBezierCoordinateX(float time) { in getBezierCoordinateX() argument
59 return time * (c.x + time * (b.x + time * a.x)); in getBezierCoordinateX()
/expo/packages/expo-av/android/src/main/java/expo/modules/av/progress/
H A DProgressLooper.kt7 val time: Long in scheduleAt() constant
51 nextExpectedTick = timeMachine.time in scheduleAt()
56 timeMachine.scheduleAt(nextExpectedTick - timeMachine.time) { in scheduleAt()
65 if (nextExpectedTick > timeMachine.time) { in scheduleAt()
68 (((timeMachine.time - nextExpectedTick) / interval) + 1) * interval in scheduleAt()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/av/progress/
H A DProgressLooper.kt7 val time: Long in scheduleAt() constant
51 nextExpectedTick = timeMachine.time in scheduleAt()
56 timeMachine.scheduleAt(nextExpectedTick - timeMachine.time) { in scheduleAt()
65 if (nextExpectedTick > timeMachine.time) { in scheduleAt()
68 (((timeMachine.time - nextExpectedTick) / interval) + 1) * interval in scheduleAt()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/av/progress/
H A DProgressLooper.kt7 val time: Long in scheduleAt() constant
51 nextExpectedTick = timeMachine.time in scheduleAt()
56 timeMachine.scheduleAt(nextExpectedTick - timeMachine.time) { in scheduleAt()
65 if (nextExpectedTick > timeMachine.time) { in scheduleAt()
68 (((timeMachine.time - nextExpectedTick) / interval) + 1) * interval in scheduleAt()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/av/progress/
H A DProgressLooper.kt7 val time: Long in scheduleAt() constant
51 nextExpectedTick = timeMachine.time in scheduleAt()
56 timeMachine.scheduleAt(nextExpectedTick - timeMachine.time) { in scheduleAt()
65 if (nextExpectedTick > timeMachine.time) { in scheduleAt()
68 (((timeMachine.time - nextExpectedTick) / interval) + 1) * interval in scheduleAt()
/expo/apps/native-component-list/src/screens/GL/
H A DGLViewScreen.tsx71 uniform float time;
75 vec3 position = 8.0 * cos(freq.xyz * time + phase.xyz);
76 gl_PointSize = 10.0 * (1.0 + cos(freq.w * time + phase.w));
110 view: ({ time: t }: { time: number }) => {
121 time: ({ time }: { time: number }) => time * 0.1,
/expo/android/expoview/src/main/java/host/exp/exponent/notifications/schedulers/
H A DIntervalSchedulerModel.kt12 import org.joda.time.DateTime
27 return isRepeat || DateTime.now().toDate().time < scheduledTime in canBeRescheduled()
52 var now = DateTime.now().toDate().time
58 now = DateTime.now().toDate().time
63 val bootTime = DateTime.now().toDate().time - SystemClock.elapsedRealtime()
H A DCalendarSchedulerModel.kt8 import com.cronutils.model.time.ExecutionTime
15 import org.joda.time.DateTime
59 val whenShouldAppear = nextExecution.toDate().time
60 val bootTime = DateTime.now().toDate().time - SystemClock.elapsedRealtime()
/expo/packages/expo-av/android/src/test/java/expo/modules/av/progress/
H A DProgressLooperTest.kt21 override var time = 0L in advanceBy() variable
26 time += interval in advanceBy()
39 callbacks = callbacks.plus(callback to time + intervalMillis) in advanceBy()
45 time = 0 in advanceBy()
69 fun `callback invoked once after time passed`() { in callback invoked once after time passed()
152 fun `next tick scheduled with adjustment to passed time when invoked too late`() { in next tick scheduled with adjustment to passed time when invoked too late()
162 fun `next tick scheduled with adjustment to passed time when invoked too early`() { in next tick scheduled with adjustment to passed time when invoked too early()
200 fun `time machine not called if no looping started`() { in time machine not called if no looping started()
208 fun `time machine not called after looping stopped`() { in time machine not called after looping stopped()
/expo/packages/@expo/cli/src/utils/
H A DnodeModules.ts11 const time = Date.now(); constant
16 `Cleaned JavaScript dependencies ${chalk.gray(Date.now() - time + 'ms')}`
/expo/packages/@expo/cli/src/
H A Dlog.ts3 export function time(label?: string): void { function
4 console.time(label);
59 time,
/expo/home/storage/
H A DLocalStorage.ts102 const item2time = item2.time ? item2.time : 0;
103 const item1time = item1.time ? item1.time : 0;
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/updates/logging/
H A DUpdatesLogReader.kt21 olderThan: Date = Date(Date().time - ONE_DAY_MILLISECONDS), in <lambda>()
52 val earliestEpoch = Date().time - ONE_DAY_MILLISECONDS in <lambda>()
53 val epoch = date.time in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/logging/
H A DUpdatesLogReader.kt21 olderThan: Date = Date(Date().time - ONE_DAY_MILLISECONDS), in <lambda>()
52 val earliestEpoch = Date().time - ONE_DAY_MILLISECONDS in <lambda>()
53 val epoch = date.time in <lambda>()
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/logging/
H A DUpdatesLogReader.kt21 olderThan: Date = Date(Date().time - ONE_DAY_MILLISECONDS), in <lambda>()
52 val earliestEpoch = Date().time - ONE_DAY_MILLISECONDS in <lambda>()
53 val epoch = date.time in <lambda>()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/updates/logging/
H A DUpdatesLogReader.kt21 olderThan: Date = Date(Date().time - ONE_DAY_MILLISECONDS), in <lambda>()
52 val earliestEpoch = Date().time - ONE_DAY_MILLISECONDS in <lambda>()
53 val epoch = date.time in <lambda>()
/expo/packages/expo-dev-menu/android/src/test/java/expo/modules/devmenu/detectors/
H A DShakeDetectorTest.kt35 fun `checks if ShakeDetector respects elapse time between gestures`() { in checks if ShakeDetector respects elapse time between gestures()
56 …val events = craftShakeEvent() + craftShakeEvent(time = TimeUnit.NANOSECONDS.convert(800, TimeUnit… in checks if ShakeDetector detects multiple gestures()
125 …private fun craftShakeEvent(force: Float = SensorManager.GRAVITY_EARTH * 2f, time: Long = 0): List… in craftShakeEvent()
128 timestamp = System.currentTimeMillis() + time in craftShakeEvent()
132 timestamp = System.currentTimeMillis() + time in craftShakeEvent()
136 timestamp = System.currentTimeMillis() + time in craftShakeEvent()
/expo/packages/expo-updates/cli/utils/
H A Dlog.ts1 export function time(label?: string): void { function
2 console.time(label);
/expo/packages/@expo/cli/src/__mocks__/
H A Dlog.ts1 export const time = jest.fn(); constant
22 time,
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/cxxreact/
H A DABI49_0_0JSExecutor.cpp29 auto time = std::chrono::steady_clock::now(); in performanceNow() local
31 time.time_since_epoch()) in performanceNow()
/expo/home/screens/DeleteAccountScreen/
H A DOTPStep.tsx59 …description = `Check your SMS messages for your one-time password. It may take a few moments to ar…
61 ? 'You may also use a one-time password from your authenticator app.'
65 description = 'Open your two-factor authentication app to view your one-time password.';
87 return setInputError('You must provide a value for the one-time password.');
95 <Text type="InterSemiBold">Confirm your one-time password to delete your account</Text>
102 placeholder="Enter your one-time password"
140 Enter a recovery code (from when you set up two-factor authentication) as your one-time
/expo/packages/expo-video-thumbnails/ios/
H A DVideoThumbnailsModule.swift31 let time = CMTimeMake(value: options.time, timescale: 1000) in getVideoThumbnail() variable
32 let imgRef = try generator.copyCGImage(at: time, actualTime: nil) in getVideoThumbnail()
/expo/ios/versioned/sdk48/ExpoVideoThumbnails/
H A DVideoThumbnailsModule.swift31 let time = CMTimeMake(value: options.time, timescale: 1000) in getVideoThumbnail() variable
32 let imgRef = try generator.copyCGImage(at: time, actualTime: nil) in getVideoThumbnail()
/expo/ios/versioned/sdk49/ExpoVideoThumbnails/
H A DVideoThumbnailsModule.swift31 let time = CMTimeMake(value: options.time, timescale: 1000) in getVideoThumbnail() variable
32 let imgRef = try generator.copyCGImage(at: time, actualTime: nil) in getVideoThumbnail()

12345678910>>...28