OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:folderPreferences
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/src/com/android/email/preferences/
EmailPreferenceMigrator.java
27
import com.android.mail.preferences.
FolderPreferences
;
147
final
FolderPreferences
folderPreferences
=
148
new
FolderPreferences
(context, account.getEmailAddress(), folder,
154
folderPreferences
.setNotificationsEnabled(notify);
158
folderPreferences
.setNotificationRingtoneUri(ringtoneUri);
163
folderPreferences
.setNotificationVibrateEnabled(vibrate);
165
folderPreferences
.commit();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
53
import com.android.mail.preferences.
FolderPreferences
;
368
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
371
if (!
folderPreferences
.areNotificationsEnabled()) {
558
final
FolderPreferences
folderPreferences
=
559
new
FolderPreferences
(context, account.getEmailAddress(), folder, isInbox);
564
moveNotificationSetting(accountPreferences,
folderPreferences
);
567
if (!
folderPreferences
.areNotificationsEnabled())
[
all
...]
/packages/apps/Email/src/com/android/email/
NotificationController.java
49
import com.android.mail.preferences.
FolderPreferences
;
364
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
367
ringtoneUri =
folderPreferences
.getNotificationRingtoneUri();
368
vibrate =
folderPreferences
.isNotificationVibrateEnabled();
[
all
...]
Completed in 38 milliseconds