/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/location/ |
H A D | _satellite_status_info.md | 24 | float[] [elevation](#elevation) | 卫星仰角 | 65 ### elevation subsection 67 float [] elevation
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | shadow.h | 58 Shadow(float elevation, Offset offset, Color spotColor, ShadowStyle style) in Shadow() argument 61 SetElevation(elevation); in Shadow() 148 void SetElevation(float elevation) in SetElevation() argument 150 if (elevation >= 0.0f && elevation < LIGHT_HEIGHT) { in SetElevation() 151 elevation_ = elevation; in SetElevation()
|
/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-arkui-customize-titlebar-c++.md | 114 <elevation>0</elevation> 122 <elevation>0</elevation>
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_shadow.cpp | 46 void RSShadow::SetElevation(float elevation) in SetElevation() argument 48 elevation_ = elevation; in SetElevation()
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-arkui-customize-titlebar-c++.md | 116 <elevation>0</elevation> 124 <elevation>0</elevation>
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/theme/ |
H A D | shadow_theme.h | 80 auto elevation = themeStyle->GetAttr<double>(elevationName, 0.0); in ParseShadowParam() local 95 return Shadow(static_cast<float>(elevation), offset, color, shadowStyle); in ParseShadowParam()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsshadow_fuzzer/ |
H A D | rsshadow_fuzzer.cpp | 131 float elevation = GetData<float>(); in DoSetElevation() local 132 rsShadow->SetElevation(elevation); in DoSetElevation()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/ |
H A D | rs_shadow.h | 51 void SetElevation(float elevation);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/location_gnss_v1_0/cpp_target/location/gnss/v1_0/ |
H A D | gnss_types.cpp.txt | 94 if (!WritePodArray(data, dataBlock.elevation)) { 95 HDF_LOGE("%{public}s: failed to write dataBlock.elevation", __func__); 138 if (!ReadPodArray(data, dataBlock.elevation)) { 139 HDF_LOGE("%{public}s: failed to read dataBlock.elevation", __func__);
|
H A D | gnss_types.h.txt | 130 std::vector<float> elevation;
|
/ohos5.0/base/location/services/location_gnss/gnss/source/ |
H A D | gnss_event_callback.cpp | 152 svStatus->SetAltitude(info.elevation[i]); in ReportSatelliteStatusInfo() 161 ", elevation : " + std::to_string(info.elevation[i]) + in ReportSatelliteStatusInfo()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderimage_fuzzer/ |
H A D | rsrenderimage_fuzzer.cpp | 335 float elevation = GetData<float>(); in RSShadowFuzzTest() local 344 shadow.SetElevation(elevation); in RSShadowFuzzTest()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/drawable/ |
H A D | rs_property_drawable_utils.h | 66 const float& elevation, const bool& isFilled, Color spotColor);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_properties_painter.cpp | 242 float elevation = properties.GetShadowElevation() + DEFAULT_TRANSLATION_Z; in GetShadowDirtyRect() local 245 …(elevation != DEFAULT_LIGHT_HEIGHT) ? elevation / (DEFAULT_LIGHT_HEIGHT - elevation) : MAX_TRANS_R… in GetShadowDirtyRect() 248 float userSpotRatio = (elevation != DEFAULT_LIGHT_HEIGHT) in GetShadowDirtyRect() 249 ? DEFAULT_LIGHT_HEIGHT / (DEFAULT_LIGHT_HEIGHT - elevation) in GetShadowDirtyRect() 260 float ambientBlur = std::min(elevation * 0.5f, MAX_AMBIENT_RADIUS); in GetShadowDirtyRect()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_render_node_bridge.cpp | 425 Local<JSValueRef> elevation = runtimeCallInfo->GetCallArgRef(1); in SetShadowElevation() local 427 if (elevation->IsNumber()) { in SetShadowElevation() 428 elevationValue = elevation->ToNumber(vm)->Value(); in SetShadowElevation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | render_node_modifier.cpp | 171 void SetShadowElevation(ArkUINodeHandle node, ArkUI_Float32 elevation) in SetShadowElevation() argument 176 renderContext->SetShadowElevation(elevation); in SetShadowElevation()
|
/ohos5.0/drivers/peripheral/location/gnss/hdi_service/ |
H A D | gnss_interface_impl.cpp | 224 svStatus.elevation.push_back(svInfo->satellitesList[i].elevation); in SvStatusCallback()
|
H A D | location_vendor_lib.h | 451 float elevation; member
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/location_gnss_v1_0/dump_ast_target/ |
H A D | dump.txt | 148 float[] elevation;
|
/ohos5.0/base/location/test/location_gnss/source/ |
H A D | gnss_event_callback_test.cpp | 184 statusInfo.elevation.push_back(12);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | render_node.cpp | 1536 auto elevation = shadow_.GetElevation(); in GetRectWithShadow() local 1537 if (elevation > 0.0f && elevation < shadow_.GetLightHeight()) { in GetRectWithShadow() 1539 blurRadius = elevation / (shadow_.GetLightHeight() - elevation) * shadow_.GetLightRadius(); in GetRectWithShadow()
|
/ohos5.0/foundation/window/window_manager/wmserver/src/ |
H A D | window_manager_service.cpp | 608 auto elevation = *item.floatsValue_; in ConfigAppWindowShadow() local 609 if (elevation.size() != 1 || MathHelper::LessNotEqual(elevation[0], 0.0)) { in ConfigAppWindowShadow() 612 outShadow.elevation_ = elevation[0]; in ConfigAppWindowShadow()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/ |
H A D | render_node.ts | 542 set shadowElevation(elevation: number) { 543 this.shadowElevationValue = this.checkUndefinedOrNullWithDefaultValue<number>(elevation, 0);
|
/ohos5.0/drivers/interface/location/gnss/v1_0/ |
H A D | GnssTypes.idl | 215 float[] elevation;
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/location_gnss_v1_0/foo/location/gnss/v1_0/ |
H A D | GnssTypes.idl | 216 float[] elevation;
|