Searched refs:getRootMeasureSpec (Results 1 – 1 of 1) sorted by relevance
1804 childWidthMeasureSpec = getRootMeasureSpec(baseSize, lp.width); in measureHierarchy()1805 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height); in measureHierarchy()1818 childWidthMeasureSpec = getRootMeasureSpec(baseSize, lp.width); in measureHierarchy()1831 childWidthMeasureSpec = getRootMeasureSpec(desiredWindowWidth, lp.width); in measureHierarchy()1832 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height); in measureHierarchy()2531 int childWidthMeasureSpec = getRootMeasureSpec(mWidth, lp.width); in performTraversals()2532 int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height); in performTraversals()3229 private static int getRootMeasureSpec(int windowSize, int rootDimension) { in getRootMeasureSpec() method in ViewRootImpl