HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 1 - 25 of 3319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/components/autofill/content/browser/wallet/
required_action.cc 13 bool ActionAppliesToFullWallet(RequiredAction action) {
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) {
21 return action == INVALID_FORM_FIELD ||
22 action == REQUIRE_PHONE_NUMBER;
25 bool ActionAppliesToWalletItems(RequiredAction action) {
26 return action == SETUP_WALLET |
    [all...]
  /external/chromium_org/chrome/browser/ui/views/touch_uma/
touch_uma.cc 8 void TouchUMA::RecordGestureAction(GestureActionType action) {
  /external/chromium/chrome/browser/metrics/
user_metrics.cc 11 void UserMetrics::RecordAction(const UserMetricsAction& action,
13 Record(action.str_, profile);
16 void UserMetrics::RecordComputedAction(const std::string& action,
18 Record(action.c_str(), profile);
21 void UserMetrics::Record(const char *action, Profile *profile) {
22 Record(action);
25 void UserMetrics::RecordAction(const UserMetricsAction& action) {
26 Record(action.str_);
29 void UserMetrics::RecordComputedAction(const std::string& action) {
30 Record(action.c_str())
    [all...]
user_metrics.h 28 // Record that the user performed an action.
29 // "Action" here means a user-generated event:
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)
    [all...]
  /external/chromium/chrome/common/extensions/
extension_action_unittest.cc 36 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.GetTitle(1))
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_action_unittest.cc 18 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.GetTitle(1))
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
DelegatedTask.java 26 private final Runnable action; field in class:DelegatedTask
28 public DelegatedTask(Runnable action, HandshakeProtocol handshaker) {
29 this.action = action;
36 action.run();
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 27 * Denotes the action to ignore any errors.
33 * Denotes the action to fill in the output with a replacement character
40 * Denotes the action to report the encountered error in an appropriate
47 // The name of this action
48 private String action; field in class:CodingErrorAction
53 private CodingErrorAction(String action) {
54 this.action = action;
58 * Returns a text description of this action indication.
60 * @return a text description of this action indication
    [all...]
  /external/chromium_org/content/browser/web_contents/
drag_utils_gtk.cc 17 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) {
29 if (action & GDK_ACTION_COPY
    [all...]
  /libcore/luni/src/main/java/java/security/
AccessController.java 42 * Calls {@code action.run()}.
44 public static <T> T doPrivileged(PrivilegedAction<T> action) {
45 return action.run();
49 * Calls {@code action.run()}.
51 public static <T> T doPrivileged(PrivilegedAction<T> action, AccessControlContext context) {
52 return action.run();
56 * Calls {@code action.run()}.
58 public static <T> T doPrivileged(PrivilegedExceptionAction<T> action) throws PrivilegedActionException {
60 return action.run();
69 * Calls {@code action.run()}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ContextMenu.cpp 31 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items)
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/
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
66 scoped_refptr<Action> action = local
92 scoped_refptr<Action> action = local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_quit.c 49 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.sa_sigaction == (void*)SIG_DFL )
86 struct sigaction action; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
options.py 32 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="store", type="string", dest="component", help="Component for the new bug."
    [all...]
  /external/chromium_org/chrome/installer/linux/debian/
postrm 7 action="$1"
10 if [ "$action" != "purge" ] ; then
prerm 7 action="$1"
10 action="upgrade"
13 if [ "$action" = "upgrade" ] ; then
  /external/wpa_supplicant_8/src/ap/
wnm_ap.h 15 struct rx_action *action);
  /system/core/init/
init_parser.h 22 struct action;
24 struct action *action_remove_queue_head(void);
25 void action_add_queue_tail(struct action *act);
27 void (*func)(struct action *act));
  /external/eigen/bench/btl/generic_bench/static/
intel_bench_fixed_size.hh 26 template <class Action>
30 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/
password_generation_util.cc 23 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/
ShadowKeyEvent.java 10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
14 this.action = action;
20 return action;
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_fatal.c 64 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/
gyptest-normalize-paths.py 34 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/
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...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyTouchEvent.java 26 public MonkeyTouchEvent(int action) {
27 super(MonkeyEvent.EVENT_TYPE_TOUCH, InputDevice.SOURCE_TOUCHSCREEN, action);

Completed in 1139 milliseconds

1 2 3 4 5 6 7 8 91011>>