Searched refs:action (Results 26 - 50 of 2925) sorted by relevance

1234567891011>>

/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:__anon4650
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_perf_analyzer.hh45 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);
H A Dportable_perf_analyzer.hh43 Action action(size);
45 // action.initialize();
46 // time_action = time_calculate(action);
51 action.initialize();
52 m_time_action = time_calculate(action);
69 action.initialize();
70 action.calculate();
71 action.check_result();
73 return action.nb_op_base()/(time_action*1e6);
76 BTL_DONT_INLINE double time_calculate(Action & action) argument
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcapture_status_view.js65 var action = dropdown.value;
68 if (action == 'stop') {
70 } else if (action == 'reset') {
72 } else if (action == 'clear-cache') {
74 } else if (action == 'flush-sockets') {
76 } else if (action == 'switch-time-format') {
80 throw Error('Unrecognized action: ' + action);
/external/pdfium/fpdfsdk/include/
H A Dfsdk_actionhandler.h17 FX_BOOL DoAction_Hide(const CPDF_Action& action, CPDFSDK_Document* pDocument);
18 FX_BOOL DoAction_SubmitForm(const CPDF_Action& action, CPDFSDK_Document* pDocument);
19 FX_BOOL DoAction_ResetForm(const CPDF_Action& action, CPDFSDK_Document* pDocument);
20 FX_BOOL DoAction_ImportData(const CPDF_Action& action, CPDFSDK_Document* pDocument);
26 FX_BOOL DoAction_Rendition(const CPDF_Action& action, CPDFSDK_Document* pDocument);
27 FX_BOOL DoAction_Sound(const CPDF_Action& action, CPDFSDK_Document* pDocument);
28 FX_BOOL DoAction_Movie(const CPDF_Action& action, CPDFSDK_Document* pDocument);
38 virtual FX_BOOL DoAction_DocOpen(const CPDF_Action& action, CPDFSDK_Document* pDocument/*, CPDFSDK_DocView *pDocView*/);
40 virtual FX_BOOL DoAction_Page(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CPDFSDK_Document* pDocument/*, CReader_DocView *pDocView*/);
41 virtual FX_BOOL DoAction_Document(const CPDF_Action& action, enu
[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/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeVisitor.cs52 * Visit every node in tree t and trigger an action for each node
57 * applying post action to this node.
60 public object Visit( object t, ITreeVisitorAction action )
64 if ( action != null && !isNil )
66 t = action.Pre( t ); // if rewritten, walk children of new t
71 Visit( child, action );
73 if ( action != null && !isNil )
74 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/chromium_org/chrome/installer/linux/debian/
H A Dprerm9 action="$1"
12 action="upgrade"
15 if [ "$action" = "upgrade" ] ; then
/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/components/autofill/content/browser/wallet/
H A Drequired_action.h34 bool ActionAppliesToFullWallet(RequiredAction action);
35 bool ActionAppliesToSaveToWallet(RequiredAction action);
36 bool ActionAppliesToWalletItems(RequiredAction action);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorHistory.cpp90 bool InspectorHistory::perform(PassRefPtrWillBeRawPtr<Action> action, ExceptionState& exceptionState) argument
92 if (!action->perform(exceptionState))
95 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
96 m_history[m_afterLastActionIndex - 1]->merge(action);
99 m_history.append(action);
116 Action* action = m_history[m_afterLastActionIndex - 1].get(); local
117 if (!action->undo(exceptionState)) {
122 if (action->isUndoableStateMark())
135 Action* action local
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dgesture_action_unittest.py9 """Mock gesture action that simply sleeps for a specified amount of time."""
21 action = MockGestureAction()
22 action.RunAction(self._tab)
23 self.assertTrue(action.was_run)
H A Dloop_unittest.py23 """Tests that with no selector Loop action loops first media element."""
25 action = loop.LoopAction(data)
26 action.WillRunAction(self._tab)
27 action.RunAction(self._tab)
34 """Tests that Loop action loops all video elements with selector='all'."""
36 action = loop.LoopAction(data)
37 action.WillRunAction(self._tab)
38 # Both videos not playing before running action.
41 action.RunAction(self._tab)
52 action
[all...]
/external/droiddriver/src/com/google/android/droiddriver/validators/
H A DExemptScrollActionValidator.java29 public boolean isApplicable(UiElement element, Action action) { argument
30 return action instanceof ScrollAction;
34 public String validate(UiElement element, Action action) { argument
H A DFirstApplicableValidator.java34 public boolean isApplicable(UiElement element, Action action) { argument
39 public String validate(UiElement element, Action action) { argument
41 if (validator.isApplicable(element, action)) {
42 return validator.validate(element, action);
/external/bison/lib/
H A Dfatal-signal.c38 These are those signals whose default action is to terminate the process
95 struct sigaction action; local
97 if (sigaction (fatal_signals[i], NULL, &action) >= 0
98 && get_handler (&action) == SIG_IGN)
113 The 'action' field is accessed from within the fatal_signal_handler(),
117 volatile action_t action; member in struct:__anon317
156 /* Get the last registered cleanup action, in a reentrant way. */
157 action_t action; local
163 action = actions[n].action;
183 struct sigaction action; local
206 at_fatal_signal(action_t action) argument
[all...]
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsync_action.h11 // Indicates no action has been made.
24 const char* SyncActionToString(SyncAction action);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DJellyBeanContentView.java20 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
21 if (mContentViewCore.supportsAccessibilityAction(action)) {
22 return mContentViewCore.performAccessibilityAction(action, arguments);
25 return super.performAccessibilityAction(action, arguments);
/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/third_party/WebKit/Source/core/frame/
H A DDOMWindowTimers.cpp43 int setTimeout(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
45 return DOMTimer::install(eventTarget.executionContext(), action, timeout, true);
48 int setInterval(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
50 return DOMTimer::install(eventTarget.executionContext(), action, timeout, false);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContextMenuItem.cpp33 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
35 , m_action(action)
44 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
46 , m_action(action)
53 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
55 , m_action(action)
88 void ContextMenuItem::setAction(ContextMenuAction action) argument
90 m_action = action;
93 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Devent.hpp54 typedef std::function<void (clover::event &)> action; typedef in struct:_cl_event
57 action action_ok, action action_fail);
79 action action_ok;
80 action action_fail;
101 action action = [](event &){});
129 bool trigger, action action = [](event &){});
/external/clang/test/CodeGen/
H A D2009-05-04-EnumInreg.c16 // CHECK: i32 inreg %action
17 int kobject_uevent(struct kobject *kobj, enum kobject_action action) {} argument
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Devent.hpp54 typedef std::function<void (clover::event &)> action; typedef in struct:_cl_event
57 action action_ok, action action_fail);
79 action action_ok;
80 action action_fail;
101 action action = [](event &){});
129 bool trigger, action action = [](event &){});

Completed in 2061 milliseconds

1234567891011>>