HomeSort by relevance Sort by last modified time
    Searched refs:stackId (Results 1 - 15 of 15) sorted by null

  /frameworks/base/services/java/com/android/server/wm/
StackBox.java 117 * Return the stackId of the stack that intersects the passed point.
120 * @return -1 if point is outside of mBounds, otherwise the stackId of the containing stack.
129 int stackId = mFirst.stackIdFromPoint(x, y);
130 if (stackId >= 0) {
131 return stackId;
144 * @param stackId the TaskStack to find the bounds of.
145 * @return a new Rect with the bounds of stackId if it is within this StackBox, null otherwise.
147 Rect getStackBounds(int stackId) {
149 return mStack.mStackId == stackId ? new Rect(mBounds) : null;
151 Rect bounds = mFirst.getStackBounds(stackId);
    [all...]
DisplayContent.java 217 TaskStack createStack(int stackId, int relativeStackBoxId, int position, float weight) {
219 if (DEBUG_STACK) Slog.d(TAG, "createStack: stackId=" + stackId + " relativeStackBoxId="
221 if (stackId == HOME_STACK_ID) {
235 newStack = new TaskStack(mService, stackId, this);
246 newStack = box.split(stackId, relativeStackBoxId, position, weight);
300 info.stackId = box.mStack.mStackId;
303 info.stackId = -1;
353 Rect getStackBounds(int stackId) {
355 Rect bounds = mStackBoxes.get(stackBoxNdx).getStackBounds(stackId);
    [all...]
TaskStack.java 69 TaskStack(WindowManagerService service, int stackId, DisplayContent displayContent) {
71 mStackId = stackId;
308 return "{stackId=" + mStackId + " tasks=" + mTasks + "}";
WindowManagerService.java     [all...]
  /dalvik/hit/src/com/android/hit/
HprofParser.java 517 int stackId = mInput.readInt();
518 StackTrace stack = mState.getStackTrace(stackId);
532 int stackId = mInput.readInt();
533 StackTrace stack = mState.getStackTrace(stackId);
554 int stackId = mInput.readInt();
555 StackTrace stack = mState.getStackTrace(stackId);
  /frameworks/base/core/java/android/app/
ActivityManager.java 503 public int stackId;
526 dest.writeInt(stackId);
539 stackId = source.readInt();
    [all...]
IActivityManager.java 122 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
126 public void setFocusedStack(int stackId) throws RemoteException;
    [all...]
ActivityManagerNative.java 629 int stackId = data.readInt();
631 moveTaskToStack(taskId, stackId, toTop);
669 int stackId = data.readInt();
670 setFocusedStack(stackId);
    [all...]
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 80 void addAppToken(int addPos, IApplicationToken token, int groupId, int stackId,
  /frameworks/base/services/java/com/android/server/am/
ActivityStackSupervisor.java 344 final int stackId = stack.mStackId;
345 final int nextStackId = mWindowManager.removeStack(stackId);
347 if (mFocusedStack == null || mFocusedStack.mStackId == stackId) {
    [all...]
ActivityManagerService.java     [all...]
ActivityStack.java 330 ActivityStack(ActivityManagerService service, Context context, Looper looper, int stackId) {
336 mStackId = stackId;
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 186 milliseconds