HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium/base/
file_descriptor_shuffle_unittest.cc 20 struct Action {
27 Action(Type in_type, int in_fd1, int in_fd2 = -1)
33 bool operator==(const Action& other) const {
52 actions_.push_back(Action(Action::DUPLICATE, *result, fd));
57 actions_.push_back(Action(Action::MOVE, src, dest));
62 actions_.push_back(Action(Action::CLOSE, fd));
65 const std::vector<Action>& actions() const { return actions_;
    [all...]
linux_versioninfo.scons 258 _action = Action([['cd',
272 _action = Action([['cd',
  /sdk/traceview/src/com/android/traceview/
Selection.java 21 private Action mAction;
25 public Selection(Action action, String name, Object value) {
26 mAction = action;
32 return new Selection(Action.Highlight, name, value);
36 return new Selection(Action.Include, name, value);
40 return new Selection(Action.Exclude, name, value);
59 public void setAction(Action action) {
60 mAction = action;
    [all...]
ProfileView.java 258 Selection.Action action = selection.getAction(); local
259 if (action != Selection.Action.Highlight)
  /system/core/fastboot/
engine.c 64 typedef struct Action Action;
66 struct Action
69 Action *next;
76 int (*func)(Action *a, int status, char *resp);
81 static Action *action_list = 0;
82 static Action *action_last = 0;
84 static int cb_default(Action *a, int status, char *resp)
96 static Action *queue_action(unsigned op, const char *fmt, ...)
98 Action *a
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 23 import org.eclipse.jface.action.Action;
39 private Action mCopyAction;
40 private Action mSelectAllAction;
65 // setup the copy action
69 mCopyAction = new Action("Copy") {
78 // setup the select all action
80 mSelectAllAction = new Action("Select All") {
DeviceView.java 42 import org.eclipse.jface.action.Action;
43 import org.eclipse.jface.action.IAction;
44 import org.eclipse.jface.action.IMenuManager;
45 import org.eclipse.jface.action.IToolBarManager;
46 import org.eclipse.jface.action.Separator;
75 private Action mResetAdbAction;
76 private Action mCaptureAction;
77 private Action mUpdateThreadAction;
78 private Action mUpdateHeapAction
    [all...]
LogCatView.java 40 import org.eclipse.jface.action.Action;
41 import org.eclipse.jface.action.IAction;
42 import org.eclipse.jface.action.IMenuManager;
43 import org.eclipse.jface.action.IToolBarManager;
44 import org.eclipse.jface.action.Separator;
106 private Action mClearAction;
245 Action a = mLogLevelActions[i];
262 mClearAction = new Action("Clear Log") {
292 // setup the copy action
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
CommonAction.java 20 import org.eclipse.jface.action.Action;
24 * Basic action extending the jFace Action class in order to implement
27 public class CommonAction extends Action implements ICommonAction {
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
whalTrace.h 91 char Action[TRACER_MAX_ACT_LEN];
131 extern int whal_traceAddTx(WhalTrace_T *pTrc, HwTxDesc_T *pHwTxDesc, char *Action);
whalTrace.c 174 int whal_traceAddTx(WhalTrace_T *pTrc, HwTxDesc_T *pHwTxDesc, char *Action)
192 local_string_copy(pEvt->Action, Action, TRACER_MAX_ACT_LEN-1);
  /frameworks/base/core/java/android/widget/
RemoteViews.java 74 private ArrayList<Action> mActions;
87 * Exception to send when something goes wrong executing an action
105 private abstract static class Action implements Parcelable {
118 private class SetOnClickPendingIntent extends Action {
189 private class SetDrawableParameters extends Action {
272 private class ReflectionAction extends Action {
491 private class ViewGroupAction extends Action {
549 mActions = new ArrayList<Action>(count);
575 that.mActions = (ArrayList<Action>)mActions.clone();
589 * Add an action to be executed on the remote side when apply is called
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 52 * Helper to show the global actions dialog. Each item is an {@link Action} that
65 private ArrayList<Action> mItems;
279 final Action action = mItems.get(i); local
281 if (mKeyguardShowing && !action.showDuringKeyguard()) {
284 if (!mDeviceProvisioned && !action.showBeforeProvisioning()) {
302 public Action getItem(int position) {
306 final Action action = mItems.get(i); local
307 if (mKeyguardShowing && !action.showDuringKeyguard())
331 Action action = getItem(position); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiContentOutlinePage.java 36 import org.eclipse.jface.action.Action;
37 import org.eclipse.jface.action.IMenuListener;
38 import org.eclipse.jface.action.IMenuManager;
39 import org.eclipse.jface.action.IToolBarManager;
40 import org.eclipse.jface.action.MenuManager;
41 import org.eclipse.jface.action.Separator;
78 private Action mAddAction;
79 private Action mDeleteAction;
80 private Action mUpAction
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java 199 * Set of {@link Action} that are associated with the aggregate currently
708 * Abstract definition of an action that could be performed, along with
711 private interface Action extends Collapser.Collapsible<Action> {
719 * Build an {@link Intent} that will perform this action.
724 * Checks if the contact data for this action is primary.
738 private static class DataAction implements Action {
752 * Create an action from common {@link Data} elements.
848 // Otherwise fall back to default VIEW action
1190 final Action action = new ProfileAction(mContext, mLookupUri); local
1227 final Action action = new DataAction(mContext, mimeType, kind, dataId, cursor); local
1233 final Action action = new DataAction(mContext, Constants.MIME_SMS_ADDRESS, local
1244 final Action action = new DataAction(mContext, Im.CONTENT_ITEM_TYPE, imKind, local
1431 final Action action = (Action)tag; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 24 import org.eclipse.jface.action.Action;
41 public class PasteAction extends Action {
CopyCutAction.java 26 import org.eclipse.jface.action.Action;
49 public class CopyCutAction extends Action {
57 * Creates a new Copy or Cut action.
68 * Creates a new Copy or Cut action.
99 * Performs the cut or copy action.
UiTreeBlock.java 32 import org.eclipse.jface.action.Action;
33 import org.eclipse.jface.action.IMenuListener;
34 import org.eclipse.jface.action.IMenuManager;
35 import org.eclipse.jface.action.MenuManager;
36 import org.eclipse.jface.action.Separator;
37 import org.eclipse.jface.action.ToolBarManager;
549 manager.add(new Action("Add...", factory.getImageDescriptor("add")) { //$NON-NLS-1$
560 manager.add(new Action("Remove", factory.getImageDescriptor("delete")) { //$NON-NLS-1$
570 manager.add(new Action("Up", factory.getImageDescriptor("up")) { //$NON-NLS-1
862 DescriptorFilterAction action = ((DescriptorFilter) filter).getAction(); local
    [all...]
  /sdk/emulator/qtools/
callstack.h 77 enum Action { NONE, PUSH, POP, NATIVE_PUSH };
79 Action getAction(BBEvent *event, symbol_type *function);
86 void doPop(BBEvent *event, symbol_type *function, Action methodAction);
172 Action action = getAction(event, function); local
177 action = NONE;
184 if (action == PUSH) {
186 } else if (action == POP) {
192 if (action == POP && mPrevFunction->vm_sym == NULL) {
203 action = methodAction
249 Action action; local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 71 ATTRIBUTE Termination-Action 29 integer
182 VALUE Termination-Action Default 0
183 VALUE Termination-Action RADIUS-Request 1
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.h 369 enum Action { Remove, Pause };
371 AnimationProcessingAction(Action action = Remove, double timeOffset = 0)
372 : action(action)
376 Action action; member in struct:WebCore::GraphicsLayerCA::AnimationProcessingAction
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hw_ctrl/
whalHwMboxCmd.h 87 extern int whal_hwMboxCmd_SetKey(HwMboxCmd_T *pHwMboxCmd, int Action, char *MacAddr, int KeySize,
  /external/chromium/net/
net_resources.scons 256 grit_action = Action([['cd',
267 grit_action = Action([['cd',
277 env['BUILDERS']['grit'] = Builder(action=grit_action,
  /external/skia/include/views/
SkWidget.h 383 enum Action {
390 action occurs. If event is null, then no event will be posted for
391 the specified action.
393 void setActionEvent(Action, SkEvent* event);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 66 import org.eclipse.jface.action.Action;
341 actionBars.setGlobalActionHandler(ActionFactory.COPY.getId(), new Action("Copy") {
349 actionBars.setGlobalActionHandler(ActionFactory.CUT.getId(), new Action("Cut") {
357 actionBars.setGlobalActionHandler(ActionFactory.PASTE.getId(), new Action("Paste") {
365 new Action("Select All") {
761 * The only action this editor must do is mark the undo command stack as
    [all...]

Completed in 423 milliseconds

1 2