Home
last modified time | relevance | path

Searched refs:previous (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/ohos5.0/foundation/communication/dhcp/services/dhcp_server/src/
H A Ddhcp_option.cpp44 pNode->previous = pNode->next = 0; in CreateOptionNode()
79 pOptions->first->previous = nullptr; in InitOptionList()
104 pNode->previous = pOptions->last; in PushBackOption()
128 pNode->previous = pOptions->first; in PushFrontOption()
133 pNode->next->previous = pNode; in PushFrontOption()
134 pNode->previous = pOptions->first; in PushFrontOption()
155 pOptions->last = pNode->previous; in RemoveOption()
158 pNode->next->previous = pNode->previous; in RemoveOption()
199 pNode->next->previous = pNode->previous; in ClearOptions()
208 pOptions->first->previous = nullptr; in ClearOptions()
[all …]
/ohos5.0/foundation/window/window_manager/window_scene/common/include/
H A Dfold_screen_state_internel.h122 std::size_t previous = 0; in StringSplit() local
126 if (current > previous) { in StringSplit()
127 elems.push_back(str.substr(previous, current - previous)); in StringSplit()
129 previous = current + 1; in StringSplit()
130 current = str.find(delim, previous); in StringSplit()
132 if (previous != str.size()) { in StringSplit()
133 elems.push_back(str.substr(previous)); in StringSplit()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dredirect.rs61 info.previous.push(request.uri().clone()); in redirect()
85 if let Some(previous) = info.previous.last() { in redirect()
86 if location.authority() != previous.authority() { in redirect()
106 previous: Vec<Uri>, field
112 previous: Vec::new(), in new()
126 Self::LimitTimes(max) => (info.previous.len() < *max) in trigger()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H A Dkeyframe_animation.cpp105 …meAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument
108 if (previous) { in OnPropertyChanged()
109 previous->RemoveModifier(me); in OnPropertyChanged()
110 if (auto p = interface_cast<IProperty>(previous)) { in OnPropertyChanged()
H A Dproperty_animation.cpp44 …tyAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument
47 if (previous) { in OnPropertyChanged()
48 previous->RemoveModifier(me); in OnPropertyChanged()
H A Danimation_state.cpp268 const auto previous = state_.animationState_; in SetState() local
269 if (previous == state) { in SetState()
276 if (previous != AnimationTargetState::PAUSED) { in SetState()
279 if (previous == AnimationTargetState::FINISHED) { in SetState()
304 info.previous = previous; in SetState()
H A Dtrack_animation.cpp159 …ckAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument
161 if (previous && GetState().IsRunning()) { in OnPropertyChanged()
163 RemoveModifier(previous); in OnPropertyChanged()
164 if (auto p = interface_cast<IProperty>(previous)) { in OnPropertyChanged()
/ohos5.0/base/security/huks/services/huks_standard/huks_service/main/hks_storage/src/
H A Dhks_storage_file_lock.c207 HksStorageFileLock *previous = NULL; in Release() local
218 previous = iter; in Release()
224 if (previous != NULL) { in Release()
225 previous->next = iter->next; in Release()
230 g_lockListLast = previous; in Release()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/uri/src/
H A Duri.cpp327 size_t previous = 0; in GetPathSegments() local
329 while ((current = path_.find(LEFT_SEPARATOR, previous)) != std::string::npos) { in GetPathSegments()
330 if (previous < current) { in GetPathSegments()
331 segments.emplace_back(path_.substr(previous, current - previous)); in GetPathSegments()
333 previous = current + POS_INC; in GetPathSegments()
336 if (previous < path_.length()) { in GetPathSegments()
337 segments.emplace_back(path_.substr(previous)); in GetPathSegments()
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-debug-memory-corrupt.md17previous node (because memory is contiguous, a node is most likely corrupted by the previous node)…
78 … Key information about the corrupted node and its previous node, including the address of the prev…
85 …pre node head LR info: /* Based on the LR information, you can find where the previous node is r…
89 … node: 0x20003b10, pre node: 0x20003af0 /* Addresses of the corrupted node and its previous node */
/ohos5.0/commonlibrary/ets_utils/js_api_module/uri/
H A Djs_uri.cpp482 size_t previous = 0; in GetSegment() local
484 for (current = uriData_.path.find('/', previous); current != std::string::npos; in GetSegment()
485 current = uriData_.path.find('/', previous)) { in GetSegment()
486 if (previous < current) { in GetSegment()
487 std::string segment = uriData_.path.substr(previous, current - previous); in GetSegment()
490 previous = current + 1; in GetSegment()
492 if (previous < uriData_.path.length()) { in GetSegment()
493 segments.push_back(uriData_.path.substr(previous)); in GetSegment()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/
H A Dfilter.cpp49 void Filter::AddPreviousFilter(std::shared_ptr<Filter> previous) in AddPreviousFilter() argument
52 previous_ = previous; in AddPreviousFilter()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/fold_screen_controller/
H A Dfold_screen_state_machine.cpp66 auto previous = currState_; in TransitionTo() local
72 callback->OnTransitionExit(previous, currState_); in TransitionTo()
/ohos5.0/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/input/ButtonA028/
H A Dindex.css33 .previous{
51 .previous{
/ohos5.0/foundation/multimedia/camera_framework/
H A Dhisysevent.yaml69 PRE_MODE: {type: INT32, desc: previous Mode}
71 PRE_CAMERA_ID: {type: STRING, desc: previous camera id}
92 PRE_MODE: {type: INT32, desc: previous Mode}
94 PRE_CAMERA_ID: {type: STRING, desc: previous camera id}
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/module_test/utils_test/src/
H A Dhks_condition_test.cpp186 int previous = 0; in Fib() local
188 int next = current + previous; in Fib()
189 previous = current; in Fib()
/ohos5.0/docs/zh-cn/application-dev/web/
H A Dweb-crashpad.md53 Found by: previous frame's frame pointer
57 Found by: previous frame's frame pointer
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-basic-components-stepper.md61 Invoked when the **prevLabel** of the current **StepperItem** is clicked to switch to the previous
72 … | Yes | Index of the step page after the switching, that is, index of the previous or next page.|
95 Invoked when the **prevLabel** of the current **StepperItem** is clicked to switch to the previous
106 | pendingIndex | number | Yes | Index of the previous step page.|
H A Dts-drawing-components-path.md263previous command is **C** or **S**, the control point of the curve start point is the mapping of t…
265previous command is **Q** or **T**, the control point is the mapping of the control point of the c…
/ohos5.0/docs/en/application-dev/media/avsession/
H A Dusing-ohavsession-developer.md111 - Play previous
119 // Register the callbacks for the commands of play, pause, stop, play previous, and play next.
123 // CONTROL_CMD_PLAY_NEXT = 3; play previous
145 …a common playback control command, which can be play, pause, stop, play previous, or play next. …
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-container-swiper.md49previous-margin<sup>7+</sup> | &lt;length&gt; \| &lt;percentage&gt; | - | No | Pr…
70 | showPrevious | - | Shows the previous child component. |
117 previous-margin:20px;
H A Djs-components-svg-textpath.md204 … After the previous **\<tspan>** is drawn, the next **\<tspan>** is drawn with an offset of 5%, cr…
238 …-opacity"**: The new segment of text is 20px offset from the end of the previous text segment. The…
240 …ont-size"**: The new segment of text is 20px offset from the end of the previous text segment. Whi…
242 …A horizontal line is drawn at the end of the previous segment, creating the effect of following th…
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-navigation-introduction.md36 | Return to a previous page | Supported …
37 | Passing parameters on returning to a previous page | Supported …
39 | Dialog box for returning to a previous page | Supported, implemen…
H A Darkts-animation-smoothing.md6 …ts-animatorproperty.md) API. The system then automatically connects the previous animation with th…
64 …ingers) off the screen automatically inherits the previous velocity and starts from where the prev…
99 …otion for movement toward the new value. The springMotion animation inherits the previous velocity.
/ohos5.0/docs/en/device-dev/quick-start/
H A Dquickstart-pkg-install-package.md38 …thon 3.8 path} 1 #{Python 3.8 path} is the location of Python 3.8 obtained in the previous step.
39 …ython 3.8 path} 1 #{Python 3.8 path} is the location of Python 3.8 obtained in the previous step.

12345678910>>...12