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

1234567891011>>

/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/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/webkit/Source/WebCore/platform/
H A DContextMenu.cpp37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) argument
41 if (item.action() == action)
45 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems()))
52 ContextMenuItem* ContextMenu::itemWithAction(unsigned action) argument
56 return const_cast<ContextMenuItem*>(findItemWithAction(action, m_items));
/external/webkit/Source/WebCore/platform/gtk/
H A DClipboardUtilitiesGtk.cpp63 unsigned int action = DragOperationNone; local
65 action |= DragOperationCopy;
67 action |= DragOperationMove;
69 action |= DragOperationLink;
71 action |= DragOperationPrivate;
72 return static_cast<DragOperation>(action);
/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/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DSoftTextDialogInputListener.java43 public void onSoftText(int action, String text); argument
/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/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/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorDelegate.cpp61 /* [retval][out] */ WebDragDestinationAction* action)
63 *action = WebDragDestinationActionNone;
58 dragDestinationActionMaskForDraggingInfo( IWebView*, IDataObject*, WebDragDestinationAction* action) argument
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameListenerProxy.cpp48 void WebFrameListenerProxy::receivedPolicyDecision(WebCore::PolicyAction action) argument
53 m_frame->receivedPolicyDecision(action, m_listenerID);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleAPICast.h73 inline WKInsertActionType toAPI(WebCore::EditorInsertAction action) argument
75 switch (action) {
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebDragClient.cpp35 void WebDragClient::willPerformDragDestinationAction(DragDestinationAction action, DragData*) argument
37 if (action == DragDestinationActionLoad)
/external/bison/lib/
H A Dspawn_int.h19 /* Data structure to contain the action information. */
47 } action; member in struct:__spawn_action
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_data.h18 const char* action; member in struct:PasswordFormData
/external/chromium/chrome/browser/ui/options/
H A Doptions_page_base.cc23 void OptionsPageBase::UserMetricsRecordAction(const UserMetricsAction& action, argument
25 UserMetrics::RecordAction(action, profile());

Completed in 1636 milliseconds

1234567891011>>