/aosp_15_r20/external/lottie/lottie-compose/src/test/java/com/airbnb/lottie/compose/ |
H A D | LottieAnimatableImplTest.kt | 39 assertEquals(0f, anim.progress) in <lambda>() 42 assertEquals(0.5f, anim.progress, 0.01f) in <lambda>() 56 assertEquals(0f, anim.progress) in <lambda>() 59 assertFrame(300, progress = 0.5f, iterations = 2) in <lambda>() 60 assertFrame(compositionDuration - 1, progress = 0.998f, iteration = 1, iterations = 2) in <lambda>() 61 …assertFrame(2 * compositionDuration, progress = 1f, iteration = 2, iterations = 2, isPlaying = fal… in <lambda>() 69 assertEquals(0f, anim.progress) in <lambda>() 72 assertFrame(300, progress = 0.5f, iterations = 2) in <lambda>() 73 assertFrame(compositionDuration - 1, progress = 0.998f, iteration = 1, iterations = 2) in <lambda>() 74 assertFrame(compositionDuration, progress = 0f, iteration = 2, iterations = 2) in <lambda>() [all …]
|
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/domain/interactor/scenetransition/ |
H A D | LockscreenSceneTransitionInteractorTest.kt | 54 private val progress = MutableStateFlow(0f) constant 66 progress, 76 progress, 105 progress = 0f, in transition_from_ls_scene_end_in_gone() 108 progress.value = 0.4f in transition_from_ls_scene_end_in_gone() 109 assertTransition(step = currentStep!!, state = TransitionState.RUNNING, progress = 0.4f) in transition_from_ls_scene_end_in_gone() 117 progress = 1f, in transition_from_ls_scene_end_in_gone() 124 * finish/settle to progress 0.0f. 138 progress = 0f, in transition_from_ls_scene_end_in_ls() 141 progress.value = 0.4f in transition_from_ls_scene_end_in_ls() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/widget/ |
H A D | ProgressBar.java | 80 * A user interface element that indicates the progress of an operation. 81 * Progress bar supports two modes to represent progress: determinate, and indeterminate. For 82 * a visual overview of the difference between determinate and indeterminate progress modes, see 83 …* <a href="https://material.io/guidelines/components/progress-activity.html#progress-activity-type… 84 * Progress & activity</a>. 85 * Display progress bars to a user in a non-interruptive way. 86 * Show the progress bar in your app's user interface or in a notification 89 * <h3>Indeterminate Progress</h3> 91 * Use indeterminate mode for the progress bar when you do not know how long an 93 * Indeterminate mode is the default for progress bar and shows a cyclic animation without a [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Core/ |
D | Progress.h | 1 //===-- Progress.h ----------------------------------------------*- C++ -*-===// 23 /// A Progress indicator helper class. 26 /// progress so that clients are aware of delays that might appear during 31 /// The Progress class helps make sure that progress is correctly reported 32 /// and will always send an initial progress update, updates when 33 /// Progress::Increment() is called, and also will make sure that a progress 37 /// The progress is reported via a callback whose type is ProgressCallback: 47 /// considered the progress start event. As Progress::Increment() is called, 48 /// the callback will be called as long as the Progress::m_completed has not 49 /// yet exceeded the Progress::m_total. When the callback is called with [all …]
|
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/paper-progress/ |
H A D | paper-progress.html | 17 Material design: [Progress & activity](https://www.google.com/design/spec/components/progress-activ… 19 The progress bars are for situations where the percentage completed can be 25 <paper-progress value="10"></paper-progress> 27 There is also a secondary progress which is useful for displaying intermediate 28 progress, such as the buffer level during a streaming playback progress bar. 32 <paper-progress value="10" secondary-progress="30"></paper-progress> 34 ### Styling progress bar: 36 To change the active progress bar color: 38 paper-progress { 39 --paper-progress-active-color: #e91e63; [all …]
|
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/haptics/slider/ |
H A D | SliderStateTrackerTest.kt | 94 val progress = 0f in <lambda>() constant 95 sliderEventProducer.sendEvent(SliderEvent(SliderEventType.STARTED_TRACKING_TOUCH, progress)) in <lambda>() 112 val progress = 0f in <lambda>() constant 113 sliderEventProducer.sendEvent(SliderEvent(SliderEventType.STARTED_TRACKING_TOUCH, progress)) in <lambda>() 133 var progress = 0.5f in <lambda>() variable 134 sliderEventProducer.sendEvent(SliderEvent(SliderEventType.STARTED_TRACKING_TOUCH, progress)) in <lambda>() 136 // GIVEN a progress event due to an imprecise touch with a progress below threshold in <lambda>() 137 progress += (config.jumpThreshold - 0.01f) in <lambda>() 139 SliderEvent(SliderEventType.PROGRESS_CHANGE_BY_USER, progress) in <lambda>() 158 var progress = 0.5f in <lambda>() variable [all …]
|
H A D | SliderHapticFeedbackProviderTest.kt | 209 // GIVEN max velocity and slider progress in playHapticAtProgress_onQuickSuccession_playsLowTicksOnce() 210 val progress = 1f in playHapticAtProgress_onQuickSuccession_playsLowTicksOnce() constant 212 sliderHapticFeedbackProvider.scaleOnDragTexture(config.maxVelocityToScale, progress) in playHapticAtProgress_onQuickSuccession_playsLowTicksOnce() 222 sliderHapticFeedbackProvider.onProgress(progress) in playHapticAtProgress_onQuickSuccession_playsLowTicksOnce() 223 sliderHapticFeedbackProvider.onProgress(progress) in playHapticAtProgress_onQuickSuccession_playsLowTicksOnce() 243 // GIVEN max velocity and slider progress in playHapticAtProgress_forDiscreteSlider_playsTick() 244 val progress = 1f in playHapticAtProgress_forDiscreteSlider_playsTick() constant 246 sliderHapticFeedbackProvider.scaleOnDragTexture(config.maxVelocityToScale, progress) in playHapticAtProgress_forDiscreteSlider_playsTick() 256 sliderHapticFeedbackProvider.onProgress(progress) in playHapticAtProgress_forDiscreteSlider_playsTick() 276 // GIVEN max velocity and slider progress in playHapticAtProgress_forDiscreteSlider_playsDiscreteSliderToken() [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Core/ |
D | Progress.h | 1 //===-- Progress.h ----------------------------------------------*- C++ -*-===// 22 /// A Progress indicator helper class. 25 /// progress so that clients are aware of delays that might appear during 30 /// The Progress class helps make sure that progress is correctly reported 31 /// and will always send an initial progress update, updates when 32 /// Progress::Increment() is called, and also will make sure that a progress 36 /// The progress is reported via a callback whose type is ProgressCallback: 46 /// considered the progress start event. As Progress::Increment() is called, 47 /// the callback will be called as long as the Progress::m_completed has not 48 /// yet exceeded the Progress::m_total. When the callback is called with [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Core/ |
D | Progress.h | 1 //===-- Progress.h ----------------------------------------------*- C++ -*-===// 22 /// A Progress indicator helper class. 25 /// progress so that clients are aware of delays that might appear during 30 /// The Progress class helps make sure that progress is correctly reported 31 /// and will always send an initial progress update, updates when 32 /// Progress::Increment() is called, and also will make sure that a progress 36 /// The progress is reported via a callback whose type is ProgressCallback: 46 /// considered the progress start event. As Progress::Increment() is called, 47 /// the callback will be called as long as the Progress::m_completed has not 48 /// yet exceeded the Progress::m_total. When the callback is called with [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/rich/ |
D | progress.py | 64 """A thread to periodically update progress.""" 66 def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float): argument 67 self.progress = progress 77 advance = self.progress.advance 87 self.progress.update(self.task_id, completed=self.completed, refresh=True) 120 """Track progress by iterating over a sequence. 124 … description (str, optional): Description of task show next to progress bar. Defaults to "Working". 127 transient: (bool, optional): Clear the progress on exit. Defaults to False. 129 …refresh_per_second (float): Number of times per second to refresh the progress information. Defaul… 135 disable (bool, optional): Disable display of progress. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/rich/ |
D | progress.py | 64 """A thread to periodically update progress.""" 66 def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float): argument 67 self.progress = progress 77 advance = self.progress.advance 87 self.progress.update(self.task_id, completed=self.completed, refresh=True) 120 """Track progress by iterating over a sequence. 124 … description (str, optional): Description of task show next to progress bar. Defaults to "Working". 127 transient: (bool, optional): Clear the progress on exit. Defaults to False. 129 …refresh_per_second (float): Number of times per second to refresh the progress information. Defaul… 135 disable (bool, optional): Disable display of progress. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/rich/ |
D | progress.py | 64 """A thread to periodically update progress.""" 66 def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float): argument 67 self.progress = progress 77 advance = self.progress.advance 87 self.progress.update(self.task_id, completed=self.completed, refresh=True) 120 """Track progress by iterating over a sequence. 124 … description (str, optional): Description of task show next to progress bar. Defaults to "Working". 127 transient: (bool, optional): Clear the progress on exit. Defaults to False. 129 …refresh_per_second (float): Number of times per second to refresh the progress information. Defaul… 135 disable (bool, optional): Disable display of progress. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/rich/ |
D | progress.py | 64 """A thread to periodically update progress.""" 66 def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float): argument 67 self.progress = progress 77 advance = self.progress.advance 87 self.progress.update(self.task_id, completed=self.completed, refresh=True) 120 """Track progress by iterating over a sequence. 124 … description (str, optional): Description of task show next to progress bar. Defaults to "Working". 127 transient: (bool, optional): Clear the progress on exit. Defaults to False. 129 …refresh_per_second (float): Number of times per second to refresh the progress information. Defaul… 135 disable (bool, optional): Disable display of progress. [all …]
|
/aosp_15_r20/external/mesa3d/src/intel/compiler/ |
H A D | brw_kernel.c | 128 bool progress = false; in implement_intel_builtins() local 135 progress = true; in implement_intel_builtins() 140 progress = true; in implement_intel_builtins() 145 progress = true; in implement_intel_builtins() 150 progress = true; in implement_intel_builtins() 153 progress = true; in implement_intel_builtins() 159 return progress; in implement_intel_builtins() 167 bool progress = false; in lower_kernel_intrinsics() local 197 progress = true; in lower_kernel_intrinsics() 207 progress = true; in lower_kernel_intrinsics() [all …]
|
/aosp_15_r20/external/curl/lib/ |
H A D | progress.c | 30 #include "progress.h" 126 pgrsUpdate() - show progress 134 data->progress.lastshow = 0; in Curl_pgrsDone() 139 if(!(data->progress.flags & PGRS_HIDE) && in Curl_pgrsDone() 140 !data->progress.callback) in Curl_pgrsDone() 141 /* only output if we do not use a progress callback and we are not in Curl_pgrsDone() 145 data->progress.speeder_c = 0; /* reset the progress meter display */ in Curl_pgrsDone() 172 data->progress.t_startop = timestamp; in Curl_pgrsTimeWas() 176 data->progress.t_startsingle = timestamp; in Curl_pgrsTimeWas() 177 data->progress.is_t_startransfer_set = FALSE; in Curl_pgrsTimeWas() [all …]
|
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/paper-progress/test/ |
H A D | basic.html | 14 <title>paper-progress test</title> 21 <link rel="import" href="../paper-progress.html"> 29 <paper-progress></paper-progress> 35 <paper-progress class="transiting"></paper-progress> 41 var progress; 44 progress = fixture('trivialProgress'); 48 assert.equal(progress.min, 0); 49 assert.equal(progress.max, 100); 50 assert.equal(progress.value, 0); 54 progress.value = 50; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Core/ |
D | Progress.h | 1 //===-- Progress.h ----------------------------------------------*- C++ -*-===// 20 /// A Progress indicator helper class. 23 /// progress so that clients are aware of delays that might appear during 28 /// The Progress class helps make sure that progress is correctly reported 29 /// and will always send an initial progress update, updates when 30 /// Progress::Increment() is called, and also will make sure that a progress 34 /// The progress is reported via a callback whose type is ProgressCallback: 44 /// considered the progress start event. As Progress::Increment() is called, 45 /// the callback will be called as long as the Progress::m_completed has not 46 /// yet exceeded the Progress::m_total. When the callback is called with [all …]
|
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/paper-progress/demo/ |
H A D | index.html | 13 <title>paper-progress demo</title> 23 <link rel="import" href="../paper-progress.html"> 27 paper-progress { 41 <h3>paper-progress can be imperatively controlled</h3> 48 <paper-progress id="progress"></paper-progress> 52 <h3>paper-progress can be indeterminate with a custom duration</h3> 56 paper-progress.slow { 57 --paper-progress-indeterminate-cycle-duration: 20s; 60 <paper-progress indeterminate></paper-progress> 61 <paper-progress indeterminate class="slow"></paper-progress> [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/unfold/SystemUIUnfoldLib/android_common/turbine/ |
D | SystemUIUnfoldLib.jar | ... >
package com.android.systemui.unfold.progress
com.android.systemui.unfold.progress. ... |
/aosp_15_r20/external/mesa3d/src/compiler/nir/tests/ |
H A D | vars_tests.cpp | 219 bool progress = nir_opt_copy_prop_vars(b->shader); in TEST_F() local 220 EXPECT_TRUE(progress); in TEST_F() 246 bool progress = nir_opt_copy_prop_vars(b->shader); in TEST_F() local 247 EXPECT_TRUE(progress); in TEST_F() 278 bool progress = nir_opt_copy_prop_vars(b->shader); in TEST_F() local 279 EXPECT_TRUE(progress); in TEST_F() 313 bool progress = nir_opt_copy_prop_vars(b->shader); in TEST_F() local 314 EXPECT_TRUE(progress); in TEST_F() 352 bool progress = nir_opt_copy_prop_vars(b->shader); in TEST_F() local 353 ASSERT_FALSE(progress); in TEST_F() [all …]
|
/aosp_15_r20/external/autotest/utils/frozen_chromite/lib/ |
H A D | operation.py | 6 """Operation, including output and progress display 8 This module implements the concept of an operation, which has regular progress 47 """Wrapper around long running functions to show progress. 50 the output, and display a progress bar. 52 To display a progress bar for a function foo with argument foo_args, this is 65 # By default, update the progress bar every 100 ms. 87 def ProgressBar(self, progress): argument 88 """This method creates and displays a progress bar. 90 If not in a terminal, we do not display a progress bar. 93 progress: a float between 0 and 1 that represents the fraction of the [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/unfold/SystemUIUnfoldLib/android_common/javac/ |
D | SystemUIUnfoldLib.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/aosp_15_r20/external/python/cpython2/Lib/plat-mac/ |
D | buildtools.py | 70 rsrcname=None, others=[], raw=0, progress="default", destroot=""): argument 72 if progress == "default": 77 progress = EasyDialogs.ProgressBar("Processing %s..."%os.path.split(filename)[1], 120) 78 progress.label("Compiling...") 79 progress.inc(0) 121 process_common(template, progress, code, rsrcname, destname, 0, 128 if progress: 131 progress = None 133 progress = EasyDialogs.ProgressBar("Updating %s..."%os.path.split(filename)[1], 120) 135 progress = None [all …]
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/view/ |
H A D | SeekBarWithIconButtonsView.java | 38 * The layout contains a seekbar whose progress could be modified 92 int progress = typedArray.getInt( in SeekBarWithIconButtonsView() local 96 setProgress(progress); in SeekBarWithIconButtonsView() 141 * Stores the String array we would like to use for describing the state of seekbar progress 142 * and updates the state description with current progress. 144 * @param labels The state descriptions to be announced for each progress. 154 * Sets the state of seekbar based on current progress. The progress of seekbar is 155 * corresponding to the index of the string array. If the progress is larger than or equals 166 * We update the Start Icon and End Icon if needed when the seekbar progress is changed. 198 * Start and End icons might need to be updated when there is a change in seekbar progress. [all …]
|
/aosp_15_r20/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/ |
H A D | Card.java | 38 * progress indicator and zero or more actions. It is constructed through the {@link Builder}. 55 // description, zero to many action buttons, and zero or 1 progress indicators. 92 * Some cards will have a sense of "progress" which should be associated with, but separated 94 * a maximum of one progress indicator per Card. 178 * Set the type of progress indicator. 179 * The progress type can only be changed if the Card was initially build with a progress 197 * Return the progress indicator type. A value of either {@link #PROGRESS_TYPE_NORMAL}, 198 * {@link #PROGRESS_TYPE_INDETERMINATE}, {@link #PROGRESS_TYPE_LABEL}. Otherwise if no progress 210 * Set the progress to the specified value. Only applicable if the card has a 211 * {@link #PROGRESS_TYPE_NORMAL} progress type. [all …]
|