Searched refs:action (Results 1 - 25 of 919) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/metrics/
H A Duser_metrics.cc11 void UserMetrics::RecordAction(const UserMetricsAction& action, argument
13 Record(action.str_, profile);
16 void UserMetrics::RecordComputedAction(const std::string& action, argument
18 Record(action.c_str(), profile);
21 void UserMetrics::Record(const char *action, Profile *profile) { argument
22 Record(action);
25 void UserMetrics::RecordAction(const UserMetricsAction& action) { argument
26 Record(action.str_);
29 void UserMetrics::RecordComputedAction(const std::string& action) { argument
30 Record(action
33 Record(const char *action) argument
46 CallRecordOnUI(const std::string& action) argument
[all...]
H A Duser_metrics.h28 // Record that the user performed an action.
39 // Once a new recorded action is added, run chrome/tools/extract_actions.py
40 // to generate a new mapping of [action hashes -> metric names] and send it
48 static void RecordAction(const UserMetricsAction& action, Profile* profile);
51 // not automatically found by the action-processing scripts. It can be used
55 static void RecordComputedAction(const std::string& action,
58 static void RecordAction(const UserMetricsAction& action);
59 static void RecordComputedAction(const std::string& action);
62 static void Record(const char *action, Profile *profile);
63 static void Record(const char *action);
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_action_unittest.cc36 ExtensionAction action; local
39 ASSERT_EQ("", action.GetTitle(1));
40 action.SetTitle(ExtensionAction::kDefaultTabId, "foo");
41 ASSERT_EQ("foo", action.GetTitle(1));
42 ASSERT_EQ("foo", action.GetTitle(100));
43 action.SetTitle(100, "bar");
44 ASSERT_EQ("foo", action.GetTitle(1));
45 ASSERT_EQ("bar", action.GetTitle(100));
46 action.SetTitle(ExtensionAction::kDefaultTabId, "baz");
47 ASSERT_EQ("baz", action
[all...]
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_quit.c49 struct sigaction action; local
50 sigaction(SIGINT, NULL, &action);
52 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
54 if ( action.sa_handler == SIG_DFL ) {
56 action.sa_handler = SDL_HandleSIG;
57 sigaction(SIGINT, &action, NULL);
59 sigaction(SIGTERM, NULL, &action);
61 if ( action.sa_handler == SIG_DFL && action
86 struct sigaction action; local
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwnm_ap.h15 struct rx_action *action);
/external/wpa_supplicant_8/src/ap/
H A Dwnm_ap.h15 struct rx_action *action);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwnm_ap.h15 struct rx_action *action);
/external/eigen/bench/btl/generic_bench/static/
H A Dintel_bench_fixed_size.hh30 Action action(size);
32 double time_baseline=time_init(nb_init,action);
39 time_baseline=time_init(nb_init,action);
44 double time_action=time_calculate(nb_calc,action);
49 time_action=time_calculate(nb_calc,action);
58 action.check_result();
62 return action.nb_op_base()/(time_action*1000000.0);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py32 blocks = make_option("--blocks", action="store", type="string", dest="blocks", default=None, help="Bug number which the created bug blocks.")
33 build = make_option("--build", action="store_true", dest="build", default=False, help="Build and run run-webkit-tests before committing.")
34 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.")
35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
36 check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="Don't check to see if the build.webkit.org builders are green before landing.")
37 check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
38 clean = make_option("--no-clean", action="store_false", dest="clean", default=True, help="Don't check if the working directory is clean before applying patches")
39 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.")
40 comment = make_option("--comment", action="store", type="string", dest="comment", help="Comment to post to bug.")
41 component = make_option("--component", action
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowKeyEvent.java10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) { argument
14 this.action = action;
20 return action;
/external/qemu/distrib/sdl-1.2.15/src/
H A DSDL_fatal.c64 struct sigaction action; local
67 sigaction(SDL_fatal_signals[i], NULL, &action);
68 if ( action.sa_handler == SIG_DFL ) {
69 action.sa_handler = SDL_Parachute;
70 sigaction(SDL_fatal_signals[i], &action, NULL);
75 sigaction(SIGALRM, NULL, &action);
76 if ( action.sa_handler == SIG_DFL ) {
77 action.sa_handler = SIG_IGN;
78 sigaction(SIGALRM, &action, NULL);
99 struct sigaction action; local
[all...]
/external/webkit/Source/WebCore/platform/
H A DContextMenu.cpp37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) argument
41 if (item.action() == action)
45 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems()))
52 ContextMenuItem* ContextMenu::itemWithAction(unsigned action) argument
56 return const_cast<ContextMenuItem*>(findItemWithAction(action, m_items));
H A DContextMenuItem.cpp35 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
37 , m_action(action)
46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
48 , m_action(action)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
57 , m_action(action)
90 void ContextMenuItem::setAction(ContextMenuAction action) argument
92 m_action = action;
95 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_perf_analyzer_old.hh45 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();
80 double time_baseline = time_init(action);
82 time_baseline = std::min(time_baseline, time_init(action));
97 time_init(Action & action) argument
108 time_calculate(Action & action) argument
[all...]
H A DSTL_perf_analyzer.hh45 ACTION action(size);
51 action.initialize();
58 action.initialize();
59 action.calculate();
66 // cout << size <<" "<<baseline_time<<" "<<calculate_time<<" "<<corrected_time<<" "<<action.nb_op_base() << endl;
68 return action.nb_op_base()/(corrected_time*1000000.0);
69 //return action.nb_op_base()/(calculate_time*1000000.0);
H A Dportable_perf_analyzer.hh43 Action action(size);
45 // action.initialize();
46 // time_action = time_calculate(action);
51 action.initialize();
52 m_time_action = time_calculate(action);
69 action.initialize();
70 action.calculate();
71 action.check_result();
73 return action.nb_op_base()/(time_action*1e6);
76 BTL_DONT_INLINE double time_calculate(Action & action) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwnm_sta.h16 u8 action, u16 intval, struct wpabuf *tfs_req);
19 struct rx_action *action);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeVisitor.cs50 * Visit every node in tree t and trigger an action for each node
55 * applying post action to this node.
58 public object Visit(object t, ITreeVisitorAction action) argument
62 if (action != null && !isNil)
64 t = action.Pre(t); // if rewritten, walk children of new t
69 Visit(child, action);
71 if (action != null && !isNil)
72 t = action.Post(t);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeVisitor.cs52 * Visit every node in tree t and trigger an action for each node
57 * applying post action to this node.
60 public object Visit( object t, ITreeVisitorAction action )
64 if ( action != null && !isNil )
66 t = action.Pre( t ); // if rewritten, walk children of new t
71 Visit( child, action );
73 if ( action != null && !isNil )
74 t = action.Post( t );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitor.java42 /** Visit every node in tree t and trigger an action for each node
50 * Return result of applying post action to this node.
52 public Object visit(Object t, TreeVisitorAction action) { argument
55 if ( action!=null && !isNil ) {
56 t = action.pre(t); // if rewritten, walk children of new t
60 Object visitResult = visit(child, action);
66 if ( action!=null && !isNil ) t = action.post(t);
/external/llvm/include/llvm/Analysis/
H A DVerifier.h32 /// @brief An enumeration to specify the action to be taken if errors found.
47 /// action indicated by the \p action argument will be used if errors are
50 VerifierFailureAction action = AbortProcessAction ///< Action to take
56 /// the action taken depends on the \p action parameter.
62 VerifierFailureAction action = AbortProcessAction, ///< Action to take
70 VerifierFailureAction action = AbortProcessAction ///< Action to take
/external/bison/lib/
H A Dfatal-signal.c38 These are those signals whose default action is to terminate the process
95 struct sigaction action; local
97 if (sigaction (fatal_signals[i], NULL, &action) >= 0
98 && get_handler (&action) == SIG_IGN)
113 The 'action' field is accessed from within the fatal_signal_handler(),
117 volatile action_t action; member in struct:__anon314
156 /* Get the last registered cleanup action, in a reentrant way. */
157 action_t action; local
163 action = actions[n].action;
183 struct sigaction action; local
206 at_fatal_signal(action_t action) argument
[all...]
/external/chromium/webkit/glue/
H A Dform_data.cc17 action(data.action),
29 action == form.action &&
/external/clang/test/CodeGen/
H A D2009-05-04-EnumInreg.c16 // CHECK: i32 inreg %action
17 int kobject_uevent(struct kobject *kobj, enum kobject_action action) {} argument
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DSoftTextDialogInputListener.java43 public void onSoftText(int action, String text); argument

Completed in 863 milliseconds

1234567891011>>