Home
last modified time | relevance | path

Searched refs:steps (Results 1 – 25 of 251) sorted by relevance

1234567891011

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_steps_interpolator.cpp25 RSStepsInterpolator::RSStepsInterpolator(int32_t steps, StepsCurvePosition position) in RSStepsInterpolator() argument
26 : steps_(steps <= 0 ? 1 : steps), position_(position) in RSStepsInterpolator()
29 RSStepsInterpolator::RSStepsInterpolator(uint64_t id, int32_t steps, StepsCurvePosition position) in RSStepsInterpolator() argument
30 : RSInterpolator(id), steps_(steps <= 0 ? 1 : steps), position_(position) in RSStepsInterpolator()
53 int32_t steps = 0; in Unmarshalling() local
55 if (!(parcel.ReadInt32(steps) && parcel.ReadInt32(position))) { in Unmarshalling()
59 return new RSStepsInterpolator(id, steps, static_cast<StepsCurvePosition>(position)); in Unmarshalling()
/ohos5.0/commonlibrary/rust/ylong_json/src/value/array/
H A Dlinked_list.rs300 let mut steps = len - 1 - index; in get_cursor() localVariable
302 while steps != 0 { in get_cursor()
305 steps -= 1; in get_cursor()
309 let mut steps = index; in get_cursor() localVariable
311 while steps != 0 { in get_cursor()
314 steps -= 1; in get_cursor()
331 while steps != 0 { in get_cursor_mut()
334 steps -= 1; in get_cursor_mut()
338 let mut steps = index; in get_cursor_mut() localVariable
340 while steps != 0 { in get_cursor_mut()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/animation/
H A Drs_steps_interpolator_test.cpp43 int32_t steps = 4; variable
44 float stepValue = 1.0f / steps;
45 RSStepsInterpolator stepsCurveStart(steps, StepsCurvePosition::START);
76 int32_t steps = 4; variable
77 float stepValue = 1.0f / steps;
78 RSStepsInterpolator stepsCurveEnd(steps, StepsCurvePosition::END);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_steps_interpolator.h31 RSStepsInterpolator(int32_t steps, StepsCurvePosition position = StepsCurvePosition::START);
40 …RSStepsInterpolator(uint64_t id, int32_t steps, StepsCurvePosition position = StepsCurvePosition::…
/ohos5.0/docs/en/design/ux-design/
H A Dmultimodal-stepper.md3 If multiple steps are required to complete a task, you can use the stepper to navigate your users t…
11 - Use the stepper when a task is complex and needs to be divided into multiple logical steps.
15 - Ensure that each step is easy to understand and all the steps have the consistent layout. Use a c…
/ohos5.0/docs/en/contribute/
H A Dwriting-instructions.md13 …nd design ideas in a concise manner, and operation documents describe key steps to help other deve…
29 - Detailed steps
35 …- The APIs used in steps must be described in the available capabilities at the beginning of the…
46 - Development process \(steps of how to use and develop\)
124 - Ensure that key fields are highlighted in bold and that comments are provided for key steps.
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_rating.cpp126 auto steps = info[0]->ToNumber<double>(); in SetStepSize() local
127 if (LessNotEqual(steps, stepSizeMin)) { in SetStepSize()
128 steps = STEPS_DEFAULT; in SetStepSize()
130 RatingModel::GetInstance()->SetStepSize(steps); in SetStepSize()
/ohos5.0/docs/en/contribute/template/
H A Dtutorial-template.md3 …velopment process is divided into several sections, each with a series of steps. In addition, code…
36 3. Provide screenshots of GUI-based steps for better understanding.
38 5. Provides comments for key steps in the code.
H A Dfaq-template.md48 - Compose in a step-by-step format to ensure the steps are actionable.
49 - Focus on "action-object" phrases for the steps, sometimes including the "purpose of the action" a…
55 If it is procedural code, it can be integrated with the solution steps.
H A Dreadme-template.md122 | F.1.1 | Complete: Provide all mandatory steps.|
126 | F.1.5 | Clear steps-1: Describe the purpose of each step, no matter whether it is simple or not.|
127 | F.1.6 | Clear steps-2: Specify the environment, tools, operations, and how-to.|
132 | F.2.2 | Provide comments for key sections and key steps in the code.|
/ohos5.0/foundation/arkui/ui_lite/test/autotest/src/
H A Dtcp_socket_manager.cpp98 void TcpSocketClientManager::OnGetTestSetps(QJsonArray array, std::vector<TestSteps>& steps) in OnGetTestSetps() argument
120 steps.push_back(testSteps); in OnGetTestSetps()
236 OnGetTestSetps(array, msgInfo->steps); in OnGetTestInfo()
250 for (auto it3: it->steps) { in OnPrintTestInfo()
H A Dui_auto_test.cpp163 OnTestBySteps(info->steps, info->className); in OnTest()
166 void UIAutoTest::OnTestBySteps(std::vector<TestSteps> steps, std::string className) in OnTestBySteps() argument
168 if (steps.empty()) { in OnTestBySteps()
173 for (auto it: steps) { in OnTestBySteps()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_rating_bridge.cpp88 auto steps = secondArg->ToNumber(vm)->Value(); in SetRatingStepSize() local
89 if (LessNotEqual(steps, STEPS_MIN_SIZE)) { in SetRatingStepSize()
90 steps = STEPS_DEFAULT; in SetRatingStepSize()
92 GetArkUINodeModifiers()->getRatingModifier()->setRatingStepSize(nativeNode, steps); in SetRatingStepSize()
/ohos5.0/docs/en/device-dev/quick-start/
H A Dquickstart-ide-3516-running.md30 After the system is started, perform the following steps to run the Hello World program:
51 Congratulations! You have finished all steps! Proceed to develop samples to better familiarize your…
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_animation_timing_curve.cpp112 RSAnimationTimingCurve RSAnimationTimingCurve::CreateStepsCurve(int32_t steps, StepsCurvePosition p… in CreateStepsCurve() argument
114 return RSAnimationTimingCurve(std::make_shared<RSStepsInterpolator>(steps, position)); in CreateStepsCurve()
/ohos5.0/base/msdp/device_status/utils/common/src/
H A Danimation_curve.cpp121 auto steps = static_cast<int32_t>(curve[ARG_0]); in CreateStepsCurve() local
123 return RosenCurveType::CreateStepsCurve(steps, stepPosition); in CreateStepsCurve()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-container-stepper.md7 The **\<stepper>** component provides a step navigator. When multiple steps are required to complet…
49 … | Triggered when users click the skip button to skip steps.|
50 …k the left or right (text) button of the step navigator to switch between steps. **prevIndex** ind…
61 …d instead.<br>- **skip**: The skip button is displayed to allow users to skip all remaining steps.|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/track/
H A Drender_track.h146 void SetSliderSteps(double steps) in SetSliderSteps() argument
148 sliderSteps_ = steps; in SetSliderSteps()
/ohos5.0/docs/en/device-dev/porting/
H A Dporting-minichip-overview.md18 The adaptation process is divided into four steps: porting preparation, kernel porting, subsystem p…
20 **Table 1** Chip adaptation steps
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dcurve.h204 explicit StepsCurve(int32_t steps, StepsCurvePosition position = StepsCurvePosition::START)
205 : steps_(steps <= 0 ? 1 : steps), position_(position)
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/fuzztest/rsanimationbase_fuzzer/
H A Drsanimationbase_fuzzer.cpp191 int32_t steps = GetData<int32_t>(); in RSStepsInterpolatorFuzzerTest() local
196 auto animation = std::make_shared<RSStepsInterpolator>(steps, position); in RSStepsInterpolatorFuzzerTest()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dswapchain_gles.cpp125 const FormatInfo* steps[] = { FORMATS, FORMATS_SRGB, nullptr }; in FormatToGlFormat() local
127 const FormatInfo* format = steps[step]; in FormatToGlFormat()
128 if (steps[step] == nullptr) { in FormatToGlFormat()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-common-animation.md19 …ic-bezier:在三次贝塞尔函数中定义动画变化过程,入参的x和y值必须处于0-1之间。<br/>-&nbsp;steps:&nbsp;阶梯曲线<sup>6+</sup>。语法:steps(nu…
178 animation-timing-function: steps(8, end);
222 > steps函数的end和start含义如下图所示。
/ohos5.0/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/resource/
H A Dmeasure_format_patterns.txt1 … "", "", "", "", "", "", "", "", "", "", "", "", "", "step", "", "", "", "steps", "", "", "", "", …
/ohos5.0/foundation/arkui/ui_lite/test/autotest/include/
H A Dui_auto_test.h46 void OnTestBySteps(std::vector<TestSteps> steps, std::string className);

1234567891011