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

1 2 3 4 5 6

  /external/clang/include/clang/Driver/
Util.h 17 class Action;
23 typedef SmallVector<Action*, 3> ActionList;
Action.h 1 //===--- Action.h - Abstract compilation steps ------------------*- C++ -*-===//
21 /// Action - Represent an abstract compilation step to perform.
23 /// An action represents an edge in the compilation graph; typically
30 class Action {
58 /// The output type of this action.
66 Action(ActionClass _Kind, types::ID _Type)
68 Action(ActionClass _Kind, Action *Input, types::ID _Type)
70 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type)
73 virtual ~Action();
    [all...]
  /external/llvm/include/llvm/TableGen/
Main.h 21 /// Run the table generator, performing the specified Action on parsed records.
22 int TableGenMain(char *argv0, TableGenAction &Action);
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ActionMultiMap.java 23 * 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) {
29 ArrayList<Action> collectList = get(mimeType);
31 collectList = new ArrayList<Action>();
Action.java 26 * Abstract definition of an action that could be performed, along with
29 public interface Action extends Collapser.Collapsible<Action> {
35 /** Returns an icon that can be clicked for the alternate action. */
38 /** Returns the content description of the icon for the alternate action. */
41 /** Build an {@link Intent} that will perform this action. */
44 /** Build an {@link Intent} that will perform the alternate action. */
47 /** Checks if the contact data for this action is primary. */
  /external/llvm/include/llvm-c/
Analysis.h 36 /* Verifies that a module is valid, taking the specified action if not.
39 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
42 /* Verifies that a single function is valid, taking the specified action. Useful
44 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 62 void CallingConvEmitter::EmitAction(Record *Action,
66 if (Action->isSubClassOf("CCPredicateAction")) {
69 if (Action->isSubClassOf("CCIfType")) {
70 ListInit *VTs = Action->getValueAsListInit("VTs");
77 } else if (Action->isSubClassOf("CCIf")) {
78 O << Action->getValueAsString("Predicate");
80 Action->dump();
85 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
88 if (Action->isSubClassOf("CCDelegateTo")) {
89 Record *CC = Action->getValueAsDef("CC")
    [all...]
CallingConvEmitter.h 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
  /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...]
  /external/clang/lib/Driver/
Action.cpp 1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
16 Action::~Action() {
23 const char *Action::getClassName(ActionClass AC) {
42 : Action(InputClass, _Type), Input(_Input) {
45 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
46 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
49 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
50 : Action(Kind, Input, Type)
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
ActionListModel.java 20 import com.android.monkeyrunner.recorder.actions.Action;
33 private List<Action> actionList = Lists.newArrayList();
36 * Add the specified action to the end of the list
37 * @param a the action to add.
39 public void add(Action a) {
64 for (Action a : actionList) {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
Action.java 23 public interface Action {
25 * Serialize this action into a string. This method is called to put the list of actions into
33 * Get the printable name for this action. This method is used to show the Action in the UI.
40 * Execute the given action.
42 * @param device the device to execute the action on.
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/
QuitAction.java 21 import org.eclipse.jface.action.Action;
24 public class QuitAction extends Action {
  /system/core/fastboot/
engine.c 64 typedef struct Action Action;
66 struct Action
69 Action *next;
77 int (*func)(Action *a, int status, char *resp);
82 static Action *action_list = 0;
83 static Action *action_last = 0;
85 static int cb_default(Action *a, int status, char *resp)
97 static Action *queue_action(unsigned op, const char *fmt, ...)
99 Action *a
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/voicemail/
VoicemailStatusHelperImpl.java 60 public static enum Action {
66 private Action(int messageId) {
77 * string and the corrective action. The states are also assigned a relative priority which is
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,
100 * This is normal mode of operation for certain sources. No action needed.
102 NO_DETAILED_NOTIFICATION(5, Action.NONE, -1)
214 final Action action = overallState.getAction(); local
    [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 {
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
TreeViewEnabledAction.java 22 import org.eclipse.jface.action.Action;
25 public class TreeViewEnabledAction extends Action implements ITreeChangeListener {
  /external/chromium/testing/gmock/test/
gmock-generated-actions_test.cc 54 using testing::Action;
171 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT
177 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT
183 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT
190 Action<int(SumOf5Functor)> a = // NOLINT
197 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT
204 Action<int(SumOf6Functor)> a = // NOLINT
211 Action<string(string(*)(const char*, const char*, const char*,
220 Action<string(string(*)(const char*, const char*, const char*,
229 Action<string(string(*)(const char*, const char*, const char*
458 Action<int(int*, int*, char*, char*)> action = \/\/ NOLINT local
475 Action<int(int*, int*, char*, char*, char*)> action = \/\/ NOLINT local
494 Action<int(int*, int*, char*, char*, char*, char*)> action = \/\/ NOLINT local
516 char*)> action = local
540 char*, char*)> action = local
567 char*, char*, char*)> action = local
    [all...]
gmock-more-actions_test.cc 55 using testing::Action;
234 Action<int()> a = Invoke(Nullary); // NOLINT
240 Action<bool(int)> a = Invoke(Unary); // NOLINT
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
254 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT
260 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT
266 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT
272 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT
282 Action<string(const char*, const char*, const char*, const char*,
293 Action<string(const char*, const char*, const char*, const char*
    [all...]
  /external/clang/include/clang/CodeGen/
BackendUtil.h 37 BackendAction Action, raw_ostream *OS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 24 import org.eclipse.jface.action.Action;
41 private Action mCopyAction;
42 private Action mSelectAllAction;
68 // setup the copy action
72 mCopyAction = new Action(Messages.TableView_Copy) {
81 // setup the select all action
83 mSelectAllAction = new Action(Messages.TableView_Select_All) {
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/util/
ActionButton.java 21 import org.eclipse.jface.action.Action;
33 private Action mAction;
35 public ActionButton(Composite parent, ImageAction action) {
36 this.mAction = (Action) action;
37 if (this.mAction.getStyle() == Action.AS_CHECK_BOX) {
42 mButton.setText(action.getText());
43 mButton.setImage(action.getImage());
46 mButton.setToolTipText(action.getToolTipText())
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 51 // To implement an action Foo, define:
53 // 2. a factory function that creates an Action object from a
58 // management as Action objects can now be copied like plain values.
77 "Default action undefined for the function return type.");
122 // There's no need for a default action for signed wchar_t, as that
125 // There's also no need for a default action for unsigned wchar_t, as
248 // Implement this interface to define an action for function type F.
258 // Performs the action. This method is not const, as in general an
259 // action can have side effects and be stateful. For example, a
260 // get-the-next-element-from-the-collection action will need t
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
LayoutView.java 25 import org.eclipse.jface.action.Action;
26 import org.eclipse.jface.action.IMenuManager;
27 import org.eclipse.jface.action.IToolBarManager;
47 private Action mShowExtrasAction = new Action("Show &Extras", Action.AS_CHECK_BOX) {
54 private Action mLoadAllViewsAction = new Action("Load All &Views") {
63 private Action mOnBlackWhiteAction = new Action("Change Background &Color")
    [all...]

Completed in 719 milliseconds

1 2 3 4 5 6