Home
last modified time | relevance | path

Searched refs:display (Results 1 – 25 of 138) sorted by relevance

123456

/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/config/
Dconfig.ts17 import display from '@ohos.display';
27 display.getDefaultDisplay().then((display)=>{
28 if (typeof display.height === "string") {
33 Log.info(this.TAG, "display height: " + display.height +
34 " display width: " + display.width)
35 if (display.height > display.width) {
/base/powermgr/display_manager/service/etc/
DBUILD.gn17 ## Install display.para to /system/etc/param/display.para
18 ohos_prebuilt_etc("display.para") {
19 source = "display.para"
25 ohos_prebuilt_etc("display.para.dac") {
26 source = "display.para.dac"
34 ":display.para",
35 ":display.para.dac",
Ddisplay.para15 const.display.brightness.min=5
16 const.display.brightness.default=102
17 const.display.brightness.max=255
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/registerdisplay_fuzzer/
Dregisterdisplay_fuzzer.cpp32 DisplayManagerAdapterImpl display; in DoSomethingInterestingWithMyAPI() local
34 display.RegisterDisplayListener(listener); in DoSomethingInterestingWithMyAPI()
35 display.UnregisterDisplayListener(listener); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getdisplay_fuzzer/
Dgetdisplay_fuzzer.cpp32 DisplayManagerAdapterImpl display; in DoSomethingInterestingWithMyAPI() local
33 display.GetDefaultDisplay(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getdisplayid_fuzzer/
Dgetdisplayid_fuzzer.cpp32 DisplayManagerAdapterImpl display; in DoSomethingInterestingWithMyAPI() local
33 display.GetDefaultDisplayId(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getorientation_fuzzer/
Dgetorientation_fuzzer.cpp33 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.GetOrientation(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getrotation_fuzzer/
Dgetrotation_fuzzer.cpp33 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.GetRotation(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getwidth_fuzzer/
Dgetwidth_fuzzer.cpp33 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.GetWidth(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getheight_fuzzer/
Dgetheight_fuzzer.cpp33 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.GetHeight(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/getvirtual_fuzzer/
Dgetvirtual_fuzzer.cpp33 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.GetVirtualPixelRatio(); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/unregisterdisplay_fuzzer/
Dunregisterdisplay_fuzzer.cpp32 DisplayManagerAdapterImpl display; in DoSomethingInterestingWithMyAPI() local
34 display.UnregisterDisplayListener(listener); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/displaychange_fuzzer/
Ddisplaychange_fuzzer.cpp33 DisplayListenerAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.OnChange(static_cast<DisplayId>(1)); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/displaycreate_fuzzer/
Ddisplaycreate_fuzzer.cpp33 DisplayListenerAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.OnCreate(static_cast<DisplayId>(1)); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/convertorientation_fuzzer/
Dconvertorientation_fuzzer.cpp34 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
35 display.ConvertOrientationType(Orientation::UNSPECIFIED); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/displaydestroy_fuzzer/
Ddisplaydestroy_fuzzer.cpp33 DisplayListenerAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
34 display.OnDestroy(static_cast<DisplayId>(1)); in DoSomethingInterestingWithMyAPI()
/base/web/webview/test/fuzztest/ohos_adapter/display_adapter/convertrotation_fuzzer/
Dconvertrotation_fuzzer.cpp34 DisplayAdapterImpl display(listener); in DoSomethingInterestingWithMyAPI() local
35 display.ConvertRotationType(Rotation::ROTATION_0); in DoSomethingInterestingWithMyAPI()
/base/hiviewdfx/faultloggerd/test/unittest/stacktrace_rust/
Dmain.rs54 let display = path.display(); in test_print_trace() localVariable
56 Err(why) => panic!("couldn't create {}: {:?}", display, why), in test_print_trace()
/base/notification/distributed_notification_service/services/dialog_ui/enable_notification_dialog/entry/src/main/ets/ServiceExtAbility/
DNotificationServiceExtAbility.ts18 import display from '@ohos.display';
43 display.getDefaultDisplay().then(() => {
82 let def = display.getDefaultDisplaySync();
/base/powermgr/power_manager/services/native/src/actions/default/
DBUILD.gn22 include_dirs = [ "./display" ]
65 sources += [ "display/device_state_action.cpp" ]
72 sources += [ "display/default_device_state_action.cpp" ]
/base/web/webview/ohos_adapter/display_manager_adapter/src/
Ddisplay_manager_adapter_impl.cpp47 DisplayAdapterImpl::DisplayAdapterImpl(sptr<OHOS::Rosen::Display> display) in DisplayAdapterImpl() argument
48 : display_(display) {} in DisplayAdapterImpl()
145 sptr<Display> display = DisplayManager::GetInstance().GetDefaultDisplay(); in GetDefaultDisplay() local
146 return std::make_shared<DisplayAdapterImpl>(display); in GetDefaultDisplay()
/base/powermgr/power_manager/power_dialog/entry/src/main/ets/ServiceExtAbility/
DThermalHighDialogAbility.ts18 import display from '@ohos.display';
40 display.getDefaultDisplay().then(dis => {
DThermalLowDialogAbility.ts18 import display from '@ohos.display';
40 display.getDefaultDisplay().then(dis => {
/base/usb/usb_manager/frameworks/dialog/dialog_ui/usb_right_dialog/src/main/ets/ServiceExtAbility/
DUsbDialogAbility.ts18 import display from '@ohos.display';
45 display.getDefaultDisplay().then(dis => {
/base/update/update_app/
DREADME.md14 1. Check for available update packages and display the check result.
16 2. Download the update package and display the download progress.

123456