Home
last modified time | relevance | path

Searched refs:boundsCount (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
DActivityManager.java2444 final int boundsCount = taskBounds == null ? 0 : taskBounds.length; in writeToParcel() local
2445 dest.writeInt(boundsCount); in writeToParcel()
2446 for (int i = 0; i < boundsCount; i++) { in writeToParcel()
2471 final int boundsCount = source.readInt(); in readFromParcel() local
2472 if (boundsCount > 0) { in readFromParcel()
2473 taskBounds = new Rect[boundsCount]; in readFromParcel()
2474 for (int i = 0; i < boundsCount; i++) { in readFromParcel()