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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Driver/
Util.h 20 class Action;
27 typedef SmallVector<Action*, 3> ActionList;
Action.h 1 //===--- Action.h - Abstract compilation steps ------------------*- C++ -*-===//
30 /// Action - Represent an abstract compilation step to perform.
32 /// An action represents an edge in the compilation graph; typically
42 class Action {
72 // The offloading kind determines if this action is binded to a particular
78 // action is implemented.
92 /// The output type of this action.
98 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {}
99 Action(ActionClass Kind, Action *Input, types::ID Type
    [all...]
  /external/swiftshader/third_party/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);
  /system/extras/memory_replay/
Action.h 24 class Action {
26 Action() {}
27 virtual ~Action() {}
38 static Action* CreateAction(uintptr_t key_pointer, const char* type,
  /external/libchrome/base/posix/
file_descriptor_shuffle_unittest.cc 17 struct Action {
24 Action(Type in_type, int in_fd1, int in_fd2 = -1)
30 bool operator==(const Action& other) const {
49 actions_.push_back(Action(Action::DUPLICATE, *result, fd));
54 actions_.push_back(Action(Action::MOVE, src, dest));
58 void Close(int fd) override { actions_.push_back(Action(Action::CLOSE, fd)); }
60 const std::vector<Action>& actions() const { return actions_;
    [all...]
  /external/eigen/bench/btl/generic_bench/static/
bench_static.hh 36 template <template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
39 if (BtlConfig::skipAction(Action<Interface<REAL_TYPE,10> >::name()))
42 string filename = "bench_" + Action<Interface<REAL_TYPE,10> >::name() + ".dat";
51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
57 template <template<class> class Action, template<class,int> class Interface>
60 bench_static<Portable_Perf_Analyzer,Action,Interface>();
61 //bench_static<Mixed_Perf_Analyzer,Action,Interface>();
62 //bench_static<X86_Perf_Analyzer,Action,Interface>();
static_size_generator.hh 28 template <int SIZE,template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
34 Perf_Analyzer<Action<Interface<REAL_TYPE,SIZE> > > perf_action;
37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
43 template <template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
44 struct static_size_generator<1,Perf_Analyzer,Action,Interface>{
48 Perf_Analyzer<Action<Interface<REAL_TYPE,1> > > perf_action;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
IClientAction.java 21 import org.eclipse.jface.action.Action;
24 Action getAction();
  /frameworks/support/compat/jellybean/android/support/v4/app/
NotificationBuilderWithActions.java 23 void addAction(NotificationCompatBase.Action action);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
OnActionClickedListener.java 17 * Interface for receiving notification when an {@link Action} is clicked.
22 * Callback fired when the host fragment receives an action.
24 void onActionClicked(Action action);
  /external/compiler-rt/lib/asan/tests/
asan_exceptions_test.cc 5 class Action {
7 Action() {}
18 const Action a;
  /external/droiddriver/src/io/appium/droiddriver/validators/
ExemptRootValidator.java 20 import io.appium.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
Validator.java 20 import io.appium.droiddriver.actions.Action;
23 * Interface for validating a UiElement, checked when an action is performed.
30 * {@code action}.
32 boolean isApplicable(UiElement element, Action action);
35 * Returns {@code null} if {@code element} is valid on this {@code action},
38 String validate(UiElement element, Action action);
VisibilityValidator.java 20 import io.appium.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
ExemptScrollActionValidator.java 20 import io.appium.droiddriver.actions.Action;
29 public boolean isApplicable(UiElement element, Action action) {
30 return action instanceof ScrollAction;
34 public String validate(UiElement element, Action action) {
  /external/vogar/src/vogar/
Mode.java 36 Task executeActionTask(Action action, boolean useLargeTimeout);
39 * Hook method called after action compilation.
41 Set<Task> installActionTasks(Action action, File jar);
45 * the given action.
47 Set<Task> cleanupTasks(Action action);
50 * Returns a VM for action execution.
56 VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory)
    [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) {
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>();
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
81 void CallingConvEmitter::EmitAction(Record *Action,
85 if (Action->isSubClassOf("CCPredicateAction")) {
88 if (Action->isSubClassOf("CCIfType")) {
89 ListInit *VTs = Action->getValueAsListInit("VTs");
96 } else if (Action->isSubClassOf("CCIf")) {
97 O << Action->getValueAsString("Predicate");
99 Action->dump();
104 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
107 if (Action->isSubClassOf("CCDelegateTo"))
    [all...]
  /external/eigen/bench/btl/generic_bench/timers/
mixed_perf_analyzer.hh 29 template<class Action>
63 Portable_Perf_Analyzer<Action> _ppa;
64 X86_Perf_Analyzer<Action> _x86pa;
  /external/droiddriver/src/io/appium/droiddriver/actions/
BaseAction.java 20 * Base class of {@link Action} that implements {@link #getTimeoutMillis}.
22 public abstract class BaseAction implements Action {
  /external/clang/lib/Driver/
Action.cpp 1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
18 Action::~Action() {}
20 const char *Action::getClassName(ActionClass AC) {
46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
52 : Action(BindArchClass, Input), ArchName(_ArchName) {}
56 CudaDeviceAction::CudaDeviceAction(Action *Input, clang::CudaArch Arch,
58 : Action(CudaDeviceClass, Input), GpuArch(Arch), AtTopLevel(AtTopLevel) {
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/
UiDevice.java 21 import io.appium.droiddriver.actions.Action;
42 * Executes a global action without the context of a certain UiElement.
44 * @param action The action to execute
45 * @return true if the action is successful
47 boolean perform(Action action);
  /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/swiftshader/third_party/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/swiftshader/third_party/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...]

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>