/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>); 67 bool perform(PassOwnPtr<Action>, ExceptionState&); 75 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> 112 Action* action = m_history[m_afterLastActionIndex - 1].get(); local 131 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 48 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;
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
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 67 scoped_refptr<Action> action = local 86 scoped_refptr<Action> action = local [all...] |
fullstream_ui_policy.h | 29 virtual void ProcessAction(scoped_refptr<Action> action) OVERRIDE; 33 const Action::ActionType type, 39 <void(scoped_ptr<Action::ActionVector>)>& callback) OVERRIDE; 72 // in FullStreamUIPolicy returns the action unmodified. 73 virtual scoped_refptr<Action> ProcessArguments( 74 scoped_refptr<Action> action) const; 90 Action::ActionVector queued_actions_; 93 // Adds an Action to queued_actions_; this should be invoked only on th [all...] |
counting_policy_unittest.cc | 80 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) { 82 policy, extension_id, Action::ACTION_ANY, "", "", "", day, checker); 90 const Action::ActionType type, 95 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) { 150 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker, 152 scoped_ptr<Action::ActionVector> results) { 163 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 168 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 173 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 178 scoped_ptr<std::vector<scoped_refptr<Action> > > i) 318 scoped_refptr<Action> action = new Action(extension->id(), local 342 scoped_refptr<Action> action = new Action(extension->id(), local 374 scoped_refptr<Action> action = local 431 scoped_refptr<Action> action = local 589 scoped_refptr<Action> action = local 656 scoped_refptr<Action> action = local 724 scoped_refptr<Action> action = local 779 scoped_refptr<Action> action = local 798 scoped_refptr<Action> action = local 834 scoped_refptr<Action> action = local 878 scoped_refptr<Action> action = new Action("punky", mock_clock->Now(), local 954 scoped_refptr<Action> action = new Action("deleteextensiondata", local 1019 scoped_refptr<Action> action = local 1087 scoped_refptr<Action> action; local [all...] |
activity_actions.h | 25 class Action : public base::RefCountedThreadSafe<Action> { 40 // A useful shorthand for methods that take or return collections of Action 42 typedef std::vector<scoped_refptr<Action> > ActionVector; 44 // Creates a new activity log Action object. The extension_id and type 47 Action(const std::string& extension_id, 52 // Creates and returns a mutable copy of an Action. 53 scoped_refptr<Action> Clone() const; 72 // mutable_args() returns a pointer to the list stored in the Action which 111 // Number of merged records for this action [all...] |
fullstream_ui_policy_unittest.cc | 71 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) { 73 policy, extension_id, Action::ACTION_ANY, "", "", "", day, checker); 81 const Action::ActionType type, 86 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) { 116 const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker, 118 scoped_ptr<Action::ActionVector> results) { 129 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 134 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 139 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 144 scoped_ptr<std::vector<scoped_refptr<Action> > > i) 250 scoped_refptr<Action> action = new Action(extension->id(), local 410 scoped_refptr<Action> action = new Action(extension->id(), local 439 scoped_refptr<Action> action = local 485 scoped_refptr<Action> action = local 538 scoped_refptr<Action> action = local 582 scoped_refptr<Action> action = new Action("punky", mock_clock->Now(), local 657 scoped_refptr<Action> action = new Action("deleteextensiondata", local 709 scoped_refptr<Action> action = local [all...] |
/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/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...] |