OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mVisibleFrame
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/core/java/com/android/server/wm/
Task.java
467
out.set(win.
mVisibleFrame
);
471
if (win.
mVisibleFrame
.left < out.left) {
472
out.left = win.
mVisibleFrame
.left;
474
if (win.
mVisibleFrame
.top < out.top) {
475
out.top = win.
mVisibleFrame
.top;
477
if (win.
mVisibleFrame
.right > out.right) {
478
out.right = win.
mVisibleFrame
.right;
480
if (win.
mVisibleFrame
.bottom > out.bottom) {
481
out.bottom = win.
mVisibleFrame
.bottom;
WindowState.java
324
final Rect
mVisibleFrame
= new Rect();
[
all
...]
WindowManagerService.java
[
all
...]
Completed in 6451 milliseconds