OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:customRingtone
(Results
1 - 4
of
4
) sorted by null
/packages/apps/DeskClock/src/com/android/deskclock/data/
RingtoneModel.java
67
private List<
CustomRingtone
> mCustomRingtones;
83
CustomRingtone
addCustomRingtone(Uri uri, String title) {
85
final
CustomRingtone
existing = getCustomRingtone(uri);
90
final
CustomRingtone
ringtone = CustomRingtoneDAO.addCustomRingtone(mPrefs, uri, title);
97
final List<
CustomRingtone
> ringtones = getMutableCustomRingtones();
98
for (
CustomRingtone
ringtone : ringtones) {
107
private
CustomRingtone
getCustomRingtone(Uri uri) {
108
for (
CustomRingtone
ringtone : getMutableCustomRingtones()) {
117
List<
CustomRingtone
> getCustomRingtones() {
123
final List<
CustomRingtone
> ringtones = getMutableCustomRingtones()
[
all
...]
/packages/services/Telephony/src/com/android/phone/
CallerInfoCache.java
75
public final String
customRingtone
;
77
public CacheEntry(String
customRingtone
, boolean shouldSendToVoicemail) {
78
this.
customRingtone
=
customRingtone
;
84
return "ringtone: " +
customRingtone
+ ", " + sendToVoicemail;
205
final String
customRingtone
= cursor.getString(INDEX_CUSTOM_RINGTONE);
211
newNumberToEntry, number,
customRingtone
, sendToVoicemail);
226
newNumberToEntry, key,
customRingtone
, sendToVoicemail);
260
String numberOrSipAddress, String
customRingtone
, boolean sendToVoicemail) {
267
new CacheEntry(
customRingtone
, sendToVoicemail))
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java
395
null /*
customRingtone
*/,
609
final String
customRingtone
= cursor.getString(ContactQuery.CUSTOM_RINGTONE);
623
customRingtone
, isUserProfile);
[
all
...]
/packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java
151
null /*
customRingtone
*/,
435
final String
customRingtone
= cursor.getString(ContactQuery.CUSTOM_RINGTONE);
464
customRingtone
,
[
all
...]
Completed in 144 milliseconds