Home
last modified time | relevance | path

Searched refs:window (Results 1 – 25 of 38) sorted by relevance

12

/development/tools/winscope/src/test/e2e/
Dcross_tool_protocol_test.ts110 await browser.switchTo().window(await getWindowHandleRemoteToolMock());
116 await browser.switchTo().window(await getWindowHandleRemoteToolMock());
124 await browser.switchTo().window(await getWindowHandleRemoteToolMock());
134 await browser.switchTo().window(await getWindowHandleWinscope());
140 await browser.switchTo().window(await getWindowHandleWinscope());
145 await browser.switchTo().window(await getWindowHandleWinscope());
161 await browser.switchTo().window(await getWindowHandleWinscope());
190 await browser.switchTo().window(await getWindowHandleRemoteToolMock());
198 await browser.switchTo().window(await getWindowHandleRemoteToolMock());
206 browser.switchTo().window(await getWindowHandleWinscope());
[all …]
Dviewer_protolog_test.ts125 window.requestAnimationFrame(() => done());
/development/samples/PictureInPicture/ComposePip/app/src/main/java/com/example/samplepip/ui/theme/
DTheme.kt49 val window = (view.context as Activity).window in PiPComposeSampleTheme() constant
50 window.statusBarColor = colorScheme.primary.toArgb() in PiPComposeSampleTheme()
51 WindowCompat.getInsetsController(window, view)?.isAppearanceLightStatusBars = darkTheme in PiPComposeSampleTheme()
/development/tools/axl/
Dchewperf.py77 window = [0 for x in range(5)]
80 window[x % len(window)] = buckets.items()[x][1]
81 print "%s\t%s" % (buckets.items()[x][0], sum(window) / len(window))
/development/samples/browseable/MultiWindowPlayground/
D_index.jd8 This sample demonstrates the use of the multi-window API available
10 AndroidManifest properties to define the multi-window behavior.
11 Switch the sample app into multi-window mode to see how it affects
/development/tools/winscope/src/parsers/window_manager/
Dparser_window_manager_utils.ts163 } else if (child.window) {
164 children = child.window.windowContainer?.children ?? [];
219 } else if (child.window) {
333 if (child.window) {
335 child.window.windowContainer?.identifier ??
336 child.window.identifier ??
359 } else if (child.window) {
361 child.window.windowContainer?.identifier?.title ??
362 child.window.identifier?.title ??
399 if (containerChild.window) {
[all …]
/development/tools/winscope/src/parsers/view_capture/perfetto/
Dparser_view_capture.ts24 window: string; property
65 windowAndPackage.window,
96 names.push({package: tokens[0], window: tokens[1]});
/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Dabstract_timeline_row_component.ts99 const HiPPIwidth = window.devicePixelRatio * width;
100 const HiPPIheight = window.devicePixelRatio * height;
108 if (window.devicePixelRatio !== 1) {
110 context.scale(window.devicePixelRatio, window.devicePixelRatio);
/development/tools/winscope/src/app/components/timeline/mini-timeline/
Dslider_component_test.ts182 expect(window.getComputedStyle(assertDefined(slider)).visibility).toBe(
212 expect(window.getComputedStyle(assertDefined(leftCropper)).visibility).toBe(
240 window.getComputedStyle(assertDefined(rightCropper)).visibility,
267 expect(window.getComputedStyle(assertDefined(leftCropper)).visibility).toBe(
296 window.getComputedStyle(assertDefined(rightCropper)).visibility,
323 expect(window.getComputedStyle(assertDefined(leftCropper)).visibility).toBe(
352 window.getComputedStyle(assertDefined(rightCropper)).visibility,
379 expect(window.getComputedStyle(assertDefined(slider)).visibility).toBe(
Dmini_timeline_component.ts476 const HiPPIwidth = window.devicePixelRatio * width;
477 const HiPPIheight = window.devicePixelRatio * height;
485 if (window.devicePixelRatio !== 1) {
487 context.scale(window.devicePixelRatio, window.devicePixelRatio);
/development/tools/winscope/src/app/components/
Dapp_component.ts387 const prefersDarkQuery = window.matchMedia?.(
473 window.onunhandledrejection = (evt) => {
556 const url = window.URL.createObjectURL(archiveBlob);
560 window.URL.revokeObjectURL(url);
651 window.open(url, '_blank');
Dadb_proxy_component.ts190 window.open(this.downloadProxyUrl, '_blank')?.focus();
/development/tools/winscope/src/
Dzone-flags.ts1 (window as any).__zone_symbol__DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION =
/development/tools/winscope/src/cross_tool/
Dcross_tool_protocol.ts46 constructor(readonly window: Window, readonly origin: string) {}
60 window.addEventListener('message', async (event) => {
92 this.remoteTool.window.postMessage(message, this.remoteTool.origin);
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DContentFragment.java204 Window window = getActivity().getWindow(); in setSystemUiVisible() local
205 WindowManager.LayoutParams winParams = window.getAttributes(); in setSystemUiVisible()
211 window.setFlags(0, WindowManager.LayoutParams.FLAG_FULLSCREEN); in setSystemUiVisible()
218 window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, in setSystemUiVisible()
225 window.setAttributes(winParams); in setSystemUiVisible()
/development/tools/winscope/src/common/
Durl_utils.ts19 const fullUrl = window.location.href;
/development/tools/motion/motion_test_watcher_app/src/app/
Dapp.config.ts8 const urlParams = new URLSearchParams(window.location.search);
/development/tools/winscope/src/test/remote_tool_mock/
Dapp_component.ts92 window.addEventListener('message', (event) => {
135 this.winscope = window.open(AppComponent.TARGET);
/development/tools/winscope/src/viewers/common/
Dwm_ime_utils.ts50 (window) => window.name === focusedWindowTitle,
/development/tools/winscope/src/test/
Dutils.ts33 window /* view */,
/development/tools/winscope/src/abt_chrome_extension/
Dabt_chrome_extension_protocol.ts49 const urlParams = new URLSearchParams(window.location.search);
/development/tools/winscope/src/viewers/components/
Dhierarchy_component.ts175 if (window.getSelection()?.type === 'range') {
/development/samples/StartingWindow/src/com/example/android/startingwindow/
DCustomizeExitActivity.java48 import android.window.SplashScreen;
49 import android.window.SplashScreenView;
/development/tools/winscope/src/viewers/viewer_screen_recording/
Dviewer_screen_recording_component.ts220 const maxHeight = window.innerHeight - 140;
/development/samples/ThemedNavBarKeyboard/src/com/example/android/themednavbarkeyboard/
DThemedNavBarKeyboard.java172 public KeyboardLayoutView(Context context, final Window window) { in KeyboardLayoutView() argument
174 mWindow = window; in KeyboardLayoutView()

12