HomeSort by relevance Sort by last modified time
    Searched full:button (Results 301 - 325 of 3903) sorted by null

<<11121314151617181920>>

  /sdk/layoutopt/samples/
inefficient_weight.xml 9 <Button
22 <Button
37 <Button
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/layout/
inefficient_weight.xml 9 <Button
22 <Button
37 <Button
  /development/samples/ApiDemos/res/layout/
foreground_service_controller.xml 31 <Button android:id="@+id/start_foreground"
35 </Button>
37 <Button android:id="@+id/start_background"
41 </Button>
43 <Button android:id="@+id/stop"
46 </Button>
remote_service_binding.xml 30 <Button android:id="@+id/bind"
34 </Button>
36 <Button android:id="@+id/unbind"
39 </Button>
41 <Button android:id="@+id/kill"
44 </Button>
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActivityRecreate.java 28 import android.widget.Button;
57 // Watch for button clicks.
58 Button button = (Button)findViewById(R.id.recreate); local
59 button.setOnClickListener(mRecreateListener);
IncomingMessageInterstitial.java 26 import android.widget.Button;
40 Button button = (Button) findViewById(R.id.notify_app); local
41 button.setOnClickListener(new Button.OnClickListener() {
DialogActivity.java 28 import android.widget.Button;
61 Button button = (Button)findViewById(R.id.add); local
62 button.setOnClickListener(mAddContentListener);
63 button = (Button)findViewById(R.id.remove);
64 button.setOnClickListener(mRemoveContentListener);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 23 import android.widget.Button;
41 Button button = (Button) findViewById(R.id.toggle); local
42 button.setOnClickListener(new Button.OnClickListener() {
ProgressBar3.java 26 import android.widget.Button;
48 Button button = (Button) findViewById(R.id.showIndeterminate); local
49 button.setOnClickListener(new View.OnClickListener() {
55 button = (Button) findViewById(R.id.showIndeterminateNoTitle);
56 button.setOnClickListener(new View.OnClickListener() {
  /external/chromium/chrome/browser/automation/
ui_controls_linux.cc 185 event->button.send_event = false;
186 event->button.time = gtk_util::XTimeNow();
193 event->button.window = grab_widget->window;
194 gdk_window_get_pointer(event->button.window, &x, &y, NULL);
196 event->button.window = gdk_window_at_pointer(&x, &y);
199 g_object_ref(event->button.window);
200 event->button.x = x;
201 event->button.y = y;
203 gdk_window_get_origin(event->button.window, &origin_x, &origin_y);
204 event->button.x_root = x + origin_x
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_hover_state_unittest.mm 29 scoped_nsobject<BookmarkButton> button;
30 button.reset([[BookmarkButton alloc] initWithFrame:NSMakeRect(0, 0, 20, 20)]);
34 [bbfhs scheduleOpenBookmarkFolderOnHoverButton:button];
44 [bbfhs scheduleOpenBookmarkFolderOnHoverButton:button];
54 ASSERT_EQ(button, [bbfhs hoverButton]);
63 ASSERT_EQ(button, [bbfhs hoverButton]);
bookmark_folder_target.h 15 // Target (in the target/action sense) of a bookmark folder button.
23 // The owner of the bookmark folder button
29 // Main IBAction for a button click.
37 // Fill the given pasteboard with appropriate data when the given button is
41 forDragOfButton:(BookmarkButton*)button;
45 // The (internal) |NSPasteboard| type string for bookmark button drags, used for
bookmark_button.h 22 // things on behalf of a bookmark button.
25 // Fill the given pasteboard with appropriate data when the given button is
29 forDragOfButton:(BookmarkButton*)button;
34 - (void)mouseEnteredButton:(id)button event:(NSEvent*)event;
35 - (void)mouseExitedButton:(id)button event:(NSEvent*)event;
38 // visibility before starting. For example, dragging a bookmark button should
43 // Returns the top-level window for this button.
46 // Returns YES if the bookmark button can be dragged to the trash, NO otherwise.
47 - (BOOL)canDragBookmarkButtonToTrash:(BookmarkButton*)button;
49 // This is called after the user has dropped the bookmark button on the trash
    [all...]
  /external/junit/src/junit/awtui/
AboutDialog.java 3 import java.awt.Button;
27 Button button= new Button("Close"); local
28 button.addActionListener(
61 add(button, constraintsButton1);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtons.java 27 import android.widget.Button;
66 Button button = new Button(parent.getContext()); local
67 button.setText(label);
68 return button;
  /packages/apps/Phone/res/values/
attrs.xml 19 <!-- The enable button text. -->
21 <!-- The disable button text. -->
23 <!-- The change / update button text. -->
25 <!-- The confirm button mode. -->
27 <!-- Traditional single action "ok" button. -->
29 <!-- Two state "enable/disable" button. -->
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample11-expected-insertSpacer.xml 24 <Button
28 <Button
32 <Button
38 <Button
43 <Button
49 <Button
  /development/ndk/platforms/android-9/samples/native-audio/res/layout/
main.xml 34 <Button
40 <Button
46 <Button
52 <Button
64 <Button
70 <Button
76 <Button
100 <Button
106 <Button
112 <Button
    [all...]
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmActivity.java 27 import android.widget.Button;
33 * When the user clicks the "Start Alarm Service" button, it triggers a repeating countdown
38 * When the user clicks the "Stop Alarm Service" button, it stops the countdown timer.
73 // Finds the button that starts the repeating countdown timer
74 Button button = (Button)findViewById(R.id.start_alarm); local
76 // Sets the listener for the start button
77 button.setOnClickListener(mStartAlarmListener);
79 // Finds the button that stops countdown time
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
InstallApk.java 37 import android.widget.Button;
61 // Watch for button clicks.
62 Button button = (Button)findViewById(R.id.unknown_source); local
63 button.setOnClickListener(mUnknownSourceListener);
64 button = (Button)findViewById(R.id.my_source);
65 button.setOnClickListener(mMySourceListener);
66 button = (Button)findViewById(R.id.replace)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
user_view.h 11 #include "views/controls/button/button.h"
36 // Notifies that user pressed signout button on screen locker.
50 // On login screen this will have remove button.
51 // On screen locker it will have sign out button. |need_background| is needed
68 // Show/Hide remove button.
71 // Enable/Disable sign-out button.
79 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
  /external/chromium/chrome/browser/chromeos/status/
status_area_button.h 10 #include "views/controls/button/menu_button.h"
15 // Button to be used to represent status and allow menus to be popped up.
16 // Shows current button state by drawing a border around the current icon.
25 // text content so that the button size would fit the new text size.
40 // Controls whether or not this status area button is able to be pressed.
53 // True if the button wants to use views::MenuButton drawings.
56 // Insets to use for this button.
59 // Indicates when this button can be pressed. Independent of
  /external/chromium/chrome/browser/resources/
menu.html 14 <div id="scroll-up" class="scroll-button"></div>
16 <div id="scroll-down" class="scroll-button"></div>
  /external/chromium/chrome/browser/resources/options/chromeos/
change_picture_options.html 6 <img id="take-photo-button"
9 id="choose-file-button"
  /external/chromium/chrome/browser/tab_contents/
confirm_infobar_delegate.h 30 // Return the label for the specified button. The default implementation
31 // returns "OK" for the OK button and "Cancel" for the Cancel button.
32 virtual string16 GetButtonLabel(InfoBarButton button) const;
34 // Return whether or not the specified button needs elevation.
35 virtual bool NeedElevation(InfoBarButton button) const;
37 // Called when the OK button is pressed. If the function returns true, the
41 // Called when the Cancel button is pressed. If the function returns true,

Completed in 764 milliseconds

<<11121314151617181920>>