HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 1 - 25 of 3277) 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...]
required_action.h 34 bool ActionAppliesToFullWallet(RequiredAction action);
35 bool ActionAppliesToSaveToWallet(RequiredAction action);
36 bool ActionAppliesToWalletItems(RequiredAction action);
  /external/chromium_org/chrome/browser/ui/views/touch_uma/
touch_uma.cc 8 void TouchUMA::RecordGestureAction(GestureActionType action) {
  /external/chromium_org/chrome/browser/sync_file_system/
sync_action.cc 11 const char* SyncActionToString(SyncAction action) {
12 switch (action) {
  /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
67 scoped_refptr<Action> action = local
86 scoped_refptr<Action> action = local
    [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...]
  /external/chromium_org/third_party/WebKit/Source/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/ash/
multi_profile_uma.cc 12 void MultiProfileUMA::RecordSessionMode(SessionMode action) {
14 action,
19 void MultiProfileUMA::RecordSigninUser(SigninUserAction action) {
21 action,
26 void MultiProfileUMA::RecordSwitchActiveUser(SwitchActiveUserAction action) {
28 action,
40 void MultiProfileUMA::RecordTeleportAction(TeleportWindowAction action) {
42 action,
  /external/chromium_org/content/public/browser/
user_metrics.h 20 CONTENT_EXPORT void RecordAction(const base::UserMetricsAction& action);
21 CONTENT_EXPORT void RecordComputedAction(const std::string& action);
  /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/third_party/WebKit/Source/web/tests/data/
touch-action-tests.css 2 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: pan-x pan-y
    [all...]
  /external/chromium_org/content/browser/
user_metrics.cc 15 void RecordAction(const base::UserMetricsAction& action) {
20 base::Bind(&RecordAction, action));
24 base::RecordAction(action);
27 void RecordComputedAction(const std::string& action) {
32 base::Bind(&RecordComputedAction, action));
36 base::RecordComputedAction(action);
  /external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
gyptest-normalize-paths.py 38 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/
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...]
STL_perf_analyzer.hh 26 template<class ACTION>
45 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);
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...]
  /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);
MonkeyTrackballEvent.java 25 public MonkeyTrackballEvent(int action) {
26 super(MonkeyEvent.EVENT_TYPE_TRACKBALL, InputDevice.SOURCE_TRACKBALL, action);
  /external/chromium_org/chrome/common/extensions/api/extension_action/
page_action_manifest_unittest.cc 64 scoped_ptr<ActionInfo> action; local
67 action = LoadAction("page_action_empty.json");
68 ASSERT_TRUE(action);
70 // Now setup some values to use in the action.
75 action = LoadAction("page_action.json");
76 ASSERT_TRUE(action);
77 ASSERT_EQ(id, action->id);
80 ASSERT_EQ(name, action->default_title);
82 action->default_icon.Get(extension_misc::EXTENSION_ICON_ACTION,
86 action = LoadAction("page_action_type.json")
    [all...]
  /external/chromium_org/ui/events/ozone/device/
device_event.cc 10 ActionType action,
13 action_type_(action),
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
SubPanelListener.java 13 * @param action one of the action types in {@code InfoBar}
15 public void onPanelClosed(int action);
  /external/chromium_org/chrome/installer/linux/debian/
postrm 9 action="$1"
12 if [ "$action" != "purge" ] ; then
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
options.py 32 confirm = make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Skip confirmation steps.")
33 git_commit = make_option("-g", "--git-commit", action="store", dest="git_commit", help="Operate on a local commit. If a range, the commits are squashed into one. <ref>.... includes the working copy changes. UPSTREAM can be used for the upstream/tracking branch.")
34 parent_command = make_option("--parent-command", action="store", dest="parent_command", default=None, help="(Internal) The command that spawned this instance.")
35 quiet = make_option("--quiet", action="store_true", dest="quiet", default=False, help="Produce less console output.")
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_action_unittest.cc 22 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.type)
55 SpellcheckAction action; member in struct:__anon9334
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeVisitor.cs 50 * 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)
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);

Completed in 857 milliseconds

1 2 3 4 5 6 7 8 91011>>