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

1234567891011>>

/external/chromium_org/base/posix/
H A Dfile_descriptor_shuffle_unittest.cc17 struct Action { struct in namespace:base
24 Action(Type in_type, int in_fd1, int in_fd2 = -1) function in struct:base::Action
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));
59 actions_.push_back(Action(Action::CLOSE, fd));
62 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;
/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/com/google/android/droiddriver/validators/
H A DValidator.java20 import com.google.android.droiddriver.actions.Action;
32 boolean isApplicable(UiElement element, Action action);
38 String validate(UiElement element, Action action);
H A DExemptRootValidator.java20 import com.google.android.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
H A DExemptScrollActionValidator.java20 import com.google.android.droiddriver.actions.Action;
29 public boolean isApplicable(UiElement element, Action action) {
34 public String validate(UiElement element, Action action) {
H A DVisibilityValidator.java20 import com.google.android.droiddriver.actions.Action;
27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_log_policy_unittest.cc19 scoped_refptr<Action> action =
20 new Action("punky",
22 Action::ACTION_API_CALL,
42 scoped_refptr<Action> action = new Action(
43 "punky", base::Time::Now(), Action::ACTION_WEB_REQUEST, "webRequest");
64 std::make_pair(Action::ACTION_API_CALL, "tabs.executeScript"));
67 scoped_refptr<Action> action =
68 new Action("punky",
70 Action
[all...]
H A Dcounting_policy_unittest.cc82 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) {
84 policy, extension_id, Action::ACTION_ANY, "", "", "", day, checker);
92 const Action::ActionType type,
97 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) {
152 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker,
154 scoped_ptr<Action::ActionVector> results) {
165 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
170 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
175 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
180 scoped_ptr<std::vector<scoped_refptr<Action> > >
[all...]
H A Dad_injection_unittest.cc16 scoped_refptr<Action> CreateAction(const std::string& api_name) {
17 scoped_refptr<Action> action = new Action("id",
19 Action::ACTION_DOM_ACCESS,
60 scoped_refptr<Action> modify_iframe_src =
66 scoped_refptr<Action> modify_embed_src =
72 scoped_refptr<Action> modify_anchor_href =
78 scoped_refptr<Action> harmless_action = CreateAction("Location.replace");
H A Dfullstream_ui_policy_unittest.cc73 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) {
75 policy, extension_id, Action::ACTION_ANY, "", "", "", day, checker);
83 const Action::ActionType type,
88 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) {
118 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker,
120 scoped_ptr<Action::ActionVector> results) {
131 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
136 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
141 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
146 scoped_ptr<std::vector<scoped_refptr<Action> > >
[all...]
H A Dactivity_log.cc68 // arguments that should be extracted into the arg_url field of an Action.
70 // The lookup key consists of the action_type and api_name in the Action
72 Action::ActionType action_type;
97 {Action::ACTION_API_CALL, "tabs.connect", 0, LOOKUP_TAB_ID, NULL},
98 {Action::ACTION_API_CALL, "tabs.detectLanguage", 0, LOOKUP_TAB_ID, NULL},
99 {Action::ACTION_API_CALL, "tabs.duplicate", 0, LOOKUP_TAB_ID, NULL},
100 {Action::ACTION_API_CALL, "tabs.executeScript", 0, LOOKUP_TAB_ID, NULL},
101 {Action::ACTION_API_CALL, "tabs.get", 0, LOOKUP_TAB_ID, NULL},
102 {Action::ACTION_API_CALL, "tabs.insertCSS", 0, LOOKUP_TAB_ID, NULL},
103 {Action
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorHistory.cpp42 class UndoableStateMark FINAL : public InspectorHistory::Action {
44 UndoableStateMark() : InspectorHistory::Action("[UndoableState]") { }
57 InspectorHistory::Action::Action(const String& name) : m_name(name) function in class:WebCore::InspectorHistory::Action
61 InspectorHistory::Action::~Action()
65 void InspectorHistory::Action::trace(Visitor* visitor)
69 String InspectorHistory::Action::toString()
74 bool InspectorHistory::Action::isUndoableStateMark()
79 String InspectorHistory::Action
[all...]
H A DInspectorHistory.h47 class Action : public RefCountedWillBeGarbageCollectedFinalized<Action> { class in class:WebCore::FINAL
50 explicit Action(const String& name);
51 virtual ~Action();
56 virtual void merge(PassRefPtrWillBeRawPtr<Action>);
71 bool perform(PassRefPtrWillBeRawPtr<Action>, ExceptionState&);
79 WillBeHeapVector<RefPtrWillBeMember<Action> > m_history;
/external/chromium_org/chrome/browser/download/
H A Ddownload_danger_prompt.h25 enum Action { enum in class:DownloadDangerPrompt
30 typedef base::Callback<void(Action)> OnDone;
48 virtual void InvokeActionForTesting(Action action) = 0;
/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/clang/include/clang/Driver/
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
73 Action(ActionClass _Kind, types::ID _Type) function in class:clang::driver::Action
75 Action(ActionClass _Kind, Action *Input, types::ID _Type) function in class:clang::driver::Action
77 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) function in class:clang::driver::Action
80 virtual ~Action();
82 const char *getClassName() const { return Action::getClassName(getKind()); }
101 class InputAction : public Action {
[all...]
H A DUtil.h24 class Action;
31 typedef SmallVector<Action*, 3> ActionList;
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Ddfa.h22 typedef struct Action { struct
39 } Action; typedef in typeref:struct:Action
41 void Action_emit(Action*, FILE *, int *);
65 Action *action;
99 static Action *
102 Action *a = malloc(sizeof(Action));
109 static Action *
112 Action *a = malloc(sizeof(Action));
[all...]
/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/droiddriver/src/com/google/android/droiddriver/
H A DUiDevice.java21 import com.google.android.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/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
H A Dactions.js31 var Action = base.extends('button', {
48 ui.actions.Blame = base.extends(Action, {
56 ui.actions.Close = base.extends(Action, {
63 ui.actions.Rollout = base.extends(Action, {
71 ui.actions.Examine = base.extends(Action, {
79 ui.actions.Rebaseline = base.extends(Action, {
86 ui.actions.ExpectFailure = base.extends(Action, {
93 ui.actions.Next = base.extends(Action, {
101 ui.actions.Previous = base.extends(Action, {

Completed in 1104 milliseconds

1234567891011>>