Home
last modified time | relevance | path

Searched refs:bottom (Results 1 - 25 of 34) sorted by relevance

12

/base/hiviewdfx/faultloggerd/test/unittest/unwind/
H A Dmaps_test.cpp193 uintptr_t bottom, top; in HWTEST_F() local
194 ASSERT_TRUE(maps_->GetStackRange(bottom, top)); in HWTEST_F()
196 EXPECT_EQ(bottom, 0xff860000); in HWTEST_F()
199 EXPECT_EQ(bottom, 0x7fe37db000); in HWTEST_F()
/base/inputmethod/imf/services/include/
H A Dsys_cfg_parser.h80 int32_t bottom = 0; member
87 ret = GetValue(node, GET_NAME(bottom), bottom) && ret;
/base/print/print_fwk/frameworks/models/print_models/src/
H A Dprint_margin.cpp71 void PrintMargin::SetBottom(uint32_t bottom) in SetBottom() argument
74 bottom_ = bottom; in SetBottom()
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
H A Dinput_method_panel.h57 int32_t bottom; member
61 bottom == panelAdjust.bottom); in operator ==()
/base/print/print_fwk/frameworks/models/print_models/include/
H A Dprint_margin.h54 void SetBottom(uint32_t bottom);
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/
H A Ddfx_maps.h50 bool GetStackRange(uintptr_t& bottom, uintptr_t& top);
/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dprint_manager_adapter.h37 uint32_t bottom; member
/base/security/security_component_manager/services/security_component_service/sa/sa_main/
H A Dsec_comp_info_helper.cpp172 (comp->padding_.bottom != MIN_PADDING_WITHOUT_BG) || (comp->padding_.left != MIN_PADDING_WITHOUT_BG))) { in CheckSecCompBaseButton()
189 (comp->padding_.bottom < MIN_PADDING_SIZE) || (comp->padding_.left < MIN_PADDING_SIZE) || in CheckSecCompBase()
/base/security/security_component_manager/interfaces/inner_api/security_component/include/
H A Dsec_comp_info.h43 DimensionT bottom = DEFAULT_DIMENSION; member
/base/security/security_component_manager/frameworks/security_component/src/
H A Dsec_comp_base.cpp42 const std::string JsonTagConstants::JSON_PADDING_BOTTOM_TAG = "bottom";
124 if (!ParseDimension(jsonPadding, JsonTagConstants::JSON_PADDING_BOTTOM_TAG, res.bottom)) { in ParsePadding()
320 { JsonTagConstants::JSON_PADDING_BOTTOM_TAG, padding_.bottom }, in ToJson()
380 padding_.bottom, padding_.left, fontColor_.value, bgColor_.value, iconColor_.value, borderWidth_, in CompareComponentBasicInfo()
383 other->padding_.top, other->padding_.right, other->padding_.bottom, other->padding_.left, in CompareComponentBasicInfo()
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Ddfx_maps.cpp285 bool DfxMaps::GetStackRange(uintptr_t& bottom, uintptr_t& top) in GetStackRange() argument
290 bottom = stackBottom_; in GetStackRange()
/base/security/security_component_manager/test/fuzztest/security_component/common/
H A Dfuzz_common.cpp200 padding.bottom = window.y_ + window.height_ - buttonRect.y_ - buttonRect.height_; in ConstructButtonRect()
225 { JsonTagConstants::JSON_PADDING_BOTTOM_TAG, padding.bottom }, in ConstructWindowJson()
/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_panel.cpp320 panelAdjust_.insert({ config.style, { config.top, config.left, config.right, config.bottom } }); in ParsePanelRect()
460 static_cast<uint32_t>((porIterValue.top + porIterValue.bottom) * densityDpi); in CalculatePanelRect()
473 static_cast<uint32_t>((porIterValue.top + porIterValue.bottom) * densityDpi); in CalculatePanelRect()
495 static_cast<uint32_t>((porIterValue.top + porIterValue.bottom) * densityDpi); in CalculateFloatRect()
510 static_cast<uint32_t>((lanIterValue.top + lanIterValue.bottom) * densityDpi); in CalculateFloatRect()
529 static_cast<uint32_t>((lanIterValue.top + lanIterValue.bottom) * densityDpi); in CalculateLandscapeRect()
542 static_cast<uint32_t>((lanIterValue.top + lanIterValue.bottom) * densityDpi); in CalculateLandscapeRect()
/base/security/security_component_manager/frameworks/inner_api/security_component/test/unittest/src/
H A Dsec_comp_kit_test.cpp100 comp.padding_.bottom = TestCommon::TEST_DIMENSION; in HWTEST_F()
H A Dlocation_button_test.cpp450 comp1.padding_.bottom = DEFAULT_DIMENSION; in HWTEST_F()
452 comp1.padding_.bottom = TestCommon::TEST_DIMENSION; in HWTEST_F()
/base/web/webview/ohos_adapter/print_manager_adapter/src/
H A Dprint_manager_adapter_impl.cpp138 printMarginAdapter.bottom = printMargin.GetBottom(); in ConvertPrintingParameters()
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/
H A Dark_web_nweb.h617 * @param bottom: whether move to the bottom.
620 virtual void PageDown(bool bottom) = 0;
1259 virtual void OnSafeInsetsChange(int left, int top, int right, int bottom) = 0;
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/
H A Dark_web_nweb_impl.h523 * @param bottom: whether move to the bottom.
525 void PageDown(bool bottom) override;
1088 void OnSafeInsetsChange(int left, int top, int right, int bottom) override;
H A Dark_web_nweb_impl.cpp522 void ArkWebNWebImpl::PageDown(bool bottom) in PageDown() argument
524 nweb_nweb_->PageDown(bottom); in PageDown()
978 void ArkWebNWebImpl::OnSafeInsetsChange(int left, int top, int right, int bottom) in OnSafeInsetsChange() argument
980 nweb_nweb_->OnSafeInsetsChange(left, top, right, bottom); in OnSafeInsetsChange()
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/
H A Dark_web_nweb_wrapper.cpp623 void ArkWebNWebWrapper::PageDown(bool bottom) in PageDown() argument
625 ark_web_nweb_->PageDown(bottom); in PageDown()
1139 void ArkWebNWebWrapper::OnSafeInsetsChange(int left, int top, int right, int bottom) in OnSafeInsetsChange() argument
1141 ark_web_nweb_->OnSafeInsetsChange(left, top, right, bottom); in OnSafeInsetsChange()
H A Dark_web_nweb_wrapper.h531 * @param bottom: whether move to the bottom.
533 void PageDown(bool bottom) override;
1107 void OnSafeInsetsChange(int left, int top, int right, int bottom) override;
/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb.h765 * @param bottom whether move to the bottom.
767 virtual void PageDown(bool bottom) = 0;
1294 virtual void OnSafeInsetsChange(int left, int top, int right, int bottom) = 0;
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/
H A Dnweb_create_window.h199 void PageDown(bool bottom) override {}
/base/web/webview/test/unittest/common/
H A Dnweb_create_window.h255 void PageDown(bool bottom) override
/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Djson_operate_test.cpp74 "\"top\": 1,\"left\": 2,\"right\": 3,\"bottom\": 4}]}";
351 EXPECT_EQ(panelAdjust[0].bottom, 4); in HWTEST_F()

Completed in 23 milliseconds

12