HomeSort by relevance Sort by last modified time
    Searched full:duration (Results 126 - 150 of 4952) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libcxx/test/utilities/time/time.duration/time.duration.nonmember/
op_times_rep1.fail.cpp 12 // duration
15 // duration<typename common_type<Rep1, Rep2>::type, Period>
16 // operator*(const duration<Rep1, Period>& d, const Rep2& s);
19 // duration<typename common_type<Rep1, Rep2>::type, Period>
20 // operator*(const Rep1& s, const duration<Rep2, Period>& d);
28 std::chrono::duration<Rep> d;
op_times_rep2.fail.cpp 12 // duration
15 // duration<typename common_type<Rep1, Rep2>::type, Period>
16 // operator*(const duration<Rep1, Period>& d, const Rep2& s);
19 // duration<typename common_type<Rep1, Rep2>::type, Period>
20 // operator*(const Rep1& s, const duration<Rep2, Period>& d);
28 std::chrono::duration<Rep> d;
op_divide_duration.pass.cpp 12 // duration
17 // operator/(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs);
35 std::chrono::duration<int, std::ratio<2, 3> > s1(30);
36 std::chrono::duration<int, std::ratio<3, 5> > s2(5);
40 std::chrono::duration<int, std::ratio<2, 3> > s1(30);
41 std::chrono::duration<double, std::ratio<3, 5> > s2(5);
56 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30);
57 constexpr std::chrono::duration<int, std::ratio<3, 5> > s2(5);
61 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30)
    [all...]
op_mod_duration.pass.cpp 12 // duration
16 // typename common_type<duration<Rep1, Period1>, duration<Rep2, Period2>>::type
17 // operator%(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs);
37 std::chrono::duration<int, std::ratio<3, 5> > s1(6);
38 std::chrono::duration<int, std::ratio<2, 3> > s2(3);
39 std::chrono::duration<int, std::ratio<1, 15> > r = s1 % s2;
56 constexpr std::chrono::duration<int, std::ratio<3, 5> > s1(6);
57 constexpr std::chrono::duration<int, std::ratio<2, 3> > s2(3)
    [all...]
  /external/libcxx/test/utilities/time/time.point/time.point.cons/
default.pass.cpp 24 typedef std::chrono::duration<Rep, std::milli> Duration;
26 std::chrono::time_point<Clock, Duration> t;
27 assert(t.time_since_epoch() == Duration::zero());
31 constexpr std::chrono::time_point<Clock, Duration> t;
32 static_assert(t.time_since_epoch() == Duration::zero(), "");
  /frameworks/base/core/java/com/android/internal/view/animation/
