/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 { 59 /// The output type of this action. 67 Action(ActionClass _Kind, types::ID _Type) 69 Action(ActionClass _Kind, Action *Input, types::ID _Type) 71 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) 74 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...] |
/external/compiler-rt/lib/asan/tests/ |
asan_exceptions_test.cc | 5 class Action { 7 Action() {} 18 const Action a;
|
/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) { 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>();
|
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/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) { 45 : Action(InputClass, _Type), Input(_Input) { 50 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) 51 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) { 56 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) 57 : Action(Kind, Input, Type) [all...] |
/external/llvm/include/llvm-c/ |
Analysis.h | 42 /* Verifies that a module is valid, taking the specified action if not. 45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, 48 /* Verifies that a single function is valid, taking the specified action. Useful 50 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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
FunctionDelegates.cs | 35 public delegate void Action();
|
/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.
|
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/actions/ |
ExpandAllAction.java | 21 import org.eclipse.jface.action.Action; 24 public class ExpandAllAction extends Action {
|
ToggleNafAction.java | 21 import org.eclipse.jface.action.Action; 22 import org.eclipse.jface.action.IAction; 25 public class ToggleNafAction extends Action {
|
/sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/ |
QuitAction.java | 21 import org.eclipse.jface.action.Action; 24 public class QuitAction extends Action {
|
/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/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
FitToCanvasAction.java | 22 import org.eclipse.jface.action.Action; 24 public class FitToCanvasAction extends Action {
|
/system/core/fastboot/ |
engine.c | 81 typedef struct Action Action; 85 struct Action 88 Action *next; 96 int (*func)(Action *a, int status, char *resp); 101 static Action *action_list = 0; 102 static Action *action_last = 0; 133 static int cb_default(Action *a, int status, char *resp) 145 static Action *queue_action(unsigned op, const char *fmt, ...) 147 Action *a [all...] |
/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...] |
/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; 70 // setup the copy action 74 mCopyAction = new Action(Messages.TableView_Copy) { 83 // setup the select all action 85 mSelectAllAction = new Action(Messages.TableView_Select_All) {
|