Home | History | Annotate | Download | only in system

Lines Matching defs:customizations

69         Customizations customizations = getCustomizations(context);
70 generateSetting(customizations);
115 private void generateSetting(Customizations customizations) {
118 if (customizations != null) {
119 mPreferStaticShadows = customizations.getBoolean(
128 if (customizations != null) {
129 mOutlineClippingDisabled = customizations.getBoolean(
140 static class Customizations {
144 public Customizations(Resources resources, String packageName) {
155 private Customizations getCustomizations(Context context) {
159 Log.v(TAG, "getting oem customizations by intent: " + ACTION_PARTNER_CUSTOMIZATION);
177 return resources == null ? null : new Customizations(resources, packageName);