Searched refs:action (Results 1 - 25 of 2925) 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_org/chrome/browser/sync_file_system/
H A Dsync_action.cc11 const char* SyncActionToString(SyncAction action) { argument
12 switch (action) {
/external/valgrind/main/gdbserver_tests/
H A Dhginfo.stderr.exp0 (action at startup) vgdb me ...
H A Dnlgone_exit.stderr.exp3 (action at startup) vgdb me ...
8 (action at exit) vgdb me ...
H A Dnlself_invalidate.stderr.exp3 (action at startup) vgdb me ...
/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("", action
42 scoped_refptr<Action> action = new Action( local
67 scoped_refptr<Action> action = local
86 scoped_refptr<Action> action = local
[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/third_party/WebKit/Source/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/ash/
H A Dmulti_profile_uma.cc12 void MultiProfileUMA::RecordSessionMode(SessionMode action) { argument
14 action,
19 void MultiProfileUMA::RecordSigninUser(SigninUserAction action) { argument
21 action,
26 void MultiProfileUMA::RecordSwitchActiveUser(SwitchActiveUserAction action) { argument
28 action,
40 void MultiProfileUMA::RecordTeleportAction(TeleportWindowAction action) { argument
42 action,
/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/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/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/chromium_org/third_party/WebKit/Source/web/tests/data/
H A Dtouch-action-tests.css2 Use a class to apply touch-action so that we can easily manually check
6 -ms-touch-action: none;
7 touch-action: none;
10 -ms-touch-action: auto;
11 touch-action: auto;
14 -ms-touch-action: pan-x;
15 touch-action: pan-x;
18 -ms-touch-action: pan-y;
19 touch-action: pan-y;
22 -ms-touch-action
[all...]
/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/content/browser/
H A Duser_metrics.cc15 void RecordAction(const base::UserMetricsAction& action) { argument
20 base::Bind(&RecordAction, action));
24 base::RecordAction(action);
27 void RecordComputedAction(const std::string& action) { argument
32 base::Bind(&RecordComputedAction, action));
36 base::RecordComputedAction(action);
/external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
H A Dgyptest-normalize-paths.py38 action = open(test.built_file_path('obj/action.ninja')).read() variable
39 if '..\\..\\out\\Default' in action:
41 if '..\\..\\SomethingElse' in action or 'SomethingElse' not in action:
43 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.cc60 scoped_ptr<ActionInfo> action; local
63 action = LoadAction("page_action_empty.json");
64 ASSERT_TRUE(action);
66 // Now setup some values to use in the action.
71 action = LoadAction("page_action.json");
72 ASSERT_TRUE(action);
73 ASSERT_EQ(id, action->id);
76 ASSERT_EQ(name, action->default_title);
78 action->default_icon.Get(extension_misc::EXTENSION_ICON_ACTION,
82 action
[all...]
/external/chromium_org/content/public/browser/
H A Duser_metrics.h20 CONTENT_EXPORT void RecordAction(const base::UserMetricsAction& action);
21 CONTENT_EXPORT void RecordComputedAction(const std::string& action);
/external/chromium_org/ui/events/ozone/device/
H A Ddevice_event.cc10 ActionType action,
13 action_type_(action),
9 DeviceEvent(DeviceType type, ActionType action, const base::FilePath& path) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DSubPanelListener.java13 * @param action one of the action types in {@code InfoBar}
15 public void onPanelClosed(int action); argument
/external/chromium_org/chrome/installer/linux/debian/
H A Dpostrm9 action="$1"
12 if [ "$action" != "purge" ] ; then
/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);

Completed in 840 milliseconds

1234567891011>>