HomeSort by relevance Sort by last modified time
    Searched full:button (Results 1151 - 1175 of 1669) sorted by null

<<41424344454647484950>>

  /frameworks/base/docs/html/guide/topics/ui/
layout-objects.jd 71 button, some labels and text boxes. The text boxes have their width set to <var>fill_parent</var>; other
183 &lt;Button android:id=&quot;@+id/ok&quot;
191 &lt;Button android:layout_width=&quot;wrap_content&quot;
  /frameworks/base/docs/html/guide/tutorials/notepad/
notepad-ex3.jd 30 <p>The current application has some problems &mdash; hitting the back button when editing
147 Button confirmButton = (Button) findViewById(R.id.confirm);
  /frameworks/base/docs/html/resources/tutorials/notepad/
notepad-ex3.jd 30 <p>The current application has some problems &mdash; hitting the back button when editing
147 Button confirmButton = (Button) findViewById(R.id.confirm);
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountSyncSettings.java 49 import android.widget.Button;
81 private Button mRemoveAccountButton;
160 mRemoveAccountButton = (Button) findViewById(R.id.remove_account_button);
  /packages/apps/Settings/src/com/android/settings/
SecuritySettings.java 393 public void onClick(DialogInterface dialog, int button) {
394 mSubmit = (button == DialogInterface.BUTTON_POSITIVE);
395 if (button == DialogInterface.BUTTON_NEUTRAL) {
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 256 public void onClick(DialogInterface dialogInterface, int button) {
257 if (button == WifiDialog.BUTTON_FORGET && mSelected != null) {
259 } else if (button == WifiDialog.BUTTON_SUBMIT && mDialog != null) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 37 import org.eclipse.swt.widgets.Button;
109 final Button browseButton = new Button(composite, SWT.PUSH);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 114 // this will make sure the dump hprof button is re-enabled for the
164 // this will make sure the dump hprof button is re-enabled for the
570 // force refresh of the button enabled state.
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 84 {logical joy, logical button}
595 if ( SDL_sscanf(name,"Analog %d-axis %*d-button %d-hat",
676 printf("Joystick has button: 0x%x\n", i);
686 printf("Joystick has button: 0x%x\n", i);
867 SDL_Joystick *joystick, Uint8 button, Uint8 state){
878 buttons = SDL_joylist[joystick->index].map->buttonmap+button;
  /external/quake/quake/src/QW/client/
vid_x.c 832 if (x_event.xbutton.button == 1)
834 else if (x_event.xbutton.button == 2)
836 else if (x_event.xbutton.button == 3)
844 if (x_event.xbutton.button == 1)
846 else if (x_event.xbutton.button == 2)
848 else if (x_event.xbutton.button == 3)
  /external/quake/quake/src/WinQuake/
vid_sunx.cpp 942 //printf( "button %d down\n", x_event.xbutton.button );
943 Key_Event( K_MOUSE1 + x_event.xbutton.button - 1, true );
946 //printf( "button %d up\n", x_event.xbutton.button );
947 Key_Event( K_MOUSE1 + x_event.xbutton.button - 1, false );
vid_sunxil.cpp 864 if (x_event.xbutton.button == 1)
866 else if (x_event.xbutton.button == 2)
868 else if (x_event.xbutton.button == 3)
876 if (x_event.xbutton.button == 1)
878 else if (x_event.xbutton.button == 2)
880 else if (x_event.xbutton.button == 3)
vid_x.cpp 907 if (x_event.xbutton.button == 1)
909 else if (x_event.xbutton.button == 2)
911 else if (x_event.xbutton.button == 3)
919 if (x_event.xbutton.button == 1)
921 else if (x_event.xbutton.button == 2)
923 else if (x_event.xbutton.button == 3)
  /external/webkit/WebCore/inspector/front-end/
ScriptsPanel.js 37 this.backButton = document.createElement("button");
46 this.forwardButton = document.createElement("button");
72 this.pauseButton = document.createElement("button");
81 this.stepOverButton = document.createElement("button");
90 this.stepIntoButton = document.createElement("button");
99 this.stepOutButton = document.createElement("button");
    [all...]
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.cpp 133 QPushButton button; local
134 button.setAttribute(Qt::WA_MacSmallSize);
135 QFont defaultButtonFont = QApplication::font(&button);
399 // The Mac ports ignore the specified height for <input type="button"> elements
440 // Fake a button rect here, since we're just computing deltas
444 // Default padding is based on the button margin pixel metric
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 328 gint button = -1; local
333 // DOM button values are 0, 1 and 2 for left, middle and right buttons.
335 button = mouseEvent->button() + 1;
354 "button", button,
    [all...]
  /frameworks/base/core/res/res/values/
themes.xml 66 <item name="textAppearanceButton">@android:style/TextAppearance.Widget.Button</item>
73 <!-- Button styles -->
74 <item name="buttonStyle">@android:style/Widget.Button</item>
76 <item name="buttonStyleSmall">@android:style/Widget.Button.Small</item>
77 <item name="buttonStyleInset">@android:style/Widget.Button.Inset</item>
79 <item name="buttonStyleToggle">@android:style/Widget.Button.Toggle</item>
  /development/simulator/app/
PhoneData.h 177 // find the first button that covers the specified coords
180 // find the first button with a matching key code
  /external/quake/quake/src/QW/progs/
plats.qc 139 If the plat is the target of another trigger or button, it will start out disabled in the extended position until it is trigger, when it will lower and become a normal plat.
286 If the train is the target of a button or trigger, it will not begin moving until activated.
  /external/webkit/WebCore/html/
HTMLInputElement.h 54 BUTTON,
125 bool isTextButton() const { return m_type == SUBMIT || m_type == RESET || m_type == BUTTON; }
  /external/webkit/WebKit/chromium/src/
AssertMatchingEnums.cpp 238 COMPILE_ASSERT_MATCHING_ENUM(WebInputElement::Button, HTMLInputElement::BUTTON);
  /external/webkit/WebKit/mac/Panels/
WebAuthenticationPanel.m 71 // crash later when finishing button hit tracking. So we make
90 // crash later when finishing button hit tracking. So we make
  /frameworks/base/cmds/dumpstate/
dumpstate.c 146 printf("Button brightness=");
147 dump_file(NULL, "/sys/class/leds/button-backlight/brightness");
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 112 * be available as an accessory button when the input method is full-screen.
172 * when the user presses its button that is delivered back with
  /frameworks/base/docs/html/guide/topics/views/
ui-xml.jd 102 &lt;Button id=&quot;@+id/ok&quot;
110 &lt;Button android:layout_width=&quot;wrap_content&quot;

Completed in 583 milliseconds

<<41424344454647484950>>