Lines Matching refs:p
129 private InvariantDeviceProfile(InvariantDeviceProfile p) { in InvariantDeviceProfile() argument
130 numRows = p.numRows; in InvariantDeviceProfile()
131 numColumns = p.numColumns; in InvariantDeviceProfile()
132 numFolderRows = p.numFolderRows; in InvariantDeviceProfile()
133 numFolderColumns = p.numFolderColumns; in InvariantDeviceProfile()
134 iconSize = p.iconSize; in InvariantDeviceProfile()
135 iconShapePath = p.iconShapePath; in InvariantDeviceProfile()
136 landscapeIconSize = p.landscapeIconSize; in InvariantDeviceProfile()
137 iconTextSize = p.iconTextSize; in InvariantDeviceProfile()
138 numHotseatIcons = p.numHotseatIcons; in InvariantDeviceProfile()
139 defaultLayoutId = p.defaultLayoutId; in InvariantDeviceProfile()
140 demoModeLayoutId = p.demoModeLayoutId; in InvariantDeviceProfile()
141 mExtraAttrs = p.mExtraAttrs; in InvariantDeviceProfile()
142 mOverlayMonitor = p.mOverlayMonitor; in InvariantDeviceProfile()
404 Partner p = Partner.get(context.getPackageManager()); in applyPartnerDeviceProfileOverrides() local
405 if (p != null) { in applyPartnerDeviceProfileOverrides()
406 p.applyInvariantDeviceProfileOverrides(this, dm); in applyPartnerDeviceProfileOverrides()
419 DisplayOption p = points.get(0); in invDistWeightedInterpolate() local
420 if (dist(width, height, p.minWidthDps, p.minHeightDps) == 0) { in invDistWeightedInterpolate()
421 return p; in invDistWeightedInterpolate()
426 p = points.get(i); in invDistWeightedInterpolate()
427 float w = weight(width, height, p.minWidthDps, p.minHeightDps, WEIGHT_POWER); in invDistWeightedInterpolate()
429 out.add(new DisplayOption().add(p).multiply(w)); in invDistWeightedInterpolate()
570 private DisplayOption add(DisplayOption p) { in add() argument
571 iconSize += p.iconSize; in add()
572 landscapeIconSize += p.landscapeIconSize; in add()
573 iconTextSize += p.iconTextSize; in add()