/external/chromium_org/third_party/WebKit/ManualTests/ |
update-empty-popup.html | 10 1. Click on the empty popup button.<br> 11 2. Click on the Test button.
|
viewport-width-test-after-history-navigation.html | 19 // Assigning to window.location does not create a history entry, so instead link click is simulated. 21 evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
|
scrollIntoView-vertical.html | 10 Following the numbered steps, click each button to scroll the specified colored box into view.</p> 20 <input type="button" value="STEP 1: click to scroll yellow box to BOTTOM of view" onclick="document.getElementById('yellowbox').scrollIntoView(false);"> 21 <input type="button" value="STEP 4: click to scroll orange box to TOP of view" onclick="document.getElementById('orangebox').scrollIntoView(true);"> 27 <input type="button" value="STEP 3: click to scroll purple box to TOP of view" onclick="document.getElementById('purplebox').scrollIntoView();"> 33 <input type="button" value="STEP 2: click to scroll green box to TOP of view" onclick="document.getElementById('greenbox').scrollIntoView(true);">
|
/external/chromium_org/ui/message_center/ |
notification_delegate.cc | 38 void HandleNotificationClickedDelegate::Click() { 66 void HandleNotificationButtonClickDelegate::Click() {
|
notification_delegate_unittest.cc | 51 delegate->Click(); 64 delegate->Click();
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
MenuInflaterTest.java | 25 testMenuItem.click(); 29 testMenuItem.click();
|
/frameworks/base/docs/html/guide/topics/ui/controls/ |
togglebutton.jd | 9 <li><a href="#HandlingEvents">Responding to Click Events</a> 43 <h2 id="HandlingEvents">Responding to Click Events</h2> 46 the object receives an on-click event.</p> 48 <p>To define the click event handler, add the <code><a 52 to a click event. The {@link android.app.Activity} hosting the layout must then implement the 69 click event:</p> 102 <p>You can also declare a click event handler programmatically rather than in an XML layout. This 105 declare the click behavior in a {@link android.app.Fragment} subclass.</p>
|
/frameworks/base/docs/html/tools/help/ |
avd-manager.jd | 11 <li>In Eclipse: select <strong>Window > Android Virtual Device Manager</strong>, or click 14 <li>In Android Studio: select <strong>Tools > Android > AVD Manager</strong>, or click
|
/frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/ |
EspressoTest.java | 23 import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.click; 70 .perform(click()); 73 .perform(click()); method 81 .perform(click()); 83 .perform(click()); 86 .perform(click()); method 94 .perform(click()); 127 onView(withText("does not exist")).perform(click()); method
|
/frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/action/ |
KeyEventActionIntegrationTest.java | 22 import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.click; 78 onData(allOf(instanceOf(Map.class), hasValue("SendActivity"))).perform(click()); method 88 onData(allOf(instanceOf(Map.class), hasValue("SendActivity"))).perform(click()); method 112 onView(withId(R.id.new_fragment)).perform(click()).perform(click()).perform(click()); 142 onData(allOf(instanceOf(Map.class), hasValue("SendActivity"))).perform(click()); method 143 onView(withId(R.id.enter_data_edit_text)).perform(click());
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
ContactBadge.java | 24 * A {@link QuickContactBadge} that allows setting a click listener. 26 * so this class adds a separate click listener field.
|
/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
hidden-evals.html | 24 <li><p>click this button: <input id=button type=button value="click me"> 36 <li><p>you should be able to click on the functions that exist in the 'hidden' 37 resources from the Call Stack, and be shown the source; click around the 99 button.addEventListener("click", clickHandler, false);
|
/frameworks/testing/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/ |
MenuTest.java | 20 import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.click; 57 onView(withId(R.id.popup_button)).perform(click()); 58 onView(withText(R.string.popup_item_1_text)).check(matches(isDisplayed())).perform(click()); 66 onView(withText(R.string.context_item_2_text)).check(matches(isDisplayed())).perform(click()); 74 onView(withText(R.string.options_item_3_text)).check(matches(isDisplayed())).perform(click());
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe.js | 48 select.addEventListener('click', sendCallback); 102 'click', Oobe.handleAccessibilityLinkClick); 104 'click', Oobe.handleAccessibilityLinkClick); 106 'click', Oobe.handleAccessibilityLinkClick); 119 $('high-contrast').addEventListener('click', 121 $('large-cursor').addEventListener('click', 123 $('spoken-feedback').addEventListener('click', 125 $('screen-magnifier').addEventListener('click', 127 $('virtual-keyboard').addEventListener('click', 131 // keydown or click inside menu [all...] |
oobe_screen_eula.js | 15 $('stats-help-link').addEventListener('click', function(event) { 19 'click', function(event) { 25 'click', function(event) { 82 backButton.addEventListener('click', function(e) { 93 acceptButton.addEventListener('click', function(e) { 114 $('eula-chrome-credits-link').addEventListener('click', 118 $('eula-chromeos-credits-link').addEventListener('click',
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/ |
this.js | 242 element.addEventListener("click", callbackNoThis); 243 element.addEventListener("click", callbackNoThis, true); 244 element.addEventListener("click", callbackNoThis, false); 245 element.addEventListener("click", callbackNoThis, isMultiline); // OK - ignored. 247 element.addEventListener("click", callbackNoThis, this); // ERROR. 249 element.addEventListener("click", callbackWithThis, this); 250 element.addEventListener("click", callbackWithThis, foo); // OK - ignored. 251 element.addEventListener("click", callbackWithThis, isMultiline); // OK - ignored. 253 element.addEventListener("click", callbackWithThis, true); // ERROR. 254 element.addEventListener("click", callbackWithThis, false); // ERROR [all...] |
/external/chromium_org/third_party/skia/experimental/DrawingBoard/ |
SampleDrawingClient.cpp | 141 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) { 142 return new Click(this); 145 virtual bool onClick(SkView::Click* click) { 146 switch (click->fState) { 147 case SkView::Click::kDown_State: 148 fCurrLine.moveTo(click->fCurr); 153 case SkView::Click::kMoved_State: 154 fCurrLine.lineTo(click->fCurr); 156 case SkView::Click::kUp_State [all...] |
/external/chromium_org/third_party/skia/samplecode/ |
SampleRotateCircles.cpp | 325 class MyClick : public Click { 328 MyClick(SkView* target, int index) : Click(target), fIndex(index) {} 331 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, 341 virtual bool onClick(Click* click) { 342 int index = ((MyClick*)click)->fIndex; 343 fPts[index].offset(SkIntToScalar(click->fICurr.fX - click->fIPrev.fX), 344 SkIntToScalar(click->fICurr.fY - click->fIPrev.fY)) [all...] |
/external/skia/experimental/DrawingBoard/ |
SampleDrawingClient.cpp | 141 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) { 142 return new Click(this); 145 virtual bool onClick(SkView::Click* click) { 146 switch (click->fState) { 147 case SkView::Click::kDown_State: 148 fCurrLine.moveTo(click->fCurr); 153 case SkView::Click::kMoved_State: 154 fCurrLine.lineTo(click->fCurr); 156 case SkView::Click::kUp_State [all...] |
/external/skia/samplecode/ |
SampleRotateCircles.cpp | 325 class MyClick : public Click { 328 MyClick(SkView* target, int index) : Click(target), fIndex(index) {} 331 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, 341 virtual bool onClick(Click* click) { 342 int index = ((MyClick*)click)->fIndex; 343 fPts[index].offset(SkIntToScalar(click->fICurr.fX - click->fIPrev.fX), 344 SkIntToScalar(click->fICurr.fY - click->fIPrev.fY)) [all...] |
/frameworks/base/docs/html/sdk/installing/ |
studio-debug.jd | 72 <li>Click <strong>Debug</strong> <img src="{@docRoot}images/tools/as-debugbutton.png" 76 <li>Click <strong>OK</strong>. Your app starts on the selected device.</li> 81 instead. Click the ellipsis <img src="{@docRoot}images/tools/as-launchavdm.png" 86 <em>Debug</em> window manually, click <strong>Debug</strong> 161 <li>Click <strong>Android</strong> <img src="{@docRoot}images/tools/as-android.png" alt="" 164 <li>If the system log is empty in the <em>Logcat view</em>, click <strong>Restart</strong> 183 <em>Devices</em> view and then click <strong>Only Show Logcat from Selected 186 is not available, click <strong>Restore Devices View</strong> 207 <li>Locate the line where you want to set a breakpoint and click on it.</li> 208 <li>Click on the yellow portion of the side bar to the left of this line, as shown in figure 5.</li [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
menu_model_adapter_test.cc | 244 Click(button_, CreateEventTask(this, &MenuModelAdapterTest::Step1)); 254 // Click the first item to open the submenu. 257 Click(item, CreateEventTask(this, &MenuModelAdapterTest::Step2)); 281 // Click the button to exit the menu. 282 Click(button_, CreateEventTask(this, &MenuModelAdapterTest::Step4)); 296 // Generate a mouse click on the specified view and post a new task. 297 virtual void Click(views::View* view, const base::Closure& next) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/ |
loupe.js | 42 $('expected-image').addEventListener('click', handleOutputClick); 43 $('actual-image').addEventListener('click', handleOutputClick); 44 $('diff-canvas').addEventListener('click', handleOutputClick); 47 $('expected-loupe').addEventListener('click', handleLoupeClick); 48 $('actual-loupe').addEventListener('click', handleLoupeClick); 49 $('diff-loupe').addEventListener('click', handleLoupeClick); 52 $('loupe-close').addEventListener('click', hide);
|
/external/chromium_org/ui/webui/resources/js/cr/ |
ui.js | 173 * (http://crbug.com/140364). To fix it we freeze click handling for 175 * @param {MouseEvent} e Initial click event. 187 // Swallow the click since it's a click inside the doubleclick timeout. 192 doc.removeEventListener('click', onclick, true); 195 // The following 'click' event (if e.type == 'mouseup') mustn't be taken 199 doc.addEventListener('click', onclick, true);
|
/external/libmtp/ |
README.windows.txt | 38 5. Select your music device from the list and click Action -> Update Driver, Choose "No, not this time" if prompted to connect to microsoft.
41 8. Click the "Have Disk..." button in the bottom right corner of the prompt
43 10. The name of your music device should appear in the prompt, click it and click "Next>" (Ignore any prompts about Driver Signing, continuing
45 11. Click finish to end the driver install process.
50 2. Select your music device, right click on it and click "Properties"
|