Searched refs:boundsCount (Results 1 – 1 of 1) sorted by relevance
2404 final int boundsCount = taskBounds == null ? 0 : taskBounds.length; in writeToParcel() local2405 dest.writeInt(boundsCount); in writeToParcel()2406 for (int i = 0; i < boundsCount; i++) { in writeToParcel()2431 final int boundsCount = source.readInt(); in readFromParcel() local2432 if (boundsCount > 0) { in readFromParcel()2433 taskBounds = new Rect[boundsCount]; in readFromParcel()2434 for (int i = 0; i < boundsCount; i++) { in readFromParcel()