Home
last modified time | relevance | path

Searched refs:back (Results 1 – 25 of 988) sorted by relevance

12345678910>>...40

/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dpa_container.cpp93 CHECK_NULL_VOID(back); in CreateContainer()
287 CHECK_NULL_RETURN(back, ret); in Insert()
301 CHECK_NULL_RETURN(back, ret); in Query()
315 CHECK_NULL_RETURN(back, ret); in Update()
329 CHECK_NULL_RETURN(back, ret); in Delete()
343 CHECK_NULL_RETURN(back, ret); in BatchInsert()
356 CHECK_NULL_RETURN(back, ret); in GetType()
357 ret = back->GetType(uri); in GetType()
370 CHECK_NULL_RETURN(back, ret); in GetFileTypes()
448 CHECK_NULL_VOID(back); in OnDisConnect()
[all …]
/ohos5.0/foundation/arkui/napi/sample/native_module_netserver/
H A Devent_target.cpp28 EventListener* back = nullptr; member
46 last_ = last_->back; in ~EventTarget()
48 i->next->back = i->back; in ~EventTarget()
49 i->back->next = i->next; in ~EventTarget()
71 last_->next->back = last_; in On()
92 last_->next->back = last_; in Once()
119 last_ = last_->back; in Off()
121 eventListener->next->back = eventListener->back; in Off()
122 eventListener->back->next = eventListener->next; in Off()
142 last_ = last_->back; in Off()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/
H A Devent_dump.cpp157 eventTreeList.back().axisUpdateCount++; in AddAxis()
164 eventTreeList.back().axisUpdateCount--; in AddAxis()
165 eventTreeList.back().updateAxisIds_.erase(event.id); in AddAxis()
195 eventTreeList.back().touchDownCount++; in AddTouchPoint()
205 eventTreeList.back().touchDownCount--; in AddTouchPoint()
206 eventTreeList.back().downFingerIds_.erase(event.id); in AddTouchPoint()
227 eventTreeList.back().hitTestTree.emplace_back(node); in AddFrameNodeSnapshot()
241 auto& gestureTree = eventTreeList.back().gestureTree; in AddGestureSnapshot()
242 auto& gestureMap = eventTreeList.back().gestureMap; in AddGestureSnapshot()
258 auto& gestureMap = eventTreeList.back().gestureMap; in AddGestureProcedure()
[all …]
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_arc_label/
H A Dui_test_arc_label.cpp329 UIView* back = new UIView(); in UIKitUIArcLabelTestAlign001() local
330 back->SetPosition(positionX_, positionY_ + GAP); in UIKitUIArcLabelTestAlign001()
331 back->Resize(RADIUS, RADIUS); in UIKitUIArcLabelTestAlign001()
344 container_->Add(back); in UIKitUIArcLabelTestAlign001()
355 UIView* back = new UIView(); in UIKitUIArcLabelTestAlign002() local
356 back->SetPosition(positionX_, positionY_ + GAP); in UIKitUIArcLabelTestAlign002()
357 back->Resize(RADIUS, RADIUS); in UIKitUIArcLabelTestAlign002()
370 container_->Add(back); in UIKitUIArcLabelTestAlign002()
381 UIView* back = new UIView(); in UIKitUIArcLabelTestAlign003() local
383 back->Resize(RADIUS, RADIUS); in UIKitUIArcLabelTestAlign003()
[all …]
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.10.6/
H A Dchangelogs-arkui.md5 1. **NavigationTitleMode** is set to **Full**, **Free**, or **Mini** without the back button.
11 2. **NavigationTitleMode** is set to **Mini** and the back button is displayed.
13 API version 9: The spacing between the custom title and the back button is 16 vp.
74 Text(`Change back button: ${this.backButton}`).onClick(()=>{
94 API version 9: Custom title with the back button in **NavigationTitleMode.Mini** settings
114 1. With the back button
120 2. Without the back button
167 API version 9: Custom title bar with the back button
171 API version 10: Custom title bar with the back button
175 API version 9: Custom title bar without the back button
[all …]
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-routing.md195 ![router-back-to-home](figures/router-back-to-home.gif)
212 router.back();
225 router.back({
235 router.back({
250 router.back({
263 router.back({
311 ![router-add-query-box-before-back](figures/router-add-query-box-before-back.gif)
344 // 调用router.back()方法,返回上一个页面
345 router.back();
394 // 调用router.back()方法,返回上一个页面
[all …]
H A Darkts-page-transition-animation.md72 | router.back,从页面B返回到页面A | 页面进入,PageTransitionEnter生效,从左侧滑入屏幕 | 页面退出,PageTransitionExit生效,向右侧…
74 | router.back,从页面A返回到页面B | 页面退出,PageTransitionExit生效,向左侧滑出屏幕 | 页面进入,PageTransitionEnter生效,从右…
77 如果希望pushUrl进入的页面总是从右侧滑入,back时退出的页面总是从右侧滑出,则上表中的第3、4种情况不满足要求,那么需要完整的定义4个页面转场效果。
178 Button("back")
181 this.getUIContext().getRouter().back();
229 Button("back")
232 this.getUIContext().getRouter().back();
286 Button("back")
289 this.getUIContext().getRouter().back();
331 Button("back")
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_profiler/unittest/
H A Drs_profiler_network_test.cpp68 EXPECT_EQ(Network::outgoing_.back(), reply);
73 EXPECT_EQ(Network::outgoing_.back(), reply);
111 EXPECT_EQ(Network::outgoing_.back(), sendData);
127 EXPECT_EQ(Network::outgoing_.back(), sendData);
144 EXPECT_EQ(Network::outgoing_.back(), sendData);
161 EXPECT_EQ(Network::outgoing_.back(), sendData);
181 EXPECT_EQ(Network::outgoing_.back(), sendData);
197 EXPECT_EQ(Network::outgoing_.back(), sendData);
202 EXPECT_EQ(Network::outgoing_.back(), sendData);
217 EXPECT_EQ(Network::outgoing_.back(), sendData);
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/utils/
H A Dstring_expression.cpp146 while (opStack.back() != "(") { in PushOpStack()
147 result.emplace_back(opStack.back()); in PushOpStack()
156 } else if (opStack.back() == "(") { in PushOpStack()
158 } else if (opMapping[curOp] > opMapping[opStack.back()] && (!opStack.empty())) { in PushOpStack()
161 while ((opStack.back() != "(") && (opMapping[opStack.back()] >= opMapping[curOp])) { in PushOpStack()
162 result.emplace_back(opStack.back()); in PushOpStack()
218 result.emplace_back(opStack.back()); in ConvertDal2Rpn()
272 Dimension num1 = result.back(); in CalculateExpImpl()
274 Dimension num2 = result.back(); in CalculateExpImpl()
299 if (result.size() == 1 && result.back().Unit() != DimensionUnit::NONE) { in CalculateExp()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Djson.h272 return object_.back().value;
645 add(stack.back(), value(object{})); in parse()
667 if (stack.back().type != type::object) { in parse()
677 auto value = std::move(stack.back()); in parse()
683 add(stack.back(), std::move(value)); in parse()
694 add(stack.back(), value(array{})); in parse()
703 if (stack.back().type != type::array) { in parse()
714 auto value = std::move(stack.back()); in parse()
720 add(stack.back(), std::move(value)); in parse()
753 add(stack.back(), std::move(value)); in parse()
[all …]
/ohos5.0/foundation/communication/netmanager_ext/services/mdnsmanager/src/
H A Dmdns_packet_parser.cpp145 begin = ParseDnsString(begin, payload, questions.back().name); in ParseQuestion()
146 questions.back().name = UnDotted(questions.back().name); in ParseQuestion()
159 begin = ReadNUint16(begin, questions.back().qtype); in ParseQuestion()
160 begin = ReadNUint16(begin, questions.back().qclass); in ParseQuestion()
168 begin = ParseDnsString(begin, payload, answers.back().name); in ParseRR()
169 answers.back().name = UnDotted(answers.back().name); in ParseRR()
182 begin = ReadNUint16(begin, answers.back().rtype); in ParseRR()
183 begin = ReadNUint16(begin, answers.back().rclass); in ParseRR()
184 begin = ReadNUint32(begin, answers.back().ttl); in ParseRR()
185 begin = ReadNUint16(begin, answers.back().length); in ParseRR()
[all …]
/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/
H A Dsample_stack_printer.cpp172 SampleStackItem* back = nodes.back(); in Print() local
173 SampleStackItem* sibling = back->siblings; in Print()
174 SampleStackItem* child = back->child; in Print()
175 std::string space(indent * back->level, ' '); in Print()
178 ret << space << back->count << " " << DfxFrameFormatter::GetFrameStr(back->current); in Print()
199 SampleStackItem* cur = stk.back(); in FreeNodes()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/event/
H A Devent_dump_test_ng.cpp98 … eventTreeRecord->eventTreeList.back().touchPoints.emplace_back(TouchPointSnapshot(event)); in FillTouchDownEventToEventTree()
100 eventTreeRecord->eventTreeList.back().touchDownCount = touchDownCount; in FillTouchDownEventToEventTree()
179 …EXPECT_EQ(eventTreeRecord->eventTreeList.back().touchDownCount, (eventTreeRecordCount * touchDownC…
234 EXPECT_FALSE(eventTreeRecord->eventTreeList.back().gestureTree.empty());
235 EXPECT_FALSE(eventTreeRecord->eventTreeList.back().gestureMap.empty());
296 auto iter = eventTreeRecord->eventTreeList.back().gestureMap.find(finger);
297 ASSERT_TRUE(iter != eventTreeRecord->eventTreeList.back().gestureMap.end());
332 auto iter = eventTreeRecord->eventTreeList.back().gestureMap.find(finger);
333 ASSERT_TRUE(iter != eventTreeRecord->eventTreeList.back().gestureMap.end());
367 auto iter = eventTreeRecord->eventTreeList.back().gestureMap.find(finger);
[all …]
/ohos5.0/base/sensors/miscdevice/services/miscdevice_service/haptic_matcher/src/
H A Dcustom_vibration_matcher.cpp128 timeEffect.delay = flatPattern.events.back().duration; in TransformTime()
185 if ((outputEvents.empty()) || (outputEvents.back().tag == EVENT_TAG_TRANSIENT)) { in MixedWaveProcess()
187 } else if ((event.time >= (outputEvents.back().time + outputEvents.back().duration))) { in MixedWaveProcess()
188 … int32_t diffTime = event.time - outputEvents.back().time - outputEvents.back().duration; in MixedWaveProcess()
189 … outputEvents.back().duration += ((diffTime < VIBRATOR_DELAY) ? (diffTime - VIBRATOR_DELAY) : 0); in MixedWaveProcess()
190 outputEvents.back().duration = std::max(outputEvents.back().duration, 0); in MixedWaveProcess()
193 VibrateEvent &lastEvent = outputEvents.back(); in MixedWaveProcess()
250 int32_t overlapRight = std::min(curveLeft.back().time, curveRight.back().time); in MergeCurve()
312 int32_t endTime = curve.back().time; in ProcessContinuousEvent()
360 PrimitiveEffect &prePrimitiveEffect = compositeEffects.back().primitiveEffect; in ProcessContinuousEventSlice()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A Djs-apis-system-router.md117 ## router.back
119 back(options?: BackRouterOptions): void
162 // mall页面通过back,将返回detail页面
166 router.back();
174 // detail页面通过back,将返回index页面
178 router.back();
186 // 通过back,返回到detail页面
190 router.back({uri:'pages/detail/detail'});
/ohos5.0/base/hiviewdfx/hiview/base/running_status_logger/
H A Drunning_status_logger.cpp76 if (workPath.back() != '/') { in GetLogDir()
101 if (allLogFiles.back().find(FormatTimeStamp(true)) == std::string::npos) { in GetLogWroteDestFile()
110 if (FileUtil::GetFileSize(allLogFiles.back()) + content.size() < singleLogFileSizeLimit) { in GetLogWroteDestFile()
111 return allLogFiles.back(); in GetLogWroteDestFile()
113 std::string newestFileName = allLogFiles.back(); in GetLogWroteDestFile()
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-routing.md199 ![router-back-to-home](figures/router-back-to-home.gif)
216 router.back();
229 router.back({
239 router.back({
254 router.back({
267 router.back({
315 ![router-add-query-box-before-back](figures/router-add-query-box-before-back.gif)
335 // Define a click event processing function for the back button.
348 // Invoke the router.back() API to return to the previous page.
349 router.back();
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/frontend/
H A Dcj_page_router_ng.cpp174 auto currentPage = pageRouterStack_.back().Upgrade(); in AllowPopLastPage()
256 pageRouterStack_.emplace_back(temp.back()); in StartClean()
270 auto topNode = pageRouterStack_.back(); in StartPop()
271 auto topView = viewStack_.back(); in StartPop()
295 auto pageNode = pageRouterStack_.back().Upgrade(); in GetState()
311 auto pageNode = pageRouterStack_.back().Upgrade(); in GetParams()
326 auto pageNode = pageRouterStack_.back().Upgrade(); in GetCurrentPageUrl()
557 auto topNode = pageRouterStack_.back(); in PopPage()
558 auto topView = viewStack_.back(); in PopPage()
571 auto nextNode = pageRouterStack_.back().Upgrade(); in PopPage()
[all …]
/ohos5.0/docs/zh-cn/third-party-cases/
H A Dapp_quality_improvement_cases_about_jserror.md141 系统稳定性测试72小时,com.ohos.settings出现1次JS_ERROR:ohos_router_1.back
153 _ohos_router_1.back({
165 发生在wifiPsd.js中,调用router.back()函数时出现异常。
171 当在异步回调中执行router.back()时,会产生已经不在当前页面的现象,导致router操作失败,例如:
179 对调用router.back()处代码添加try-catch保护。
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/utils/
H A Dlru_cache.h91 auto& back = itemList_.back(); in GetLruNode() local
92 key = back.first; in GetLruNode()
93 value = back.second; in GetLruNode()
/ohos5.0/foundation/ability/ability_lite/services/abilitymgr_lite/src/
H A Dability_mission_stack.cpp56 if (missionRecords_.back() != &missionRecord) { in MoveMissionRecordToTop()
87 AbilityMissionRecord *topMissionRecord = missionRecords_.back(); in IsTopMissionRecord()
107 return missionRecords_.back(); in GetTopMissionRecord()
137 return missionRecords_.back()->GetTopPageAbility(); in GetTopPageAbility()
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H A Dnative_lib_util.cpp48 … libPath += (libPath.back() == '/') ? hapInfo.nativeLibraryPath : "/" + hapInfo.nativeLibraryPath; in GetHapSoPath()
64 libPath = libPath.back() == '/' ? libPath : libPath + "/"; in GetHspNativeLibPath()
71 libPath = libPath.back() == '/' ? libPath : libPath + "/"; in GetHspNativeLibPath()
100 …patchLibPath += (patchLibPath.back() == '/') ? patchNativeLibraryPath : "/" + patchNativeLibraryPa… in GetPatchNativeLibPath()
/ohos5.0/foundation/distributedhardware/distributed_input/services/state/src/
H A Dtouchpad_event_fragment_mgr.cpp43 return events.front().IsTouchPadOptStart() && events.back().IsTouchPadOptFinish(); in IsWholeTouchFragments()
57 fragments_[dhId].back().PushEvent(event); in PushEvent()
66 if (fragments_[dhId].back().IsTouchPadOptFinish()) { in DealSynEvent()
84 if (fragments_[dhId].back().IsShouldDrop()) { in DealSynEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dsvg_animate.cpp206 …DiscreteAnimate(animation, originalValue, GetValue<T>(values.front()), GetValue<T>(values.back())); in DiscreteAnimate()
238 CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, GetCurve()); in DiscreteWithValues()
335 CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, GetCurve()); in LinearAnimate()
365 CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, GetCurve()); in LinearWithValues()
389 CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, GetCurve()); in LinearWithKeyTimes()
406 CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, GetCurve()); in CreatePacedAnimate()
503 …CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, CubicCurveCreator(keySplines_.front())… in SplineAnimate()
535 …CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, CubicCurveCreator(keySplines_.back())); in SplineWithKeySplines()
561 …CreateKeyframe(animation, GetValue<T>(values.back()), 1.0f, CubicCurveCreator(keySplines_.back())); in SplineWithKeyTimes()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Dexif_maker_note.cpp547 ExifItem &back = items_.back(); in ParserItem() local
548 back.ifd = ifd; in ParserItem()
549 back.tag = tag; in ParserItem()
550 back.format = format; in ParserItem()
551 back.count = components; in ParserItem()
552 GetData(offset, sizeof(uint32_t), back.data); in ParserItem()
553 back.Dump("ParserItem", order_); in ParserItem()
560 …if ((back.tag == HW_MNOTE_TAG_SCENE_INFO_OFFSET) || (back.tag == HW_MNOTE_TAG_FACE_INFO_OFFSET)) { in ParserItem()
561 if (!ParserIFD((tiff_offset_ + dataOrOffset), back.tag, (deep + 1))) { in ParserItem()

12345678910>>...40