Lines Matching refs:DisplayOption
243 DisplayOption defaultDisplayOption = invDistWeightedInterpolate( in InvariantDeviceProfile()
252 DisplayOption myDisplayOption = invDistWeightedInterpolate( in InvariantDeviceProfile()
258 DisplayOption result = new DisplayOption(defaultDisplayOption.grid) in InvariantDeviceProfile()
324 ArrayList<DisplayOption> allOptions = in initGrid()
327 DisplayOption displayOption = in initGrid()
338 private void initGrid(Context context, Info displayInfo, DisplayOption displayOption, in initGrid()
484 private static ArrayList<DisplayOption> getPredefinedDeviceProfiles(Context context, in getPredefinedDeviceProfiles()
486 ArrayList<DisplayOption> profiles = new ArrayList<>(); in getPredefinedDeviceProfiles()
504 profiles.add(new DisplayOption(gridOption, context, in getPredefinedDeviceProfiles()
515 ArrayList<DisplayOption> filteredProfiles = new ArrayList<>(); in getPredefinedDeviceProfiles()
517 for (DisplayOption option : profiles) { in getPredefinedDeviceProfiles()
526 for (DisplayOption option : profiles) { in getPredefinedDeviceProfiles()
627 private static DisplayOption invDistWeightedInterpolate( in invDistWeightedInterpolate()
628 Info displayInfo, ArrayList<DisplayOption> points, @DeviceType int deviceType) { in invDistWeightedInterpolate()
656 DisplayOption closestPoint = points.get(0); in invDistWeightedInterpolate()
664 DisplayOption out = new DisplayOption(closestOption); in invDistWeightedInterpolate()
666 DisplayOption p = points.get(i); in invDistWeightedInterpolate()
669 out.add(new DisplayOption().add(p).multiply(w)); in invDistWeightedInterpolate()
898 static final class DisplayOption { class
924 DisplayOption(GridOption grid, Context context, AttributeSet attrs) { in DisplayOption() method in InvariantDeviceProfile.DisplayOption
1171 DisplayOption() { in DisplayOption() method in InvariantDeviceProfile.DisplayOption
1175 DisplayOption(GridOption grid) { in DisplayOption() method in InvariantDeviceProfile.DisplayOption
1194 private DisplayOption multiply(float w) { in multiply()
1217 private DisplayOption add(DisplayOption p) { in add()