Searched refs:mConfig (Results 1 - 18 of 18) sorted by relevance

/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModePrioritySettings.java61 if (val == mConfig.allowReminders) return true;
63 final ZenModeConfig newConfig = mConfig.copy();
76 if (val == mConfig.allowEvents) return true;
78 final ZenModeConfig newConfig = mConfig.copy();
93 final int allowMessagesFrom = val == SOURCE_NONE ? mConfig.allowMessagesFrom : val;
94 if (allowMessages == mConfig.allowMessages
95 && allowMessagesFrom == mConfig.allowMessagesFrom) {
100 final ZenModeConfig newConfig = mConfig.copy();
116 final int allowCallsFrom = val == SOURCE_NONE ? mConfig.allowCallsFrom : val;
117 if (allowCalls == mConfig
[all...]
H A DZenModeSettingsBase.java43 protected ZenModeConfig mConfig; field in class:ZenModeSettingsBase
59 if (DEBUG) Log.d(TAG, "Loaded mConfig=" + mConfig);
91 if (Objects.equals(config, mConfig)) return;
92 mConfig = config;
93 if (DEBUG) Log.d(TAG, "updateZenModeConfig mConfig=" + mConfig);
103 mConfig = config;
104 if (DEBUG) Log.d(TAG, "Saved mConfig=" + mConfig);
[all...]
H A DZenModeSettings.java80 final boolean callers = mConfig.allowCalls || mConfig.allowRepeatCallers;
82 s = appendLowercase(s, mConfig.allowReminders, R.string.zen_mode_reminders);
83 s = appendLowercase(s, mConfig.allowEvents, R.string.zen_mode_events);
85 s = appendLowercase(s, mConfig.allowMessages, R.string.zen_mode_selected_messages);
H A DZenModeRuleSettingsBase.java121 setZenModeConfig(mConfig);
162 setZenModeConfig(mConfig);
180 setZenModeConfig(mConfig);
213 new ZenRuleNameDialog(mContext, null, mRule.name, mConfig.getAutomaticRuleNames()) {
216 final ZenModeConfig newConfig = mConfig.copy();
226 mRule = mConfig.automaticRules.get(mRuleId);
244 mConfig.automaticRules.remove(mRuleId);
245 setZenModeConfig(mConfig);
H A DManagedServiceSettings.java46 private final Config mConfig; field in class:ManagedServiceSettings
56 mConfig = getConfig();
65 mServiceListing = new ServiceListing(mContext, mConfig);
80 mEmpty.setText(mConfig.emptyText);
158 final String title = getResources().getString(mConfig.warningDialogTitle, label);
159 final String summary = getResources().getString(mConfig.warningDialogSummary, label);
H A DServiceListing.java44 private final Config mConfig; field in class:ServiceListing
53 mConfig = config;
77 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(mConfig.setting),
149 Settings.Secure.putString(mContentResolver, mConfig.setting,
155 final String flat = Settings.Secure.getString(mContentResolver, mConfig.setting);
169 getServices(mConfig, mServices, mContext.getPackageManager());
H A DZenModeAutomationSettings.java97 new ZenRuleNameDialog(mContext, mServiceListing, null, mConfig.getAutomaticRuleNames()) {
107 final ZenModeConfig newConfig = mConfig.copy();
126 final ZenRuleInfo[] rt = new ZenRuleInfo[mConfig.automaticRules.size()];
129 zri.id = mConfig.automaticRules.keyAt(i);
130 zri.rule = mConfig.automaticRules.valueAt(i);
140 if (mConfig == null) return;
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DCanvasTexture.java28 private final Config mConfig; field in class:CanvasTexture
31 mConfig = Config.ARGB_8888;
38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionsProviderImpl.java38 private final Config mConfig; field in class:SuggestionsProviderImpl
50 mConfig = config;
74 int maxResults = mConfig.getMaxResultsPerSource();
82 if (query.length() == 0 && !mConfig.showSuggestionsForZeroQuery()) {
H A DHelp.java31 private final Config mConfig; field in class:Help
35 mConfig = config;
56 Uri helpUrl = mConfig.getHelpUrl(activityName);
H A DQsbApplication.java51 private Config mConfig; field in class:QsbApplication
111 if (mConfig != null) {
112 mConfig.close();
113 mConfig = null;
156 if (mConfig == null) {
157 mConfig = createConfig();
159 return mConfig;
H A DEventLogLogger.java35 private final Config mConfig; field in class:EventLogLogger
43 mConfig = config;
57 return mConfig;
H A DSearchSettingsImpl.java75 private final Config mConfig; field in class:SearchSettingsImpl
79 mConfig = config;
87 return mConfig;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBitmapTileProvider.java31 private final Config mConfig; field in class:BitmapTileProvider
50 mConfig = Config.ARGB_8888;
80 result = Bitmap.createBitmap(tileSize, tileSize, mConfig);
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java204 int appId = (mApps.get(chan.mConfig)).mAppId;
207 callHealthChannelCallback(chan.mConfig, chan.mDevice,
211 callHealthChannelCallback(chan.mConfig, chan.mDevice,
222 callHealthChannelCallback(chan.mConfig, chan.mDevice,
226 callHealthChannelCallback(chan.mConfig, chan.mDevice,
283 callHealthChannelCallback(chan.mConfig, chan.mDevice, newState,
297 private BluetoothHealthAppConfiguration mConfig; field in class:HealthService.BluetoothHealthDeathRecipient
302 mConfig = config;
307 mService.unregisterAppConfiguration(mConfig);
312 mConfig
843 private BluetoothHealthAppConfiguration mConfig; field in class:HealthService.HealthChannel
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemView.java179 private ConversationItemViewCoordinates.Config mConfig; field in class:ConversationItemView
581 mConfig = new ConversationItemViewCoordinates.Config()
585 mConfig.showFolders();
588 mConfig.showReplyState();
591 mConfig.showColorBlock();
612 mConfig.showPersonalIndicator();
678 mConfig.updateWidth(wSize).setLayoutDirection(ViewCompat.getLayoutDirection(this));
683 mCoordinates = ConversationItemViewCoordinates.forConfig(mContext, mConfig,
692 setMeasuredDimension(mConfig.getWidth(), h);
1212 if (mConfig
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumSetPage.java87 private Config.AlbumSetPage mConfig; field in class:AlbumSetPage
135 int slotViewTop = mActionBar.getHeight() + mConfig.paddingTop;
136 int slotViewBottom = bottom - top - mConfig.paddingBottom;
490 mConfig = Config.AlbumSetPage.get(mActivity);
491 mSlotView = new SlotView(mActivity, mConfig.slotViewSpec);
493 mActivity, mSelectionManager, mSlotView, mConfig.labelSpec,
494 mConfig.placeholderColor);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DRenderingRequest.java48 private static final Bitmap.Config mConfig = Bitmap.Config.ARGB_8888; field in class:RenderingRequest

Completed in 305 milliseconds