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

12345

/external/clang/include/clang/Driver/
H A DUtil.h17 class Action;
23 typedef SmallVector<Action*, 3> ActionList;
H A DAction.h1 //===--- Action.h - Abstract compilation steps ------------------*- C++ -*-===//
21 /// Action - Represent an abstract compilation step to perform.
30 class Action { class in namespace:clang::driver
67 Action(ActionClass _Kind, types::ID _Type) function in class:clang::driver::Action
69 Action(ActionClass _Kind, Action *Input, types::ID _Type) function in class:clang::driver::Action
71 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) function in class:clang::driver::Action
74 virtual ~Action();
76 const char *getClassName() const { return Action::getClassName(getKind()); }
94 static bool classof(const Action *) { retur
[all...]
/external/chromium/base/
H A Dfile_descriptor_shuffle_unittest.cc20 struct Action { struct
27 Action(Type in_type, int in_fd1, int in_fd2 = -1) function in struct:Action
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>
[all...]
/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/llvm/include/llvm/TableGen/
H A DMain.h21 /// Run the table generator, performing the specified Action on parsed records.
22 int TableGenMain(char *argv0, TableGenAction &Action);
/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/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;
H A Dportable_perf_analyzer.hh27 template <class Action>
43 Action action(size);
58 Action _action(size);
76 BTL_DONT_INLINE double time_calculate(Action & action)
H A Dportable_perf_analyzer_old.hh26 template <class Action>
45 Action action(size);
97 inline double time_init(Action & action)
108 inline double time_calculate(Action & action)
/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/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) {
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(Kin
[all...]
H A DWindowsToolChain.cpp40 Action::ActionClass Key;
42 Key = Action::AnalyzeJobClass;
53 case Action::InputClass:
54 case Action::BindArchClass:
55 case Action::LipoJobClass:
56 case Action::DsymutilJobClass:
57 case Action::VerifyJobClass:
59 case Action::PreprocessJobClass:
60 case Action::PrecompileJobClass:
61 case Action
[all...]
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp31 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
77 void CallingConvEmitter::EmitAction(Record *Action, argument
81 if (Action->isSubClassOf("CCPredicateAction")) {
84 if (Action->isSubClassOf("CCIfType")) {
85 ListInit *VTs = Action->getValueAsListInit("VTs");
92 } else if (Action->isSubClassOf("CCIf")) {
93 O << Action->getValueAsString("Predicate");
95 Action->dump();
100 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
103 if (Action
[all...]
/external/llvm/include/llvm-c/
H A DAnalysis.h45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
/external/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h103 /// Calls 'Action' with the BoundNodes on every match.
107 /// Does not take ownership of 'Action'.
110 MatchCallback *Action);
112 MatchCallback *Action);
114 MatchCallback *Action);
/external/chromium/testing/gmock/test/
H A Dgmock-generated-actions_test.cc54 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<strin
[all...]
H A Dgmock-more-actions_test.cc55 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<strin
[all...]
/external/eigen/bench/btl/generic_bench/
H A Dbench.hh40 template <template<class> class Perf_Analyzer, class Action>
43 if (BtlConfig::skipAction(Action::name()))
46 string filename="bench_"+Action::name()+".dat";
64 Perf_Analyzer<Action> perf_action;
153 template <class Action>
157 bench<Portable_Perf_Analyzer,Action>(size_min,size_max,nb_point);
159 // bench<Mixed_Perf_Analyzer,Action>(size_min,size_max,nb_point);
163 // bench<X86_Perf_Analyzer,Action>(size_min,size_max,nb_point);
164 // bench<STL_Perf_Analyzer,Action>(size_min,size_max,nb_point);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeFilter.cs36 public delegate void Action(); method in namespace:Antlr.Runtime.Tree
98 public virtual void ApplyOnce( object t, Action whichRule )
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeVisitor.h43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeVisitor.h43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeVisitor.h43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeVisitor.h44 - (ANTLRTreeVisitor *)visit:(id<ANTLRBaseTree>)t Action:(ANTLRTreeVisitorAction *)action;

Completed in 5790 milliseconds

12345