/prebuilt/windows/sdl/host/include/SDL/ |
SDL_mouse.h | 55 * The current button state is returned as a button bitmask, which can 63 * The current button state is returned as a button bitmask, which can 117 Button 1: Left mouse button 118 Button 2: Middle mouse button 119 Button 3: Right mouse button [all...] |
/prebuilt/windows/sdl/include/SDL/ |
SDL_mouse.h | 51 * The current button state is returned as a button bitmask, which can 59 * The current button state is returned as a button bitmask, which can 113 Button 1: Left mouse button 114 Button 2: Middle mouse button 115 Button 3: Right mouse button [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
View_IdsTest.java | 30 import android.widget.Button; 57 Button buttonOk = (Button) activity.findViewById(R.id.ok); 58 Button buttonCancel = (Button) activity.findViewById(R.id.cancel); 77 assertSame(buttonCancel, (Button) activity.findViewById(0x9999));
|
/development/samples/ApiDemos/res/layout/ |
scroll_view_1.xml | 34 <Button 44 <Button 54 <Button 64 <Button 74 <Button 84 <Button
|
status_bar_notifications.xml | 36 <Button 42 <Button 48 <Button 67 <Button 73 <Button 79 <Button 98 <Button 104 <Button 110 <Button 129 <Button [all...] |
wallpaper_2.xml | 14 <Button 20 <Button
|
activity_animation.xml | 30 <Button android:id="@+id/fade_animation" 34 </Button> 36 <Button android:id="@+id/zoom_animation" 39 </Button>
|
alarm_controller.xml | 30 <Button android:id="@+id/one_shot" 34 </Button> 36 <Button android:id="@+id/start_repeating" 40 <Button android:id="@+id/stop_repeating"
|
/external/webkit/WebCore/manual-tests/ |
scrollbar-hover-active.html | 8 div::-webkit-scrollbar-button { 14 div::-webkit-scrollbar-button:-webkit-decrement:-webkit-start { 19 div::-webkit-scrollbar-button:-webkit-increment:-webkit-start { 24 div::-webkit-scrollbar-button:-webkit-decrement:-webkit-end { 29 div::-webkit-scrollbar-button:-webkit-increment:-webkit-end { 34 div::-webkit-scrollbar-button:hover {
|
input-type-text-unconfirmed-inline-input.html | 16 <p>Enter some text using inline input (e.g. Kotoeri Hiragana) and click the button without closing the input area.</p> 17 <p><input type=text id=input value="" size=57><input type=button value="test" onClick="dump(document.getElementById('input').value)"></div>
|
remove-form-node-with-radio-buttons-crash.html | 29 <div>This is a test for http://bugs.webkit.org/show_bug.cgi?id=12938 - to test this, press the "Run Test" button and wait for a couple of minutes - the browser should not crash.</div>
30 <input type="button" onclick="runTest()" value="Run Test">
|
window-close-during-parsing.html | 7 <input type=button value="Run Test 1" onclick='window.open("resources/window-close-during-parsing-popup1.html")'> 13 <input type=button value="Run Test 2" onclick='window.open("resources/window-close-during-parsing-popup2.html")'>
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
ListWithFooterViewAndNewLabels.java | 27 import android.widget.Button; 45 Button footerButton = new Button(this); 57 Button topButton = (Button) findViewById(R.id.button);
|
ListOfEditTexts.java | 51 // add a button above 52 Button buttonAbove = new Button(this); 57 buttonAbove.setText("button above list"); 81 // add button below 82 Button buttonBelow = new Button(this); 87 buttonBelow.setText("button below list");
|
/development/apps/Development/src/com/android/development/ |
Connectivity.java | 48 import android.widget.Button; 69 private Button mEnableWifiButton; 70 private Button mDisableWifiButton; 72 private Button mStartDelayedCycleButton; 73 private Button mStopDelayedCycleButton; 81 private Button mStartScreenCycleButton; 82 private Button mStopScreenCycleButton; 90 private Button mStartMmsButton; 91 private Button mStopMmsButton; 92 private Button mStartHiPriButton [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
TutorialJAJP.java | 221 Bubble button; local 227 button = new Bubble(context, inputView, 230 mBubbles.add(button); 236 button = new Bubble(context, inputView, 239 mBubbles.add(button); 245 button = new Bubble(context, inputView, 248 mBubbles.add(button); 254 button = new Bubble(context, inputView, 257 mBubbles.add(button); 265 button = new Bubble(context, inputView, [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
SurfaceViewOverlay.java | 24 import android.widget.Button; 56 Button visibleButton = (Button) findViewById(R.id.vis); 57 Button invisibleButton = (Button) findViewById(R.id.invis); 58 Button goneButton = (Button) findViewById(R.id.gone); 60 // Wire each button to a click listener
|
/development/samples/JetBoy/src/com/example/android/jetboy/ |
JetBoy.java | 29 import android.widget.Button; 40 // the play start button 41 private Button mButton; 44 private Button mButtonRetry; 66 // look up the happy shiny button 67 mButton = (Button)findViewById(R.id.Button01); 70 mButtonRetry = (Button)findViewById(R.id.Button02); 108 // this is a retry button
|
/external/webkit/WebCore/dom/ |
MouseEvent.cpp | 39 unsigned short button, PassRefPtr<EventTarget> relatedTarget, 43 , m_button(button == (unsigned short)-1 ? 0 : button) 44 , m_buttonDown(button != (unsigned short)-1) 57 unsigned short button, PassRefPtr<EventTarget> relatedTarget) 70 m_button = button == (unsigned short)-1 ? 0 : button; 71 m_buttonDown = button != (unsigned short)-1;
|
/external/webkit/WebCore/manual-tests/inspector/ |
hidden-evals.html | 24 <li><p>click this button: <input id=button type=button value="click me"> 40 resume button 44 resume button 97 var button = document.getElementById("button"); 99 button.addEventListener("click", clickHandler, false);
|
/frameworks/base/core/java/android/text/method/ |
CharacterPickerDialog.java | 34 import android.widget.Button; 47 private Button mCancelButton; 81 mCancelButton = (Button) findViewById(R.id.cancel); 105 * Handles clicks on the Cancel button. 110 } else if (v instanceof Button) { 111 CharSequence result = ((Button) v).getText(); 123 Button b = (Button)
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
TallTextAboveButton.java | 23 * of the screen followed by a button. 29 .addButton("button", 0.2f);
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/ |
ButtonsWithTallTextViewInBetweenTest.java | 26 import android.widget.Button; 34 private Button mTopButton; 68 assertTrue("top button should be shorter than max scroll amount", 71 assertTrue("bottom button should be further than max scroll amount off screen", 84 assertTrue("top button should be off screen", 87 assertFalse("top button should have lost focus", 134 assertTrue("bottom button should be off screen", 137 assertFalse("bottom button should have lost focus",
|
/packages/apps/AccountsAndSyncSettings/src/com/android/settings/ |
AccountSyncSettingsInAddAccount.java | 10 * This is AccountSyncSettings with 'remove account' button always gone and 11 * a wizard-like button bar to complete the activity.
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ConfirmRateLimitActivity.java | 35 import android.widget.Button; 53 Button button = (Button) findViewById(R.id.btn_yes); local 54 button.setOnClickListener(new OnClickListener() { 60 button = (Button) findViewById(R.id.btn_no); 61 button.setOnClickListener(new OnClickListener() {
|