Home
last modified time | relevance | path

Searched refs:voicemail (Results 1 – 14 of 14) sorted by relevance

/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
DVoicemailProviderHelpers.java17 package com.example.android.voicemail.common.core;
19 import com.example.android.voicemail.common.logging.Logger;
20 import com.example.android.voicemail.common.utils.CloseUtils;
21 import com.example.android.voicemail.common.utils.DbQueryUtils;
95 public Uri insert(Voicemail voicemail) { in insert() argument
96 check(!voicemail.hasId(), "Inserted voicemails must not have an id", voicemail); in insert()
97 check(voicemail.hasTimestampMillis(), "Inserted voicemails must have a timestamp", in insert()
98 voicemail); in insert() local
99 check(voicemail.hasNumber(), "Inserted voicemails must have a number", voicemail); in insert() local
100 logger.d(String.format("Inserting new voicemail: %s", voicemail)); in insert()
[all …]
DVoicemailProviderHelper.java17 package com.example.android.voicemail.common.core;
69 public Uri insert(Voicemail voicemail); in insert() argument
99 public int update(Uri uri, Voicemail voicemail); in update() argument
DVoicemailFilterFactory.java17 package com.example.android.voicemail.common.core;
19 import static com.example.android.voicemail.common.utils.DbQueryUtils.concatenateClausesWithAnd;
20 import static com.example.android.voicemail.common.utils.DbQueryUtils.concatenateClausesWithOr;
21 import static com.example.android.voicemail.common.utils.DbQueryUtils.getEqualityClause;
DVoicemailFilter.java17 package com.example.android.voicemail.common.core;
DVoicemail.java17 package com.example.android.voicemail.common.core;
DVoicemailImpl.java17 package com.example.android.voicemail.common.core;
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
DAddVoicemailActivity.java17 package com.example.android.voicemail;
19 import com.example.android.voicemail.common.core.Voicemail;
20 import com.example.android.voicemail.common.core.VoicemailImpl;
21 import com.example.android.voicemail.common.core.VoicemailProviderHelper;
22 import com.example.android.voicemail.common.core.VoicemailProviderHelpers;
23 import com.example.android.voicemail.common.inject.InjectView;
24 import com.example.android.voicemail.common.inject.Injector;
25 import com.example.android.voicemail.common.logging.Logger;
26 import com.example.android.voicemail.common.ui.DialogHelperImpl;
27 import com.example.android.voicemail.common.utils.CloseUtils;
[all …]
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DDialogHelper.java17 package com.example.android.voicemail.common.ui;
DDialogHelperImpl.java17 package com.example.android.voicemail.common.ui;
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
DInjectView.java17 package com.example.android.voicemail.common.inject;
DInjector.java17 package com.example.android.voicemail.common.inject;
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DCloseUtils.java17 package com.example.android.voicemail.common.utils;
DDbQueryUtils.java17 package com.example.android.voicemail.common.utils;
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
DLogger.java17 package com.example.android.voicemail.common.logging;