HomeSort by relevance Sort by last modified time
    Searched refs:click (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/skia/src/views/
SkView.cpp 316 SkView::Click::Click(SkView* target)
325 SkView::Click::~Click()
330 void SkView::Click::resetType()
340 bool SkView::Click::isType(const char type[]) const
354 void SkView::Click::setType(const char type[])
360 void SkView::Click::copyType(const char type[])
375 SkView::Click* SkView::findClickHandler(SkScalar x, SkScalar y, unsigned modi) {
391 Click* click = child->findClickHandler(p.fX, p.fY, modi) local
    [all...]
SkWindow.cpp 361 bool SkWindow::handleClick(int x, int y, Click::State state, void *owner,
366 bool SkWindow::onDispatchClick(int x, int y, Click::State state,
370 // First, attempt to find an existing click with this owner.
380 case Click::kDown_State: {
385 Click* click = this->findClickHandler(SkIntToScalar(x), local
388 if (click) {
389 click->fOwner = owner;
390 *fClicks.append() = click;
391 SkView::DoClickDown(click, x, y, modifierKeys)
    [all...]
  /external/skia/legacy/src/views/
SkView.cpp 313 SkView::Click::Click(SkView* target)
322 SkView::Click::~Click()
327 void SkView::Click::resetType()
337 bool SkView::Click::isType(const char type[]) const
351 void SkView::Click::setType(const char type[])
357 void SkView::Click::copyType(const char type[])
372 SkView::Click* SkView::findClickHandler(SkScalar x, SkScalar y)
387 Click* click = child->findClickHandler(p.fX, p.fY) local
    [all...]
SkWindow.cpp 362 bool SkWindow::handleClick(int x, int y, Click::State state, void *owner) {
366 bool SkWindow::onDispatchClick(int x, int y, Click::State state,
370 // First, attempt to find an existing click with this owner.
380 case Click::kDown_State: {
385 Click* click = this->findClickHandler(SkIntToScalar(x), local
388 if (click) {
389 click->fOwner = owner;
390 *fClicks.append() = click;
391 SkView::DoClickDown(click, x, y)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
WarnedListPreference.java 30 // Ignore this until an explicit call to click()
33 public void click() { method in class:WarnedListPreference
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
SetTwoMinuteAlarm.java 58 allAppsButton.click();
65 appsTab.click();
72 clockApp.click();
97 setAlarm.click();
112 new UiObject(minuteIncreaseButtonSelector).click();
115 // few confirmations to click thru
120 doneButton.click();
122 okButton.click(); // let it fail if neither exists
131 * Helper to click on objects that match the content-description text
141 * Helper to click on object that match the text valu
    [all...]
LogBuildNumber.java 80 allAppsButton.click();
87 appsTab.click();
94 settingsApp.click();
117 obj.click();
LaunchSettings.java 47 //The operation below expects the click will result a new window.
51 // WIDGETS. We will want to click the APPS just so we're sure apps and
58 // want to be certain that we click on the tab "Apps", we can use the
73 // The operation below we only cause a content change so a click() is good
74 appsTab.click();
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 124 submitButton.click();
136 getObjectByText("OK").click(); method
146 getObjectByDescription("Button 1").click(); method
148 getObjectByDescription("Button 2").click(); method
150 getObjectByDescription("Button 3").click(); method
161 getObjectByText("Button 1").click(); method
163 getObjectByText("Button 2").click(); method
165 getObjectByText("Button 3").click(); method
176 getObjectByIndex(android.widget.Button.class.getName(), 0).click(); method
178 getObjectByIndex(android.widget.Button.class.getName(), 1).click(); method
180 getObjectByIndex(android.widget.Button.class.getName(), 2).click(); method
191 getObjectByInstance(android.widget.Button.class.getName(), 0).click(); method
193 getObjectByInstance(android.widget.Button.class.getName(), 1).click(); method
195 getObjectByInstance(android.widget.Button.class.getName(), 2).click(); method
225 getObjectByText("Finish").click(); method
281 getObjectByText("Submit").click(); method
291 getObjectByText("OK").click(); method
424 getObjectByText("Button").click(); method
643 getObjectByTextMatch(".*n\\\\s1$").click(); method
645 getObjectByTextMatch(".*n\\\\s2$").click(); method
647 getObjectByTextMatch(".*n\\\\s3$").click(); method
659 getObjectByDescriptionMatch(".*n\\\\s1$").click(); method
661 getObjectByDescriptionMatch(".*n\\\\s2$").click(); method
663 getObjectByDescriptionMatch(".*n\\\\s3$").click(); method
1067 getObjectByText("OK").click(); method
    [all...]
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
DatePickerHelper.java 52 getNumberPickerIncrementButton(MONTH).click();
61 getNumberPickerDecrementButton(MONTH).click();
70 getNumberPickerIncrementButton(DAY).click();
79 getNumberPickerDecrementButton(DAY).click();
88 getNumberPickerIncrementButton(YEAR).click();
97 getNumberPickerDecrementButton(YEAR).click();
124 new UiObject(new UiSelector().text("Done")).click();
TimePickerHelper.java 54 getNumberPickerIncrementButton(HOUR).click();
63 getNumberPickerDecrementButton(HOUR).click();
72 getNumberPickerIncrementButton(MINUTE).click();
81 getNumberPickerDecrementButton(MINUTE).click();
85 getNumberPicker(MERIDIEM).getChild(new UiSelector().text("PM")).click();
89 getNumberPicker(MERIDIEM).getChild(new UiSelector().text("AM")).click();
116 new UiObject(new UiSelector().text("Done")).click();
  /external/chromium/chrome/browser/resources/
collected_cookies.js 60 $('block-button').addEventListener('click', handleBlockButtonClick);
61 $('allow-button').addEventListener('click', handleAllowButtonClick);
62 $('allow-this-session-button').addEventListener('click',
65 $('close-button').addEventListener('click', closeDialog);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
MenuInflaterTest.java 25 testMenuItem.click();
29 testMenuItem.click();
  /external/webkit/Source/WebCore/html/
HTMLButtonElement.idl 45 void click();
FileInputType.cpp 100 toRenderFileUploadControl(element()->renderer())->click();
HTMLElement.h 69 void click();
  /sdk/templates/docs/
default.js 26 $(this).click(function() {
74 .click(function() {
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 45 // Listen for a click on the camera icon. On that click, take a screenshot.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/view/
TestMenuTest.java 50 testMenuItem.click();
  /external/webkit/Source/WebCore/rendering/
RenderFileUploadControl.h 34 // associated with it to receive click/hover events.
43 void click();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 111 * Handles click on {@link Button}.
117 public void click(PropertyTable propertyTable, Property property) throws Exception { method in class:ButtonPropertyEditorPresentation
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLInputElement21.js 78 HTMLInputElement.click should change the state of checked on a radio button.
102 testNode.click();
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLInputElement21.js 78 HTMLInputElement.click should change the state of checked on a radio button.
102 testNode.click();
  /external/webkit/Source/WebCore/notifications/
Notification.h 87 DEFINE_ATTRIBUTE_EVENT_LISTENER(click);
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/
UiWatchers.java 158 buttonOK.click();

Completed in 544 milliseconds

1 2 3 4 5 6