OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StackBox
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/services/java/com/android/server/wm/
StackBox.java
28
public class
StackBox
{
57
/** Non-null indicates this is mFirst or mSecond of a parent
StackBox
. Null indicates this
59
StackBox
mParent;
62
StackBox
mFirst;
65
StackBox
mSecond;
82
/** True if this
StackBox
sits below the Status Bar. */
88
StackBox
(WindowManagerService service, DisplayContent displayContent,
StackBox
parent) {
89
synchronized (
StackBox
.class) {
107
* Determine if a particular
StackBox
is this one or a descendant of this one
[
all
...]
DisplayContent.java
95
/** Array containing the home
StackBox
and possibly one more which would contain apps. Array
97
private ArrayList<
StackBox
> mStackBoxes = new ArrayList<
StackBox
>();
99
/** True when the home
StackBox
is at the top of mStackBoxes, false otherwise. */
127
StackBox
newBox = new
StackBox
(service, this, null);
243
final
StackBox
box = mStackBoxes.get(stackBoxNdx);
244
if (position ==
StackBox
.TASK_STACK_GOES_OVER
245
|| position ==
StackBox
.TASK_STACK_GOES_UNDER) {
248
StackBox
newBox = new StackBox(mService, this, null)
[
all
...]
TaskStack.java
52
/** The
StackBox
this sits in. */
53
StackBox
mStackBox;
143
* its parent
StackBox
and merge the parent.
WindowManagerService.java
[
all
...]
/frameworks/base/services/java/com/android/server/am/
ActivityStackSupervisor.java
77
import com.android.server.wm.
StackBox
;
[
all
...]
ActivityManagerService.java
55
import com.android.server.wm.
StackBox
;
[
all
...]
Completed in 39 milliseconds