/external/chromium_org/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/ |
popup.js | 6 function click(e) { function 15 divs[i].addEventListener('click', click);
|
/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();
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
MenuInflaterTest.java | 25 testMenuItem.click(); 29 testMenuItem.click();
|
PreferenceTest.java | 208 assertThat( shadow.click(), equalTo(true));
|
/external/droiddriver/samples/testapp/tests/src/com/google/android/apps/common/testing/ui/testapp/ |
AbstractSendActivityTest.java | 35 driver.on(By.text(activity.getString(R.string.button_send))).click(); 40 driver.on(By.xpath("//ScrollView//Button")).click(); method
|
/cts/tests/uiautomator/src/com/android/cts/uiautomatortest/ |
CtsUiAutomatorTest.java | 127 submitButton.click(); 139 getObjectByText("OK").click(); method 149 getObjectByDescription("Button 1").click(); method 151 getObjectByDescription("Button 2").click(); method 153 getObjectByDescription("Button 3").click(); method 164 getObjectByText("Button 1").click(); method 166 getObjectByText("Button 2").click(); method 168 getObjectByText("Button 3").click(); method 179 getObjectByIndex(android.widget.Button.class.getName(), 0).click(); method 181 getObjectByIndex(android.widget.Button.class.getName(), 1).click(); method 183 getObjectByIndex(android.widget.Button.class.getName(), 2).click(); method 194 getObjectByInstance(android.widget.Button.class.getName(), 0).click(); method 196 getObjectByInstance(android.widget.Button.class.getName(), 1).click(); method 198 getObjectByInstance(android.widget.Button.class.getName(), 2).click(); method 228 getObjectByText("Finish").click(); method 284 getObjectByText("Submit").click(); method 294 getObjectByText("OK").click(); method 427 getObjectByText("Button").click(); method 646 getObjectByTextMatch(".*n\\\\s1$").click(); method 648 getObjectByTextMatch(".*n\\\\s2$").click(); method 650 getObjectByTextMatch(".*n\\\\s3$").click(); method 662 getObjectByDescriptionMatch(".*n\\\\s1$").click(); method 664 getObjectByDescriptionMatch(".*n\\\\s2$").click(); method 666 getObjectByDescriptionMatch(".*n\\\\s3$").click(); method 1070 getObjectByText("OK").click(); method [all...] |
/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/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/view/ |
TestMenuTest.java | 50 testMenuItem.click();
|
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/ |
UiWatchers.java | 158 buttonOK.click();
|
/external/droiddriver/src/com/google/android/droiddriver/ |
UiElement.java | 158 * Clicks this element. The click will be at the center of the visible 163 void click(); method in interface:UiElement 166 * Long-clicks this element. The click will be at the center of the visible 174 * Double-clicks this element. The click will be at the center of the visible
|
/external/droiddriver/src/com/google/android/droiddriver/base/ |
AbstractUiElement.java | 107 public void click() { method in class:AbstractUiElement
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
UiObject.java | 364 * the click coordinates should be adjusted. 381 * Performs a click at the center of the visible bounds of the UI element represented 388 public boolean click() throws UiObjectNotFoundException { method in class:UiObject 414 * Performs a click at the center of the visible bounds of the UI element represented 417 * This method differ from {@link UiObject#click()} only in that this method waits for a 418 * a new window transition as a result of the click. Some examples of a window transition: 581 * When you call this method, the method first simulates a {@link #click()} on 620 // long click left + center 630 selectAll.click(); [all...] |
UiDevice.java | 399 * Perform a click at arbitrary coordinates specified by the user 403 * @return true if the click succeeded else false 406 public boolean click(int x, int y) { method in class:UiDevice
|
/external/chromium_org/third_party/skia/src/views/ |
SkWindow.cpp | 360 bool SkWindow::handleClick(int x, int y, Click::State state, void *owner, 365 bool SkWindow::onDispatchClick(int x, int y, Click::State state, 369 // First, attempt to find an existing click with this owner. 379 case Click::kDown_State: { 384 Click* click = this->findClickHandler(SkIntToScalar(x), local 387 if (click) { 388 click->fOwner = owner; 389 *fClicks.append() = click; 390 SkView::DoClickDown(click, x, y, modifierKeys) [all...] |
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, unsigned modi) { 388 Click* click = child->findClickHandler(p.fX, p.fY, modi) local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPreference.java | 181 public boolean click() { method in class:ShadowPreference
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/ |
TestMenuItem.java | 194 public void click() { method in class:TestMenuItem
|
/external/skia/src/views/ |
SkWindow.cpp | 360 bool SkWindow::handleClick(int x, int y, Click::State state, void *owner, 365 bool SkWindow::onDispatchClick(int x, int y, Click::State state, 369 // First, attempt to find an existing click with this owner. 379 case Click::kDown_State: { 384 Click* click = this->findClickHandler(SkIntToScalar(x), local 387 if (click) { 388 click->fOwner = owner; 389 *fClicks.append() = click; 390 SkView::DoClickDown(click, x, y, modifierKeys) [all...] |
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, unsigned modi) { 388 Click* click = child->findClickHandler(p.fX, p.fY, modi) local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGElementInstance.h | 103 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), click); member in class:WebCore::SVGElementInstance
|
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/ |
api.js | 397 * Simulate a click on an element. 402 cvox.Api.click = function(targetElement, shiftKey) {
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLElement.cpp | 219 attributeNameToEventNameMap.set(onclickAttr.localName(), EventTypeNames::click); 517 // i.e. checks if click or keyboard event handler is specified. 519 // which web designer meant for being active (made them respond to click events). 523 return hasEventListeners(EventTypeNames::click) 591 void HTMLElement::click() function in class:WebCore::HTMLElement [all...] |