HomeSort by relevance Sort by last modified time
    Searched refs:buttons (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorPickerDialog.java 111 void toggleClick(ToggleButton v, int[] buttons, boolean isChecked) {
117 for (int i = 0; i < buttons.length; i++) {
118 if (id != buttons[i]) {
119 ToggleButton b = (ToggleButton) findViewById(buttons[i]);
  /external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_api.cc 266 if (options->buttons.get()) {
267 // Currently we allow up to 2 buttons.
268 size_t number_of_buttons = options->buttons->size();
273 UTF8ToUTF16((*options->buttons)[i]->title));
274 NotificationBitmapToGfxImage((*options->buttons)[i]->icon_bitmap.get(),
276 optional_fields.buttons.push_back(info);
368 if (options->buttons) {
369 // Currently we allow up to 2 buttons.
370 size_t number_of_buttons = options->buttons->size();
375 UTF8ToUTF16((*options->buttons)[i]->title))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_events.c 117 int i, buttons; local
160 buttons = ph2sdl_mousebutton(pointerEvent->buttons);
161 if (buttons != 0)
163 posted = SDL_PrivateMouseButton(SDL_PRESSED, buttons, 0, 0);
171 buttons = ph2sdl_mousebutton(pointerEvent->buttons);
172 if (phevent->subtype == Ph_EV_RELEASE_REAL && buttons != 0)
174 posted = SDL_PrivateMouseButton(SDL_RELEASED, buttons, 0, 0);
186 posted = SDL_PrivateMouseButton(SDL_RELEASED, buttons, 0, 0)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglevents.c 101 char buttons; local
109 buttons = mouseinfo.u.data.buttons;
119 state_changed = button_state ^ buttons;
122 if (buttons & (1<<i)) {
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 73 final TypedArray buttons = getResources().obtainTypedArray(R.array.buttons); local
74 for (int i = 0; i < buttons.length(); i++) {
75 setOnClickListener(null, buttons.getResourceId(i, 0));
77 buttons.recycle();
  /external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
popup.js 66 buttons: {
81 buttons: {
98 show: 'slide', buttons: {
  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/example_zipper/basic/
popup.js 66 buttons: {
81 buttons: {
98 show: 'slide', buttons: {
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortConfigDialog.java 139 // center part with the list on the left and the buttons
163 // right part: buttons
164 Composite buttons = new Composite(main, SWT.NONE); local
165 buttons.setLayoutData(new GridData(GridData.FILL_VERTICAL));
166 buttons.setLayout(new GridLayout(1, true));
168 Button newButton = new Button(buttons, SWT.NONE);
187 final Button editButton = new Button(buttons, SWT.NONE);
211 final Button deleteButton = new Button(buttons, SWT.NONE);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
display_manager.js 141 * Hides/shows header (Shutdown/Add User/Cancel buttons).
228 * Appends buttons to the button strip.
229 * @param {Array.<HTMLElement>} buttons Array with the buttons to append.
230 * @param {string} screenId Id of the screen that buttons belong to.
232 appendButtons_: function(buttons, screenId) {
233 if (buttons) {
236 for (var i = 0; i < buttons.length; ++i)
237 buttonStrip.appendChild(buttons[i]);
243 * Disables or enables control buttons on the specified screen
    [all...]
  /external/chromium_org/chrome/browser/resources/
gesture_config.css 20 .buttons-pane {
  /external/chromium_org/chrome/browser/resources/options/chromeos/
display_overscan.css 61 #display-overscan-buttons-spacer {
  /external/chromium_org/chrome/common/extensions/docs/static/js/
popup.js 11 // Set up the buttons to toggle the popup.
  /external/chromium_org/ash/system/chromeos/screen_security/
screen_share_tray_item.cc 65 data.buttons.push_back(message_center::ButtonInfo(
  /external/chromium_org/ash/system/locale/
locale_notification_controller.cc 103 optional.buttons.push_back(message_center::ButtonInfo(
  /external/chromium_org/ui/views/window/
dialog_client_view.cc 20 // The group used by the buttons. This name is chosen voluntarily big not to
66 const int buttons = GetDialogDelegate()->GetDialogButtons(); local
72 if (buttons & ui::DIALOG_BUTTON_OK) {
75 if (!(buttons & ui::DIALOG_BUTTON_CANCEL))
86 if (buttons & ui::DIALOG_BUTTON_CANCEL) {
99 // Use the escape key to close the window if there are no dialog buttons.
160 // Initialize the size to fit the buttons and extra view row.
173 // Inset the buttons and extra view.
209 // Layout the row containing the buttons and the extra view.
395 // NOTE: The insets only apply to the buttons, extra view, and footnote view
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
joystick.h 63 #define JSIOCGBUTTONS _IOR('j', 0x12, __u8) /* get number of buttons */
114 __s32 buttons; member in struct:JS_DATA_TYPE
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
joystick.h 63 #define JSIOCGBUTTONS _IOR('j', 0x12, __u8) /* get number of buttons */
114 __s32 buttons; member in struct:JS_DATA_TYPE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
joystick.h 63 #define JSIOCGBUTTONS _IOR('j', 0x12, __u8) /* get number of buttons */
114 __s32 buttons; member in struct:JS_DATA_TYPE
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
select_album_dialog.js 61 var buttons = this.document_.createElement('div');
62 buttons.className = 'select-album-dialog-buttons';
63 this.frame_.appendChild(buttons);
68 buttons.appendChild(this.okButton_);
75 buttons.appendChild(this.cancelButton_);
  /external/chromium_org/ui/message_center/views/
notification_view.cc 298 // NotificationButtons render the action buttons of notifications.
550 // Create action buttons if appropriate.
551 std::vector<ButtonInfo> buttons = notification.buttons(); local
552 for (size_t i = 0; i < buttons.size(); ++i) {
557 ButtonInfo button_info = buttons[i];
565 // for proper layout logic and it also allows the close and expand buttons to
668 // called. But buttons are exceptions, they'll have their own event handlings.
669 std::vector<views::View*> buttons(action_buttons_);
670 buttons.push_back(close_button())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.cpp 845 // HTML spec says that buttons must have names to be considered successful.
894 if (CheckedRadioButtons* buttons = checkedRadioButtons())
895 buttons->updateCheckedState(this);
    [all...]
  /frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
KeyguardTestActivity.java 144 final int[] buttons = { local
148 for (int i = 0; i < buttons.length; i++) {
149 findViewById(buttons[i]).setOnClickListener(this);
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 188 #internetPage[accesslocked] #wireless-buttons,
215 #wireless-buttons > * > button {
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.h 22 // A controller for the pop-up windows from bookmark folder buttons
46 // Bookmark bar folder controllers own their buttons. When doing
65 // Our buttons. We do not have buttons for nested folders.
74 // The main view of this window (where the buttons go) within the scroller.
129 // Precalculated sum of left and right edge padding of buttons in a
176 // Re-layout the window menu in case some buttons were added or removed,
212 - (NSArray*)buttons;
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.h 23 // A controller for the pop-up windows from bookmark folder buttons
46 // Bookmark bar folder controllers own their buttons. When doing
65 // Our buttons. We do not have buttons for nested folders.
74 // The main view of this window (where the buttons go) within the scroller.
123 // Precalculated sum of left and right edge padding of buttons in a
176 // Re-layout the window menu in case some buttons were added or removed,
193 - (NSArray*)buttons;

Completed in 1045 milliseconds

1 23 4 5 6 7 8