Searched defs:Action (Results 1 - 25 of 39) sorted by relevance

12

/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/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/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/llvm/lib/Analysis/
H A DAnalysis.cpp80 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, argument
85 static_cast<VerifierFailureAction>(Action),
94 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument
96 static_cast<VerifierFailureAction>(Action));
/external/blktrace/doc/
H A Dblktrace.tex593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline
627 \subsubsection{\label{sec:act-table}Action Table}
748 \subsubsection{Trace Action Specifiers}
/external/clang/lib/Driver/
H A DAction.cpp1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
15 Action::~Action() {
22 const char *Action::getClassName(ActionClass AC) {
44 : Action(InputClass, _Type), Input(_Input) {
49 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
50 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
55 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
56 : Action(Kin
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp9 struct Action { struct
14 using State = Action[2];
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.h78 unsigned Action; member in struct:llvm::DwarfException::CallSiteEntry
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
78 void CallingConvEmitter::EmitAction(Record *Action, argument
82 if (Action->isSubClassOf("CCPredicateAction")) {
85 if (Action->isSubClassOf("CCIfType")) {
86 ListInit *VTs = Action->getValueAsListInit("VTs");
93 } else if (Action->isSubClassOf("CCIf")) {
94 O << Action->getValueAsString("Predicate");
96 Action->dump();
101 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
104 if (Action
[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/chromium/testing/gmock/include/gmock/
H A Dgmock-actions.h53 // 2. a factory function that creates an Action object from a
58 // management as Action objects can now be copied like plain values.
268 // An Action<F> is a copyable and IMMUTABLE (except by assignment)
270 // of type F is called. The implementation of Action<T> is just a
272 // Don't inherit from Action!
275 // concrete action (including its current state), and an Action<F>
278 class Action { class in namespace:testing
283 // Constructs a null Action. Needed for storing Action objects in
285 Action() function in class:testing::Action
289 explicit Action(ActionInterface<F>* impl) : impl_(impl) {} function in class:testing::Action
292 Action(const Action& action) : impl_(action.impl_) {} function in class:testing::Action
934 Action<To>::Action(const Action<From>& from) function in class:testing::Action
[all...]
H A Dgmock-generated-actions.h594 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
614 Action<InnerFunctionType> action_;
1381 GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params)
1414 template <typename F> operator ::testing::Action<F>() const {\
1415 return ::testing::Action<F>(\
1448 class name##Action {\
1450 name##Action() {}\
1474 template <typename F> operator ::testing::Action<F>() const {\
1475 return ::testing::Action<F>(new gmock_Impl<F>());\
1478 GTEST_DISALLOW_ASSIGN_(name##Action);\
[all...]
/external/chromium/chrome/browser/net/
H A Dpassive_log_collector.h141 enum Action { enum in class:PassiveLogCollector::SourceTracker
158 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
204 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
218 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
233 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
249 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
264 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
279 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
294 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
309 virtual Action DoAddEntr
[all...]
/external/clang/include/clang/Driver/
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()); }
95 class InputAction : public Action {
[all...]
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp104 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS,
123 void EmitAssembly(BackendAction Action, raw_ostream *OS);
479 bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action, argument
499 if (Action == Backend_EmitObj)
501 else if (Action == Backend_EmitMCNull)
504 assert(Action == Backend_EmitAssembly && "Invalid action!");
522 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) { argument
526 bool UsesCodeGen = (Action != Backend_EmitNothing &&
527 Action != Backend_EmitBC &&
528 Action !
579 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts, const clang::TargetOptions &TOpts, const LangOptions &LOpts, Module *M, BackendAction Action, raw_ostream *OS) argument
[all...]
H A DCodeGenAction.cpp1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===//
39 BackendAction Action; member in class:clang::BackendConsumer
63 Action(action),
162 TheModule.get(), Action, AsmOutStream);
307 BackendAction Action) {
308 switch (Action) {
305 GetOutputStream(CompilerInstance &CI, StringRef InFile, BackendAction Action) argument
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommand.java262 * Possible actions are: {@link Action#prev prev}, {@link Action#next next} and
263 * {@link Action#complete complete}. This method will be only invoked for commands that
269 protected List<Action> getActions() {
279 protected void addActionAvailable(Action action) {
293 protected Action getExecuteAction() {
306 protected void setExecuteAction(Action action) {
339 * The {@link Action#cancel cancel} action is always allowed. To define the
346 protected boolean isValidAction(Action action) {
347 return getActions().contains(action) || Action
371 public enum Action { enum in class:AdHocCommand
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dsyncapi.h636 enum Action { enum in struct:sync_api::SyncManager::ChangeRecord
648 Action action;
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp192 unsigned Action;
279 ActionEntry Action = {ValueForTypeID, NextAction, PrevAction};
280 Actions.push_back(Action);
355 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
379 SizeSites += MCAsmInfo::getULEB128Size(CallSites[i].Action);
438 JCE->emitULEB128Bytes(S.Action);
439 // Asm->EOL("Action");
444 ActionEntry &Action = Actions[I]; local
446 JCE->emitSLEB128Bytes(Action
[all...]
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp712 MatchCallback *Action) {
714 new internal::Matcher<Decl>(NodeMatch), Action));
718 MatchCallback *Action) {
720 new internal::Matcher<QualType>(NodeMatch), Action));
724 MatchCallback *Action) {
726 new internal::Matcher<Stmt>(NodeMatch), Action));
730 MatchCallback *Action) {
732 new NestedNameSpecifierMatcher(NodeMatch), Action));
736 MatchCallback *Action) {
738 new NestedNameSpecifierLocMatcher(NodeMatch), Action));
711 addMatcher(const DeclarationMatcher &NodeMatch, MatchCallback *Action) argument
717 addMatcher(const TypeMatcher &NodeMatch, MatchCallback *Action) argument
723 addMatcher(const StatementMatcher &NodeMatch, MatchCallback *Action) argument
729 addMatcher(const NestedNameSpecifierMatcher &NodeMatch, MatchCallback *Action) argument
735 addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch, MatchCallback *Action) argument
741 addMatcher(const TypeLocMatcher &NodeMatch, MatchCallback *Action) argument
[all...]
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp1443 frontend::ActionKind Action) {
1446 switch (Action) {
1441 ParsePreprocessorOutputArgs(PreprocessorOutputOptions &Opts, ArgList &Args, frontend::ActionKind Action) argument
/external/eigen/Eigen/src/Core/util/
H A DConstants.h418 enum Action {GetAction, SetAction}; enum in namespace:Eigen
/external/guava/guava-tests/test/com/google/common/testing/
H A DNullPointerTesterTest.java183 /** Action to take on a null param. */
184 public enum Action { enum in class:NullPointerTesterTest.TwoArg
201 Action actionWhenFirstParamIsNull;
202 Action actionWhenSecondParamIsNull;
205 Action actionWhenFirstParamIsNull,
206 Action actionWhenSecondParamIsNull) {
273 for (TwoArg.Action first : TwoArg.Action.values()) {
274 for (TwoArg.Action second : TwoArg.Action
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLowering.h276 void setTypeAction(MVT VT, LegalizeTypeAction Action) { argument
278 ValueTypeActions[I] = Action;
521 LegalizeAction Action = (LegalizeAction)
523 assert(Action != Promote && "Can't promote condition code!");
524 return Action;
980 LegalizeAction Action) {
982 OpActions[(unsigned)VT.SimpleTy][Op] = (uint8_t)Action;
988 LegalizeAction Action) {
991 LoadExtActions[VT.SimpleTy][ExtType] = (uint8_t)Action;
997 LegalizeAction Action) {
979 setOperationAction(unsigned Op, MVT VT, LegalizeAction Action) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.h382 enum Action { Remove, Pause }; enum in class:WebCore::GraphicsLayerCA
384 AnimationProcessingAction(Action action = Remove, double timeOffset = 0)
389 Action action;

Completed in 821 milliseconds

12