Searched defs:action (Results 1 - 25 of 596) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/views/touch_uma/
H A Dtouch_uma.cc8 void TouchUMA::RecordGestureAction(GestureActionType action) { argument
H A Dtouch_uma_ash.cc10 void TouchUMA::RecordGestureAction(GestureActionType action) { argument
12 switch (action) {
/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/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/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...]
/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...]
H A Dmisspelling.h9 // |action| instead of asking them how they feel about a spellcheck suggestion.
27 // misspelling.action.type = SpellcheckAction::TYPE_SELECT;
28 // misspelling.action.index = 0;
64 // User action.
65 SpellcheckAction action; member in class:Misspelling
67 // The time when the user applied the action.
/external/chromium_org/chrome/browser/ui/webui/user_actions/
H A Duser_actions_ui_handler.cc23 void UserActionsUIHandler::OnUserAction(const std::string& action) { argument
24 base::StringValue user_action_name(action);
/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/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/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/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/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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeWizard.h48 NSInteger action; variable
59 @property NSInteger action; variable
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java51 action(); // perform the requested operation
60 public void action() { method in class:Barrier
/external/bluetooth/bluedroid/bta/jv/
H A Dbta_jv_main.c38 /* state machine action enumeration list */
41 /* type for action functions */
44 /* action function list */
95 UINT16 action = (p_msg->event & 0x00ff); local
96 /* execute action functions */
98 if(action < BTA_JV_NUM_ACTIONS)
100 (*bta_jv_action[action])((tBTA_JV_MSG*)p_msg);
/external/chromium/chrome/browser/extensions/
H A Dpage_action_apitest.cc24 // Tell the extension to update the page action state.
34 ExtensionAction* action = extension->page_action(); local
35 ASSERT_TRUE(action);
36 EXPECT_EQ("Modified", action->GetTitle(tab_id));
39 // Simulate the page action being clicked.
50 // Tell the extension to update the page action state again.
59 EXPECT_FALSE(action->GetIcon(tab_id).isNull());
73 << "Page action test extension should have a page action.";
77 // Simulate the page action bein
[all...]
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h14 // browser view. This cell customization adds target and action support
28 @property(nonatomic, assign) SEL action; variable
/external/chromium/webkit/glue/
H A Dform_data.h31 // The action target of the form.
32 GURL action; member in struct:webkit_glue::FormData
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h13 // browser view. This cell customization adds target and action support
27 @property(nonatomic, assign) SEL action; variable
/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/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...]

Completed in 1488 milliseconds

1234567891011>>