/external/eigen/bench/btl/generic_bench/timers/ |
portable_perf_analyzer.hh | 27 template <class Action> 43 Action action(size); 45 // action.initialize(); 46 // time_action = time_calculate(action); 51 action.initialize(); 52 m_time_action = time_calculate(action); 58 Action _action(size); 69 action.initialize(); 70 action.calculate() [all...] |
portable_perf_analyzer_old.hh | 26 template <class Action> 45 Action action(size); 47 // double time_baseline = time_init(action); 51 // time_baseline = time_init(action); 56 // time_baseline = std::min(time_baseline, time_init(action)); 60 double time_action = time_calculate(action); 64 time_action = time_calculate(action); 69 time_action = std::min(time_action, time_calculate(action)); 77 action.check_result() [all...] |
/external/smack/src/org/jivesoftware/smackx/commands/ |
AdHocCommand.java | 44 * "cancel" action when submitting a stage response indicating that the command
55 * <li><i>malformed-action</i>. Extension of a <i>bad-request</i> error.</li>
56 * <li><i>bad-action</i>. Extension of a <i>bad-request</i> error.</li>
73 // TODO: result to the execution of every action. That result should have all the
163 * response to the execution of an action. All the notes added here are
179 * be answered to execute the next action. If that is the case it should be
218 * Executes the next action of the command with the information provided in
262 * 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 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
TableView.java | 24 import org.eclipse.jface.action.Action; 41 private Action mCopyAction; 42 private Action mSelectAllAction; 70 // setup the copy action 74 mCopyAction = new Action(Messages.TableView_Copy) { 83 // setup the select all action 85 mSelectAllAction = new Action(Messages.TableView_Select_All) {
|
/external/smack/src/org/jivesoftware/smackx/provider/ |
AdHocCommandDataProvider.java | 30 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
66 // Action
67 String action = parser.getAttributeValue("", "action");
local 68 if (action != null) {
69 Action realAction = AdHocCommand.Action.valueOf(action);
70 if (realAction == null || realAction.equals(Action.unknown)) {
71 adHocCommandData.setAction(Action.unknown); [all...] |
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_log_policy.h | 77 virtual void ProcessAction(scoped_refptr<Action> action) = 0; 90 typedef std::set<std::pair<Action::ActionType, std::string> > ApiSet; 97 // This should generally be called on an Action before logging, unless 98 // debugging flags are enabled. Modifies the Action object in place; if 99 // the action might be shared with other users, it is up to the caller to 101 static void StripPrivacySensitiveFields(scoped_refptr<Action> action); 104 // whitelisted set. Modifies the Action object in-place. 106 scoped_refptr<Action> action) [all...] |
activity_database_unittest.cc | 53 virtual void Record(ActivityDatabase* db, scoped_refptr<Action> action); 61 std::vector<scoped_refptr<Action> > queue_; 83 std::vector<scoped_refptr<Action> >::size_type i; 85 const Action& action = *queue_[i]; local 88 statement.BindString(0, action.extension_id()); 89 statement.BindInt64(1, action.time().ToInternalValue()); 90 statement.BindInt(2, static_cast<int>(action.action_type())); 91 statement.BindString(3, action.api_name()) 198 scoped_refptr<Action> action = CreateAction(base::Time::Now(), "brewster"); local 219 scoped_refptr<Action> action = CreateAction(base::Time::Now(), "brewster"); local 236 scoped_refptr<Action> action = CreateAction(base::Time::Now(), "brewster"); local 258 scoped_refptr<Action> action = CreateAction(base::Time::Now(), "brewster"); local 279 scoped_refptr<Action> action = new Action( local [all...] |
counting_policy.cc | 49 using extensions::Action; 51 // Delay between cleaning passes (to delete old action records) through the 62 Action::ActionType type; 67 {Action::ACTION_API_CALL, "bookmarks.create"}, 68 {Action::ACTION_API_CALL, "bookmarks.update"}, 69 {Action::ACTION_API_CALL, "cookies.get"}, 70 {Action::ACTION_API_CALL, "cookies.getAll"}, 71 {Action::ACTION_API_CALL, "extension.connect"}, 72 {Action::ACTION_API_CALL, "extension.sendMessage"}, 73 {Action::ACTION_API_CALL, "fileSystem.chooseEntry"} 282 const Action& action = *i->first; local 486 scoped_refptr<Action> action = local [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchFinder.h | 119 /// Calls 'Action' with the BoundNodes on every match. 123 /// Does not take ownership of 'Action'. 126 MatchCallback *Action); 128 MatchCallback *Action); 130 MatchCallback *Action); 132 MatchCallback *Action); 134 MatchCallback *Action); 136 MatchCallback *Action);
|
/external/eigen/bench/btl/generic_bench/ |
bench.hh | 40 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/chromium/testing/gmock/test/ |
gmock-more-actions_test.cc | 55 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<string(const char*, const char*, const char*, const char* [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-actions.h | 51 // To implement an action Foo, define: 53 // 2. a factory function that creates an Action object from a 58 // management as Action objects can now be copied like plain values. 77 "Default action undefined for the function return type."); 122 // There's no need for a default action for signed wchar_t, as that 125 // There's also no need for a default action for unsigned wchar_t, as 248 // Implement this interface to define an action for function type F. 258 // Performs the action. This method is not const, as in general an 259 // action can have side effects and be stateful. For example, a 260 // get-the-next-element-from-the-collection action will need t [all...] |
/external/chromium_org/chrome/browser/extensions/api/activity_log_private/ |
activity_log_private_api.h | 45 virtual void OnExtensionActivity(scoped_refptr<Action> activity) OVERRIDE; 77 scoped_ptr<std::vector<scoped_refptr<Action> > > activities);
|
activity_log_private_api.cc | 84 void ActivityLogAPI::OnExtensionActivity(scoped_refptr<Action> activity) { 104 Action::ActionType action_type = Action::ACTION_API_CALL; 107 action_type = Action::ACTION_API_CALL; 110 action_type = Action::ACTION_API_EVENT; 113 action_type = Action::ACTION_CONTENT_SCRIPT; 116 action_type = Action::ACTION_DOM_ACCESS; 119 action_type = Action::ACTION_DOM_EVENT; 122 action_type = Action::ACTION_WEB_REQUEST; 126 action_type = Action::ACTION_ANY [all...] |
/external/chromium_org/content/browser/renderer_host/input/ |
synthetic_gesture_target_android.h | 40 enum Action { 49 void TouchInject(JNIEnv* env, Action action, int pointer_count);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
SelectThemeAction.java | 22 import org.eclipse.jface.action.Action; 23 import org.eclipse.jface.action.IAction; 26 * Action which brings up the "Create new XML File" wizard, pre-selected with the 29 class SelectThemeAction extends Action {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
LayoutView.java | 25 import org.eclipse.jface.action.Action; 26 import org.eclipse.jface.action.IMenuManager; 27 import org.eclipse.jface.action.IToolBarManager; 47 private Action mShowExtrasAction = new Action("Show &Extras", Action.AS_CHECK_BOX) { 54 private Action mLoadAllViewsAction = new Action("Load All &Views") { 63 private Action mOnBlackWhiteAction = new Action("Change Background &Color") [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeVisitor.h | 44 - (ANTLRTreeVisitor *)visit:(id<ANTLRBaseTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/chromium/chrome/browser/net/ |
passive_log_collector.h | 141 enum Action { 156 // Updates |out_info| with the information from |entry|. Returns an action 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 [all...] |
/external/chromium_org/components/policy/core/common/cloud/ |
mock_device_management_service.h | 63 // Creates a gmock action that will make the job succeed. 64 testing::Action<CreateJobFunction> SucceedJob( 67 // Creates a gmock action which will fail the job with the given error. 68 testing::Action<CreateJobFunction> FailJob(DeviceManagementStatus status); 70 // Creates a gmock action which will capture the job so the test code can 72 testing::Action<CreateJobFunction> CreateAsyncJob(
|
/system/core/fastboot/ |
engine.c | 80 typedef struct Action Action; 84 struct Action 87 Action *next; 95 int (*func)(Action *a, int status, char *resp); 100 static Action *action_list = 0; 101 static Action *action_last = 0; 179 static int cb_default(Action *a, int status, char *resp) 191 static Action *queue_action(unsigned op, const char *fmt, ...) 193 Action *a [all...] |
/external/clang/lib/Driver/ |
ToolChain.cpp | 12 #include "clang/Driver/Action.h" 98 Tool *ToolChain::getTool(Action::ActionClass AC) const { 100 case Action::AssembleJobClass: 103 case Action::LinkJobClass: 106 case Action::InputClass: 107 case Action::BindArchClass: 108 case Action::LipoJobClass: 109 case Action::DsymutilJobClass: 110 case Action::VerifyJobClass: 113 case Action::CompileJobClass [all...] |