FallbackLUTInterpolator.java 40 public FallbackLUTInterpolator(TimeInterpolator interpolator, long duration) {
42 mLut = createLUT(interpolator, duration);
45 private static float[] createLUT(TimeInterpolator interpolator, long duration) {
48 int numAnimFrames = (int) Math.ceil(duration / animIntervalMs);
66 public static long createNativeInterpolator(TimeInterpolator interpolator, long duration) {
67 float[] lut = createLUT(interpolator, duration);
  /frameworks/base/core/res/res/anim/
button_state_list_anim_material.xml 20 android:duration="@integer/button_pressed_animation_duration"
24 android:duration="0"
33 android:duration="@integer/button_pressed_animation_duration"
38 android:duration="0"
46 android:duration="0"
50 android:duration="0"
  /frameworks/base/core/res/res/drawable/
switch_thumb_material_anim.xml 46 <item android:duration="15">
49 <item android:duration="15">
52 <item android:duration="15">
55 <item android:duration="15">
58 <item android:duration="15">
61 <item android:duration="15">
64 <item android:duration="15">
67 <item android:duration="15">
70 <item android:duration="15">
73 <item android:duration="15"
    [all...]
  /frameworks/base/core/tests/coretests/res/anim/
test_state_anim.xml 19 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="10" android:valueType="floatType"/>
20 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
21 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
26 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
27 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
28 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
  /frameworks/base/tests/VectorDrawableTest/res/anim/
animation_favorite.xml 21 android:duration="8000"
29 android:duration="8000"
35 android:duration="8000"
41 android:duration="8000"
47 android:duration="8000"
53 android:duration="8000"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/
rep.pass.cpp 12 // duration
15 // explicit duration(const Rep2& r);
36 test<std::chrono::duration<int> >(5);
37 test<std::chrono::duration<int, std::ratio<3, 2> > >(5);
38 test<std::chrono::duration<Rep, std::ratio<3, 2> > >(Rep(3));
39 test<std::chrono::duration<double, std::ratio<2, 3> > >(5.5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.nonmember/
op_times_rep1.fail.cpp 12 // duration
15 // duration<typename common_type<Rep1, Rep2>::type, Period>
16 // operator*(const duration<Rep1, Period>& d, const Rep2& s);
19 // duration<typename common_type<Rep1, Rep2>::type, Period>
20 // operator*(const Rep1& s, const duration<Rep2, Period>& d);
28 std::chrono::duration<Rep> d;
op_times_rep2.fail.cpp 12 // duration
15 // duration<typename common_type<Rep1, Rep2>::type, Period>
16 // operator*(const duration<Rep1, Period>& d, const Rep2& s);
19 // duration<typename common_type<Rep1, Rep2>::type, Period>
20 // operator*(const Rep1& s, const duration<Rep2, Period>& d);
28 std::chrono::duration<Rep> d;
op_divide_duration.pass.cpp 12 // duration
17 // operator/(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs);
35 std::chrono::duration<int, std::ratio<2, 3> > s1(30);
36 std::chrono::duration<int, std::ratio<3, 5> > s2(5);
40 std::chrono::duration<int, std::ratio<2, 3> > s1(30);
41 std::chrono::duration<double, std::ratio<3, 5> > s2(5);
56 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30);
57 constexpr std::chrono::duration<int, std::ratio<3, 5> > s2(5);
61 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(30)
    [all...]
op_mod_duration.pass.cpp 12 // duration
16 // typename common_type<duration<Rep1, Period1>, duration<Rep2, Period2>>::type
17 // operator%(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs);
37 std::chrono::duration<int, std::ratio<3, 5> > s1(6);
38 std::chrono::duration<int, std::ratio<2, 3> > s2(3);
39 std::chrono::duration<int, std::ratio<1, 15> > r = s1 % s2;
56 constexpr std::chrono::duration<int, std::ratio<3, 5> > s1(6);
57 constexpr std::chrono::duration<int, std::ratio<2, 3> > s2(3)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/
default.pass.cpp 24 typedef std::chrono::duration<Rep, std::milli> Duration;
26 std::chrono::time_point<Clock, Duration> t;
27 assert(t.time_since_epoch() == Duration::zero());
31 constexpr std::chrono::time_point<Clock, Duration> t;
32 static_assert(t.time_since_epoch() == Duration::zero(), "");
  /packages/apps/Browser/src/com/android/browser/
LogTag.java 42 * @param duration the time the browser spent loading the page.
44 public static void logPageFinishedLoading(String url, long duration) {
46 + duration);
53 * @param duration the time spent on the webpage.
55 public static void logTimeOnPage(String url, long duration) {
57 + duration);
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTestUtils.java 41 * Assert run an animation successfully. Timeout is duration of animation.
58 * @param duration in milliseconds.
61 final View view, final Animation animation, final long duration) {
77 // check whether it has ended after duration
78 new PollingCheck(duration + TIMEOUT_DELTA) {
93 * @param duration
98 final long duration) throws InterruptedException {
109 Thread.sleep(duration + TIMEOUT_DELTA);
  /external/chromium_org/media/base/
text_cue.cc 10 const base::TimeDelta& duration,
15 duration_(duration),
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
mainthread_jank_stats.py 7 # unresponsively if its thread duration is greater than or equals to
30 sum_big_top_slices_thread_time is the total thread duration of all top
32 and the overlapped thread duration is greater than or equal
35 biggest_top_slice_thread_time is the biggest thread duration of all
39 Note: thread duration of each slices is computed using overlapped range
58 total_big_jank_thread_time is the total thread duration of all top
60 the records and the overlapped thread duration is greater than or equal
63 biggest_jank_thread_time is the biggest thread duration of all
  /frameworks/base/packages/SystemUI/res/anim/
heads_up_enter.xml 7 android:duration="@android:integer/config_shortAnimTime" />
11 android:duration="@android:integer/config_shortAnimTime" />
heads_up_exit.xml 7 android:duration="@android:integer/config_shortAnimTime" />
11 android:duration="@android:integer/config_shortAnimTime" />
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
anim1.xml 10 android:duration="1000" />
16 android:duration="250"
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 76 long duration = 2000l; local
78 mLayoutTransition.setDuration(duration);
88 long duration = 1000l; local
89 mLayoutTransition.setDuration(duration);
91 assertEquals(duration, mLayoutTransition.getDuration(LayoutTransition.APPEARING));
92 assertEquals(duration, mLayoutTransition.getDuration(LayoutTransition.CHANGE_APPEARING));
93 assertEquals(duration,
95 assertEquals(duration, mLayoutTransition.getDuration(LayoutTransition.DISAPPEARING));
99 long duration = 1000l; local
100 mLayoutTransition.setDuration(LayoutTransition.APPEARING, duration);
127 long duration = 2000; local
166 long duration = 100; local
173 long duration = 1000; local
    [all...]
  /external/chromium_org/third_party/polymer/components/core-animation/
core-animation-group.html 24 <core-animation id="fadeout" duration="500">
30 <core-animation id="fadeout" duration="500">
65 * For a `core-animation-group`, a duration of "auto" means the duration should
66 * be the specified duration of its children. If set to anything other than
67 * "auto", any children without a set duration will be assigned the group's duration.
69 * @property duration
73 duration: {value: 'auto', reflect: true},
100 if (this.duration && this.duration !== 'auto')
    [all...]

Completed in 492 milliseconds

1 2 3 4 56 7 8 91011>>