Searched refs:Action (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DActionMultiMap.java23 * Provide a simple way of collecting one or more {@link Action} objects
26 public class ActionMultiMap extends HashMap<String, ArrayList<Action>> {
27 public void put(String mimeType, Action info) {
32 * Puts the (mimeType,Action) tuple into the multimap at the front if
35 public void put(String mimeType, Action info, boolean front) {
37 ArrayList<Action> collectList = get(mimeType);
41 collectList = new ArrayList<Action>();
H A DAction.java29 public interface Action extends Collapser.Collapsible<Action> { interface in inherits:Collapser.Collapsible
H A DQuickContactListFragment.java43 private List<Action> mActions;
69 public void setActions(List<Action> actions) {
100 final Action action = mActions.get(position);
174 final Action action = (Action) v.getTag();
183 final Action action = (Action) v.getTag();
197 void onItemClicked(Action action, boolean alternate);
H A DResolveCache.java120 * Get the {@link Entry} best associated with the given {@link Action},
123 protected Entry getEntry(Action action) {
199 * given {@link Action}.
201 public boolean hasResolve(Action action) {
206 * Find the best description for the given {@link Action}, usually used
209 public CharSequence getDescription(Action action, String name) {
224 * Return the best icon for the given {@link Action}, which is usually
228 public Drawable getIcon(Action action) {
H A DDataAction.java52 public class DataAction implements Action {
302 public void collapseWith(Action other) {
307 public boolean shouldCollapseWith(Action t) {
H A DQuickContactActivity.java133 private HashMap<String, Action> mDefaultsMap = new HashMap<String, Action>();
136 * Set of {@link Action} that are associated with the aggregate currently
138 * MIME-type to a list of {@link Action}.
450 final Action action = new DataAction(context, dataItem, dataKind);
476 // Collapse Action Lists (remove e.g. duplicate e-mail addresses from different sources)
477 for (List<Action> actionChildren : mActions.values()) {
532 * Consider adding the given {@link Action}, which will only happen if
534 * {@link Action#getIntent()}.
540 private boolean considerAdd(Action actio
[all...]
/packages/apps/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailStatusHelperImpl.java60 public static enum Action { enum in class:VoicemailStatusHelperImpl
66 private Action(int messageId) { method in class:VoicemailStatusHelperImpl.Action
84 NO_CONNECTION(0, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available,
87 NO_DATA(1, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available,
90 MESSAGE_WAITING(2, Action.CALL_VOICEMAIL, R.string.voicemail_status_messages_waiting,
93 NO_NOTIFICATIONS(3, Action.CALL_VOICEMAIL,
96 INVITE_FOR_CONFIGURATION(4, Action.CONFIGURE_VOICEMAIL,
102 NO_DETAILED_NOTIFICATION(5, Action.NONE, -1),
104 NOT_CONFIGURED(6, Action.NONE, -1),
106 OK(7, Action
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
H A DUserPresetsAdapter.java29 import com.android.gallery3d.filtershow.category.Action;
36 public class UserPresetsAdapter extends ArrayAdapter<Action>
58 public void add(Action action) {
63 private void deletePreset(Action action) {
72 private void changePreset(Action action) {
108 Action action = getItem(position);
144 Action action = (Action) v.getTag();
164 Action action = (Action) editTex
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
H A DCategoryAdapter.java31 public class CategoryAdapter extends ArrayAdapter<Action> {
55 Action action = getItem(i);
70 public void add(Action action) {
97 Action action = getItem(position);
101 if (action.getType() == Action.SPACER) {
108 if (action.getType() == Action.ADD_ACTION
156 Action action = getItem(i);
168 Action action = getItem(i);
179 public void remove(Action action) {
H A DCategoryView.java40 private Action mAction;
76 if (mAction.getType() == Action.CROP_VIEW) {
79 if (mAction.getType() == Action.ADD_ACTION) {
102 if (mAction != null && mAction.getType() == Action.ADD_ACTION) {
110 if (mAction.getType() == Action.SPACER) {
130 public void setAction(Action action, CategoryAdapter adapter) {
136 if (mAction.getType() == Action.ADD_ACTION) {
150 if (mAction.getType() == Action.ADD_ACTION) {
152 } else if (mAction.getType() != Action.SPACER) {
H A DAction.java41 public class Action implements RenderingRequestCaller { class in inherits:RenderingRequestCaller
43 private static final String LOGTAG = "Action";
61 public Action(FilterShowActivity context, FilterRepresentation representation, int type, method in class:Action
69 public Action(FilterShowActivity context, FilterRepresentation representation, int type) { method in class:Action
74 public Action(FilterShowActivity context, int type) { method in class:Action
80 public Action(FilterShowActivity context, FilterRepresentation representation) { method in class:Action
121 if (getType() == Action.ADD_ACTION) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DActionBatch.java81 * Action is basically like a Runnable that takes an argument.
83 public interface Action { interface in class:ActionBatch
94 public static final class StartDownloadAction implements Action {
191 public static final class InstallAfterDownloadAction implements Action {
228 public static final class EnableAction implements Action {
264 public static final class DisableAction implements Action {
311 public static final class MakeAvailableAction implements Action {
359 public static final class MarkPreInstalledAction implements Action {
402 public static final class UpdateDataAction implements Action {
451 public static final class ForgetAction implements Action {
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
H A DFilterShowActivity.java73 import com.android.gallery3d.filtershow.category.Action;
173 private ArrayList<Action> mActions = new ArrayList<Action>();
397 public void registerAction(Action action) {
406 Action action = mActions.get(i);
416 new Action(this, originalRep, Action.FULL_VIEW));
421 new Action(this, currentRep, Action.FULL_VIEW));
423 mCategoryVersionsAdapter.add(new Action(thi
[all...]
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DActionBarAdapter.java39 import com.android.contacts.activities.ActionBarAdapter.Listener.Action;
48 public abstract class Action { class in interface:ActionBarAdapter.Listener
429 mListener.onAction(Action.START_SEARCH_MODE);
462 mListener.onAction(Action.STOP_SEARCH_MODE);
483 mListener.onAction(Action.CHANGE_SEARCH_QUERY);
H A DPeopleActivity.java634 case ActionBarAdapter.Listener.Action.START_SEARCH_MODE:
640 case ActionBarAdapter.Listener.Action.STOP_SEARCH_MODE:
645 case ActionBarAdapter.Listener.Action.CHANGE_SEARCH_QUERY:
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java1482 DrmStore.Action.RINGTONE)) {
1513 DrmStore.Action.TRANSFER)) {
/packages/apps/Exchange/assets/
H A DFolderSyncParserTest3.txt1870 [14:50:00] EAS Parser| FolderDisplayName: Conversation Action Settings
3284 [14:50:02] EAS Parser| FolderDisplayName: Action Plans

Completed in 2132 milliseconds