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
;
149
final
FolderPreferences
folderPreferences
=
150
new
FolderPreferences
(context, account.getEmailAddress(), folder,
155
folderPreferences
.setNotificationsEnabled(notify);
158
folderPreferences
.setNotificationRingtoneUri(ringtoneUri);
162
folderPreferences
.setNotificationVibrateEnabled(vibrate);
164
folderPreferences
.commit();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
57
import com.android.mail.preferences.
FolderPreferences
;
442
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
445
if (!
folderPreferences
.areNotificationsEnabled()) {
679
final
FolderPreferences
folderPreferences
=
680
new
FolderPreferences
(context, account.getAccountId(), folder, isInbox);
685
moveNotificationSetting(accountPreferences,
folderPreferences
);
688
if (!
folderPreferences
.areNotificationsEnabled())
[
all
...]
/packages/apps/Email/src/com/android/email/
EmailNotificationController.java
49
import com.android.mail.preferences.
FolderPreferences
;
360
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
363
ringtoneUri =
folderPreferences
.getNotificationRingtoneUri();
364
vibrate =
folderPreferences
.isNotificationVibrateEnabled();
[
all
...]
Completed in 401 milliseconds