HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 1 - 25 of 354) 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++ -*-===//
26 /// Action - Represent an abstract compilation step to perform.
28 /// An action represents an edge in the compilation graph; typically
35 class Action {
64 /// The output type of this action.
72 Action(ActionClass _Kind, types::ID _Type)
74 Action(ActionClass _Kind, Action *Input, types::ID _Type)
76 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type)
79 virtual ~Action();
    [all...]
  /external/chromium/base/
file_descriptor_shuffle_unittest.cc 20 struct Action {
27 Action(Type in_type, int in_fd1, int in_fd2 = -1)
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>& actions() const { return actions_;
    [all...]
  /external/chromium_org/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));
59 actions_.push_back(Action(Action::CLOSE, fd));
62 const std::vector<Action>& actions() const { return actions_;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.h 45 class Action {
48 Action(const String& name);
49 virtual ~Action();
53 virtual void merge(PassOwnPtr<Action>);
68 bool perform(PassOwnPtr<Action>, ExceptionState&);
76 Vector<OwnPtr<Action> > m_history;
InspectorHistory.cpp 42 class UndoableStateMark : public InspectorHistory::Action {
44 UndoableStateMark() : InspectorHistory::Action("[UndoableState]") { }
57 InspectorHistory::Action::Action(const String& name) : m_name(name)
61 InspectorHistory::Action::~Action()
65 String InspectorHistory::Action::toString()
70 bool InspectorHistory::Action::isUndoableStateMark()
75 String InspectorHistory::Action::mergeId()
80 void InspectorHistory::Action::merge(PassOwnPtr<Action>
114 Action* action = m_history[m_afterLastActionIndex - 1].get(); local
133 Action* action = m_history[m_afterLastActionIndex].get(); local
    [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();
  /external/chromium_org/ash/
event_rewriter_delegate.h 18 enum Action {
28 virtual Action RewriteOrFilterKeyEvent(ui::KeyEvent* event) = 0;
29 virtual Action RewriteOrFilterLocatedEvent(ui::LocatedEvent* event) = 0;
  /external/chromium_org/chrome/browser/download/
download_danger_prompt.h 25 enum Action {
30 typedef base::Callback<void(Action)> OnDone;
33 // will be run when the the respective action is invoked. |canceled| may also
51 virtual void InvokeActionForTesting(Action action) = 0;
  /external/compiler-rt/lib/asan/tests/
asan_exceptions_test.cc 5 class Action {
7 Action() {}
18 const Action a;
  /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/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.h 29 virtual void ProcessAction(scoped_refptr<Action> action) OVERRIDE;
40 <void(scoped_ptr<Action::ActionVector>)>& callback) OVERRIDE;
64 // in FullStreamUIPolicy returns the action unmodified.
65 virtual scoped_refptr<Action> ProcessArguments(
66 scoped_refptr<Action> action) const;
70 Action::ActionVector queued_actions_;
73 // Adds an Action to queued_actions_; this should be invoked only on the
75 void QueueAction(scoped_refptr<Action> action)
    [all...]
activity_log_policy_unittest.cc 19 scoped_refptr<Action> action = local
20 new Action("punky",
22 Action::ACTION_API_CALL,
24 action->mutable_args()->AppendString("woof");
25 action->set_page_url(GURL("http://www.google.com/"));
26 action->set_page_incognito(true);
27 action->set_page_title("private");
28 action->set_arg_url(GURL("http://www.youtube.com/?privatekey"));
30 ASSERT_EQ("<incognito>http://www.google.com/", action->SerializePageUrl())
42 scoped_refptr<Action> action = new Action( local
66 scoped_refptr<Action> action = local
92 scoped_refptr<Action> action = local
    [all...]
fullstream_ui_policy_unittest.cc 69 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) {
95 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker,
97 scoped_ptr<Action::ActionVector> results) {
108 scoped_ptr<std::vector<scoped_refptr<Action> > > i) {
112 static void Arguments_Present(scoped_ptr<Action::ActionVector> i) {
113 scoped_refptr<Action> last = i->front();
121 scoped_ptr<Action::ActionVector> actions) {
133 scoped_ptr<Action::ActionVector> actions) {
172 scoped_refptr<Action> action = new Action(extension->id() local
232 scoped_refptr<Action> action = new Action(extension->id(), local
260 scoped_refptr<Action> action = local
300 scoped_refptr<Action> action = local
    [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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.h 22 typedef struct Action {
39 } Action;
41 void Action_emit(Action*, FILE *, int *);
65 Action *action; member in struct:State
99 static Action *
102 Action *a = malloc(sizeof(Action));
105 s->action = a;
109 static Action *
    [all...]
  /external/clang/lib/Driver/
Action.cpp 1 //===--- 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(Kind, Input, Type)
    [all...]
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
78 void CallingConvEmitter::EmitAction(Record *Action,
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->isSubClassOf("CCDelegateTo"))
    [all...]
  /external/chromium_org/chrome/browser/extensions/
location_bar_controller.h 22 enum Action {
31 // Gets the action data for all extensions.
40 // returns the action that should be taken in response (if any).
42 virtual Action OnClicked(const std::string& extension_id,
  /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/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
actions.js 31 var Action = base.extends('button', {
34 $(this).addClass('action');
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, {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 35 public delegate void Action();
  /external/droiddriver/src/com/google/android/droiddriver/actions/
BaseAction.java 20 * Base class of {@link Action} that implements {@link #getTimeoutMillis}.
22 public abstract class BaseAction implements Action {

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>