Searched defs:action (Results 1 - 25 of 661) 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/sync_file_system/
H A Dsync_action.cc11 const char* SyncActionToString(SyncAction action) { argument
12 switch (action) {
/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/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dtcflow.c17 int tcflow(int fd, int action) { argument
/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/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/bluetooth/bluedroid/bta/mce/
H A Dbta_mce_main.c39 /* state machine action enumeration list */
42 /* type for action functions */
45 /* action function list */
67 UINT16 action = (p_msg->event & 0x00ff); local
69 /* execute action functions */
70 if(action < BTA_MCE_NUM_ACTIONS)
72 (*bta_mce_action[action])((tBTA_MCE_MSG*)p_msg);
/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:__anon4709
[all...]
H A Dmisspelling.h9 // |action| instead of asking them how they feel about a spellcheck suggestion.
28 // misspelling.action.type = SpellcheckAction::TYPE_SELECT;
29 // misspelling.action.index = 0;
65 // User action.
66 SpellcheckAction action; member in class:Misspelling
68 // The time when the user applied the action.
/external/chromium_org/chrome/browser/ui/webui/user_actions/
H A Duser_actions_ui_handler.cc24 void UserActionsUIHandler::OnUserAction(const std::string& action) { argument
25 base::StringValue user_action_name(action);
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler_manifest_unittest.cc77 const FileBrowserHandler* action = handlers->at(0).get(); local
79 EXPECT_EQ("ExtremelyCoolAction", action->id());
80 EXPECT_EQ("Be Amazed", action->title());
81 EXPECT_EQ("icon.png", action->icon_path());
82 const extensions::URLPatternSet& patterns = action->file_url_patterns();
84 EXPECT_TRUE(action->MatchesURL(
86 EXPECT_FALSE(action->HasCreateAccessPermission());
87 EXPECT_TRUE(action->CanRead());
88 EXPECT_TRUE(action->CanWrite());
113 const FileBrowserHandler* action local
144 const FileBrowserHandler* action = handlers->at(0).get(); local
[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/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/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_org/build/android/pylib/device/
H A Dintent.py13 def __init__(self, action='android.intent.action.VIEW', activity=None,
19 action: A string containing the action.
31 self._action = action
49 def action(self): member in class:Intent
/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

Completed in 1264 milliseconds

1234567891011>>