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

1234567

/external/eigen/bench/btl/generic_bench/static/
H A Dbench_static.hh36 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>();
H A Dstatic_size_generator.hh28 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;
H A Dintel_bench_fixed_size.hh26 template <class Action>
30 Action action(size);
/external/clang/include/clang/Driver/
H A DUtil.h20 class Action;
27 typedef SmallVector<Action*, 3> ActionList;
H A DAction.h1 //===--- Action.h - Abstract compilation steps ------------------*- C++ -*-===//
26 /// Action - Represent an abstract compilation step to perform.
35 class Action { class in namespace:clang::driver
74 Action(ActionClass _Kind, types::ID _Type) function in class:clang::driver::Action
76 Action(ActionClass _Kind, std::unique_ptr<Action> Input, types::ID _Type) function in class:clang::driver::Action
79 Action(ActionClass _Kind, std::unique_ptr<Action> Input) function in class:clang::driver::Action
82 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) function in class:clang::driver::Action
85 virtual ~Action();
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_exceptions_test.cc5 class Action { class
7 Action() {} function in class:Action
18 const Action a;
/external/droiddriver/src/io/appium/droiddriver/validators/
H A DExemptRootValidator.java20 import io.appium.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
H A DValidator.java20 import io.appium.droiddriver.actions.Action;
32 boolean isApplicable(UiElement element, Action action);
38 String validate(UiElement element, Action action);
H A DVisibilityValidator.java20 import io.appium.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
H A DExemptScrollActionValidator.java20 import io.appium.droiddriver.actions.Action;
29 public boolean isApplicable(UiElement element, Action action) {
34 public String validate(UiElement element, Action action) {
H A DFirstApplicableValidator.java20 import io.appium.droiddriver.actions.Action;
34 public boolean isApplicable(UiElement element, Action action) {
39 public String validate(UiElement element, Action action) {
/external/vogar/src/vogar/
H A DMode.java36 Task executeActionTask(Action action, boolean useLargeTimeout);
41 Set<Task> installActionTasks(Action action, File jar);
47 Set<Task> cleanupTasks(Action action);
56 VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory);
62 Classpath getRuntimeClasspath(Action action);
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
81 void CallingConvEmitter::EmitAction(Record *Action, argument
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
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dmixed_perf_analyzer.hh29 template<class Action>
63 Portable_Perf_Analyzer<Action> _ppa;
64 X86_Perf_Analyzer<Action> _x86pa;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFunctionDelegates.cs35 public delegate void Action(); method in namespace:Antlr.Runtime.Misc
/external/droiddriver/src/io/appium/droiddriver/actions/
H A DBaseAction.java20 * Base class of {@link Action} that implements {@link #getTimeoutMillis}.
22 public abstract class BaseAction implements Action {
H A DAction.java26 public interface Action { interface
/external/droiddriver/src/io/appium/droiddriver/
H A DUiDevice.java21 import io.appium.droiddriver.actions.Action;
47 boolean perform(Action action);
/external/llvm/include/llvm-c/
H A DAnalysis.h45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DMultiSynch.java29 public interface Action { interface in class:MultiSynch
43 * @param action Action to be invoked once full synchronization has been obtained.
45 public static void run(Object[] params, Set synchSet, Action action) {
52 * @param action Action to be invoked once full synchronization has been obtained.
54 public static void run(Object[] params, List synchList, Action action) {
61 * @param action Action to be invoked once full synchronization has been obtained.
63 public static void run(Object[] params, Object[] synchArr, Action action) {
74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) {
/external/vogar/src/vogar/android/
H A DRunActivityTask.java19 import vogar.Action;
25 public RunActivityTask(Run run, Action action, boolean useLargeTimeout) {
29 @Override public Command createActionCommand(Action action, String skipPast, int monitorPort) {
H A DActivityMode.java23 import vogar.Action;
46 @Override public Set<Task> installActionTasks(Action action, File jar) {
50 @Override public Task executeActionTask(Action action, boolean useLargeTimeout) {
54 @Override public Set<Task> cleanupTasks(Action action) {
61 @Override public VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory) {
65 @Override public Classpath getRuntimeClasspath(Action action) {
H A DDexTask.java20 import vogar.Action;
30 private final Action action;
34 File jar, Action action, File localDex) {
/external/vogar/src/vogar/tasks/
H A DPrepareUserDirTask.java20 import vogar.Action;
26 private final Action action;
28 public PrepareUserDirTask(Target target, Action action) {
/external/clang/lib/Driver/
H A DAction.cpp1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
16 Action::~Action() {
23 const char *Action::getClassName(ActionClass AC) {
47 : Action(InputClass, _Type), Input(_Input) {
52 BindArchAction::BindArchAction(std::unique_ptr<Action> Input,
54 : Action(BindArchClass, std::move(Input)), ArchName(_ArchName) {}
58 JobAction::JobAction(ActionClass Kind, std::unique_ptr<Action> Input,
60 : Action(Kin
[all...]

Completed in 565 milliseconds

1234567