Searched refs:perform (Results 1 - 25 of 83) sorted by relevance

1234

/external/droiddriver/src/io/appium/droiddriver/actions/
H A DEventAction.java32 public final boolean perform(UiElement element) { method in class:EventAction
33 return perform(element.getInjector(), element);
40 * @param element the UiElement to perform the action on
45 protected abstract boolean perform(InputInjector injector, UiElement element); method in class:EventAction
H A DEventUiElementActor.java31 uiElement.perform(ClickAction.SINGLE);
36 uiElement.perform(ClickAction.LONG);
41 uiElement.perform(ClickAction.DOUBLE);
46 uiElement.perform(SwipeAction.toScroll(direction));
H A DAction.java30 * @param element the Ui element to perform the action on
35 boolean perform(UiElement element); method in interface:Action
H A DClickAction.java43 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.DoubleClick
44 SINGLE.perform(element);
45 SINGLE.perform(element);
56 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.LongClick
72 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.SingleClick
H A DSingleKeyAction.java70 public boolean perform(InputInjector injector, UiElement element) { method in class:SingleKeyAction
H A DTextAction.java62 public boolean perform(InputInjector injector, UiElement element) {
/external/droiddriver/src/io/appium/droiddriver/actions/view/
H A DViewAction.java35 public final boolean perform(UiElement element) { method in class:ViewAction
36 return perform(((ViewElement) element).getRawElement(), element);
43 * @param element the UiElement to perform the action on
47 protected abstract boolean perform(View view, UiElement element); method in class:ViewAction
H A DCloseKeyboardAction.java57 protected boolean perform(View view, UiElement element) { method in class:CloseKeyboardAction
/external/droiddriver/src/io/appium/droiddriver/actions/accessibility/
H A DAccessibilityAction.java35 public final boolean perform(UiElement element) { method in class:AccessibilityAction
36 return perform(((UiAutomationElement) element).getRawElement(), element);
43 * @param element the UiElement to perform the action on
47 protected abstract boolean perform(AccessibilityNodeInfo node, UiElement element); method in class:AccessibilityAction
H A DAccessibilityUiElementActor.java31 uiElement.perform(AccessibilityClickAction.SINGLE);
36 uiElement.perform(AccessibilityClickAction.LONG);
41 uiElement.perform(AccessibilityClickAction.DOUBLE);
46 uiElement.perform(new AccessibilityScrollAction(direction));
H A DAccessibilityClickAction.java46 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { method in class:AccessibilityClickAction.DoubleClick
47 return SINGLE.perform(element) && SINGLE.perform(element);
57 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { method in class:AccessibilityClickAction.LongClick
72 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { method in class:AccessibilityClickAction.SingleClick
H A DAccessibilityScrollAction.java44 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { method in class:AccessibilityScrollAction
/external/droiddriver/src/io/appium/droiddriver/
H A DUiDevice.java47 boolean perform(Action action); method in interface:UiDevice
H A DUiElement.java33 * <p>UI elements are generally views. Users can get attributes and perform actions. Note that
144 boolean perform(Action action); method in interface:UiElement
/external/parameter-framework/asio/include/asio/detail/
H A Dreactor_op.hpp34 bool perform() function in class:asio::detail::reactor_op
H A Dposix_fd_set_adapter.hpp86 void perform(reactor_op_queue<socket_type>& operations, function in class:asio::detail::posix_fd_set_adapter
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactor_op.hpp34 bool perform() function in class:asio::detail::reactor_op
H A Dposix_fd_set_adapter.hpp86 void perform(reactor_op_queue<socket_type>& operations, function in class:asio::detail::posix_fd_set_adapter
/external/droiddriver/src/io/appium/droiddriver/base/
H A DBaseUiDevice.java56 // Cannot call perform(POWER_ON) because perform() checks the UiElement is visible.
57 POWER_ON.perform(getContext().getDriver().getInjector(), null);
70 perform(POWER_OFF);
76 perform(SingleKeyAction.BACK);
80 public boolean perform(Action action) { method in class:BaseUiDevice
81 return getContext().getDriver().getRootElement().perform(action);
H A DBaseUiElement.java170 public boolean perform(Action action) { method in class:BaseUiElement
171 Logs.call(this, "perform", action);
187 return action.perform(this);
220 perform(new TextAction(text));
230 SingleKeyAction.CTRL_MOVE_HOME.perform(injector, this);
233 SingleKeyAction.CTRL_MOVE_END.perform(injector, this);
235 SingleKeyAction.DELETE.perform(injector, this);
322 * Sets the validator to check when {@link #perform(Action)} is called.
/external/curl/tests/libtest/
H A Dlib536.c32 static int perform(CURLM *multi) function
104 res = perform(multi);
123 res = perform(multi);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dyjp-controller-api-redist.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/yourkit/ com/yourkit/api/ com/yourkit/runtime/ com/ ...
/external/curl/docs/cmdline-opts/
H A Dretry.d6 If a transient error is returned when curl tries to perform a transfer, it
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf23 // network, you might allow anyone to perform updates. To do that, you just
32 // perform updates in your dynamic zone, like this:
/external/drm_hwcomposer/
H A Dplatformnv.cpp105 int ret = gralloc_->perform(gralloc_, GRALLOC_MODULE_PERFORM_DRM_IMPORT,
188 gralloc_->perform(gralloc_, GRALLOC_MODULE_PERFORM_GET_IMPORTER_PRIVATE,
194 return gralloc_->perform(gralloc_,

Completed in 219 milliseconds

1234