OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallLogFragment
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Dialer/src/com/android/dialer/logging/
ScreenEvent.java
22
import com.android.dialer.calllog.
CallLogFragment
;
115
getScreenNameWithTag(
CallLogFragment
.class.getSimpleName(), "History"));
117
getScreenNameWithTag(
CallLogFragment
.class.getSimpleName(), "Voicemail"));
124
getScreenNameWithTag(
CallLogFragment
.class.getSimpleName(), "Filtered"));
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogActivity.java
51
private
CallLogFragment
mAllCallsFragment;
52
private
CallLogFragment
mMissedCallsFragment;
77
return new
CallLogFragment
(
80
return new
CallLogFragment
(Calls.MISSED_TYPE, true /* isCallLogActivity */);
87
final
CallLogFragment
fragment =
88
(
CallLogFragment
) super.instantiateItem(container, position);
CallLogFragment.java
57
public class
CallLogFragment
extends Fragment implements CallLogQueryHandler.Listener,
60
private static final String TAG = "
CallLogFragment
";
143
* True if this instance of the
CallLogFragment
shown in the CallLogActivity.
151
public
CallLogFragment
() {
155
public
CallLogFragment
(int filterType) {
159
public
CallLogFragment
(int filterType, boolean isCallLogActivity) {
164
public
CallLogFragment
(int filterType, int logLimit) {
174
public
CallLogFragment
(int filterType, long dateLimit) {
185
public
CallLogFragment
(int filterType, int logLimit, long dateLimit) {
420
throw new IllegalArgumentException("Unexpected filter type in
CallLogFragment
:
[
all
...]
VisualVoicemailCallLogFragment.java
33
public class VisualVoicemailCallLogFragment extends
CallLogFragment
{
/packages/apps/Dialer/src/com/android/dialer/list/
ListsFragment.java
38
import com.android.dialer.calllog.
CallLogFragment
;
87
private
CallLogFragment
mHistoryFragment;
89
private
CallLogFragment
mVoicemailFragment;
131
mHistoryFragment = new
CallLogFragment
(CallLogQueryHandler.CALL_TYPE_ALL);
152
} else if (fragment instanceof
CallLogFragment
&& position == TAB_INDEX_HISTORY) {
153
mHistoryFragment = (
CallLogFragment
) fragment;
156
} else if (fragment instanceof
CallLogFragment
&& position == TAB_INDEX_VOICEMAIL) {
157
mVoicemailFragment = (
CallLogFragment
) fragment;
/packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java
66
import com.android.dialer.calllog.
CallLogFragment
;
107
CallLogFragment
.HostInterface,
[
all
...]
Completed in 192 milliseconds