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

1234567891011>>

/external/chromium_org/components/autofill/content/browser/wallet/
H A Drequired_action.cc13 bool ActionAppliesToFullWallet(RequiredAction action) { argument
14 return action == UPDATE_EXPIRATION_DATE ||
15 action == VERIFY_CVV ||
16 action == CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS ||
17 action == REQUIRE_PHONE_NUMBER;
20 bool ActionAppliesToSaveToWallet(RequiredAction action) { argument
21 return action == INVALID_FORM_FIELD ||
22 action == REQUIRE_PHONE_NUMBER;
25 bool ActionAppliesToWalletItems(RequiredAction action) { argument
26 return action
[all...]
/external/chromium_org/chrome/browser/ui/views/touch_uma/
H A Dtouch_uma.cc8 void TouchUMA::RecordGestureAction(GestureActionType action) { argument
/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/chromium_org/chrome/browser/extensions/
H A Dextension_action_unittest.cc18 ExtensionAction action(std::string(), ActionInfo::TYPE_PAGE, action_info);
20 ASSERT_EQ("Initial Title", action.GetTitle(1));
21 action.SetTitle(ExtensionAction::kDefaultTabId, "foo");
22 ASSERT_EQ("foo", action.GetTitle(1));
23 ASSERT_EQ("foo", action.GetTitle(100));
24 action.SetTitle(100, "bar");
25 ASSERT_EQ("foo", action.GetTitle(1));
26 ASSERT_EQ("bar", action.GetTitle(100));
27 action.SetTitle(ExtensionAction::kDefaultTabId, "baz");
28 ASSERT_EQ("baz", action
[all...]
/external/chromium_org/content/browser/web_contents/
H A Ddrag_utils_gtk.cc17 GdkDragAction action = static_cast<GdkDragAction>(0); local
19 action = static_cast<GdkDragAction>(action | GDK_ACTION_COPY);
21 action = static_cast<GdkDragAction>(action | GDK_ACTION_LINK);
23 action = static_cast<GdkDragAction>(action | GDK_ACTION_MOVE);
24 return action;
27 WebDragOperationsMask GdkDragActionToWebDragOp(GdkDragAction action) { argument
29 if (action
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DContextMenu.cpp31 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) argument
35 if (item.action() == static_cast<ContextMenuAction>(action))
39 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems()))
46 const ContextMenuItem* ContextMenu::itemWithAction(unsigned action) const
48 return findItemWithAction(action, m_items);
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_log_policy_unittest.cc19 scoped_refptr<Action> action = local
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());
32 ActivityLogPolicy::Util::StripPrivacySensitiveFields(action);
34 ASSERT_FALSE(action->page_url().is_valid());
35 ASSERT_EQ("<incognito>", action
42 scoped_refptr<Action> action = new Action( local
66 scoped_refptr<Action> action = local
92 scoped_refptr<Action> action = local
[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/chromium_org/third_party/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_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.")
37 check_style_filter = make_option("--check-style-filter", action="store", type="string", dest="check_style_filter", default=None, help="Filter style-checker rules (see check-webkit-style --help).")
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/chromium_org/chrome/installer/linux/debian/
H A Dpostrm7 action="$1"
10 if [ "$action" != "purge" ] ; then
H A Dprerm7 action="$1"
10 action="upgrade"
13 if [ "$action" = "upgrade" ] ; then
/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/chromium_org/components/autofill/core/common/
H A Dpassword_generation_util.cc23 UserAction action = IGNORE_FEATURE; local
26 action = ACCEPT_AFTER_EDITING;
28 action = ACCEPT_ORIGINAL_PASSWORD;
30 action = LEARN_MORE;
33 action, ACTION_ENUM_COUNT);
/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/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
H A Dgyptest-normalize-paths.py34 action = open(test.built_file_path('obj/action.ninja')).read() variable
35 if '..\\..\\out\\Default' in action:
37 if '..\\..\\SomethingElse' in action or 'SomethingElse' not in action:
39 if '..\\..\\SomeOtherInput' in action or 'SomeOtherInput' not in action:
/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...]
/external/chromium_org/chrome/common/extensions/api/extension_action/
H A Dpage_action_manifest_unittest.cc59 scoped_ptr<ActionInfo> action; local
62 action = LoadAction("page_action_empty.json");
63 ASSERT_TRUE(action);
65 // Now setup some values to use in the action.
70 action = LoadAction("page_action.json");
71 ASSERT_TRUE(action);
72 ASSERT_EQ(id, action->id);
75 ASSERT_EQ(name, action->default_title);
77 action->default_icon.Get(extension_misc::EXTENSION_ICON_ACTION,
81 action
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
H A Dmain_status.js9 networkStatus.setUserActionHandler(function(action) {
10 if (action.command == 'openConfiguration') {
12 chrome.extension.getURL('config.html?network=' + action.networkId);
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_action_unittest.cc22 SpellcheckAction action; local
24 action.type = kFinalActions[i];
25 ASSERT_TRUE(action.IsFinal());
34 SpellcheckAction action; local
36 action.type = kPendingActions[i];
37 ASSERT_FALSE(action.IsFinal());
42 SpellcheckAction action; local
43 action.type = SpellcheckAction::TYPE_PENDING;
44 action.Finalize();
45 ASSERT_EQ(SpellcheckAction::TYPE_NO_ACTION, action
55 SpellcheckAction action; member in struct:__anon5759
[all...]

Completed in 1938 milliseconds

1234567891011>>