/external/lzma/CPP/Windows/Control/ |
ToolBar.h | 20 // maybe it must be fixed for more than 1 buttons
35 bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMessage(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); }
37 bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMessage(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); }
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
HierarchicalMove.java | 32 Button[] buttons = new Button[6]; field in class:HierarchicalMove 45 buttons[0] = (Button) findViewById(R.id.button0); 46 buttons[1] = (Button) findViewById(R.id.button1); 47 buttons[2] = (Button) findViewById(R.id.button2); 48 buttons[3] = (Button) findViewById(R.id.button3); 49 buttons[4] = (Button) findViewById(R.id.button4); 50 buttons[5] = (Button) findViewById(R.id.button5); 52 // Move button0, then buttons 1/2 together, then buttons 3/4/5 sequentially: 67 move0.addTarget(buttons[0]) [all...] |
/external/autotest/frontend/client/src/autotest/common/table/ |
RadioButtonSetFilter.java | 15 private Vector<RadioButton> buttons; field in class:RadioButtonSetFilter 25 buttons = new Vector(); 35 int formValue = buttons.size(); 38 buttons.add(radioButton); 43 if (index < buttons.size()) 45 buttons.get(index).setChecked(true); 53 return buttons.size();
|
/development/samples/browseable/BorderlessButtons/ |
_index.jd | 8 This sample demonstrates the use of borderless buttons, bottom button bars
|
/development/samples/browseable/FloatingActionButtonBasic/ |
_index.jd | 8 This sample shows the two sizes of Floating Action Buttons and how to interact with
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
FabContainer.java | 6 * Implemented by containers that house the fab and its associated buttons. Also implemented by 30 /** Signals that the buttons should be updated in place with no animation. */ 32 /** Signals that the buttons should be "animated away", updated, and "animated back". */ 37 /** Disable the buttons of the fab so they do not respond to clicks. */ 42 /** Signals the fab and buttons should be "animated away". */ 44 /** Signals the fab and buttons should be "animated back". */ 61 * Requests that this container update the fab and/or its buttons because their state has 65 * @param updateTypes indicates the types of update to apply to the fab and its buttons
|
/packages/apps/Dialer/java/com/android/incallui/incall/impl/ |
InCallButtonGridFragment.java | 32 /** Fragment for the in call buttons (mute, speaker, ect.). */ 38 private CheckableLabeledButton[] buttons = new CheckableLabeledButton[BUTTON_COUNT]; field in class:InCallButtonGridFragment 58 buttons[0] = ((CheckableLabeledButton) view.findViewById(R.id.incall_first_button)); 59 buttons[1] = ((CheckableLabeledButton) view.findViewById(R.id.incall_second_button)); 60 buttons[2] = ((CheckableLabeledButton) view.findViewById(R.id.incall_third_button)); 61 buttons[3] = ((CheckableLabeledButton) view.findViewById(R.id.incall_fourth_button)); 62 buttons[4] = ((CheckableLabeledButton) view.findViewById(R.id.incall_fifth_button)); 63 buttons[5] = ((CheckableLabeledButton) view.findViewById(R.id.incall_sixth_button)); 81 for (CheckableLabeledButton button : buttons) { 120 buttons[i].setVisibility(View.INVISIBLE) [all...] |
/packages/apps/Dialer/java/com/android/incallui/commontheme/res/values/ |
colors.xml | 3 <!-- 50% black background drawn over the video to make it easier to see text and buttons. -->
|
/tools/test/connectivity/acts/framework/acts/controllers/relay_lib/ |
fugu_remote.py | 27 class Buttons(enum.Enum): 45 for button in Buttons: 68 Holds down the 'Home' and 'Back' buttons for a little over 5 seconds. 71 self.relays[Buttons.HOME.value].set_nc() 72 self.relays[Buttons.BACK.value].set_nc() 77 self.relays[Buttons.HOME.value].set_no() 78 self.relays[Buttons.BACK.value].set_no() 82 self.relays[Buttons.PLAY_PAUSE.value].set_nc_for() 86 self.relays[Buttons.HOME.value].set_nc_for() 90 self.relays[Buttons.BACK.value].set_nc_for( [all...] |
/packages/services/Car/car_product/overlay/packages/apps/PackageInstaller/res/values/ |
dimens.xml | 21 <!-- The text size for the text along the button bar. This includes the "Allow"/"Deny" buttons. 26 <!-- The padding around the Allow/Deny buttons. This is larger to make the buttons easier to 37 the buttons below the checkbox up. Normally the buttons would have padding to separate
|
/frameworks/native/services/vr/virtual_touchpad/ |
DvrVirtualTouchpadClient.cpp | 39 int buttons) { 40 return FromC(client)->ButtonState(touchpad, buttons);
|
/frameworks/native/services/vr/virtual_touchpad/aidl/android/dvr/ |
VirtualTouchpadService.aidl | 34 * @param buttons A union of MotionEvent BUTTON_* values. 36 void buttonState(int touchpad, int buttons) = 3;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
IntentDrivenTestActivity.java | 22 * text view containing instructions and one or more buttons that trigger intents. 37 public static final String EXTRA_BUTTONS = "buttons"; 64 final ViewGroup buttons = (ViewGroup) findViewById(R.id.buttons); local 71 buttons.addView(button); 139 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) { 141 * up to 2 buttons and won't render well with more buttons on small screen devices. 142 * If you need more than 2 buttons, please change the layout so it can properly render 145 if (buttons.length > 2) [all...] |
/frameworks/base/data/keyboards/ |
Vendor_046d_Product_c294.kl | 19 # 4 way buttons above hat 25 # Row of buttons under hat 35 # Buttons on wheel
|
Vendor_046d_Product_c299.kl | 19 # 4 way buttons above hat 25 # Row of buttons under hat 40 # Buttons on wheel
|
/developers/samples/android/ui/views/FloatingActionButton/FloatingActionButtonBasic/ |
template-params.xml | 26 This sample shows the two sizes of Floating Action Buttons and how to interact with 58 This sample shows the two sizes of Floating Action Buttons and 67 Floating action buttons are used for a special type of promoted action. 71 Floating action buttons come in two sizes: 75 Both sizes of Floating Action Buttons are displayed on screen.
|
/developers/build/prebuilts/gradle/BasicGestureDetect/Application/src/main/java/com/example/android/basicgesturedetect/ |
GestureListener.java | 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e); 140 * Returns a human-readable string listing all the stylus buttons that were pressed when the 145 String buttons = ""; local 148 buttons += " primary"; 152 buttons += " secondary"; 156 buttons += " tertiary"; 160 buttons += " back"; 164 buttons += " forward"; 167 if (buttons.equals("")){ 168 buttons = "none" [all...] |
/developers/samples/android/input/gestures/BasicGestureDetect/Application/src/main/java/com/example/android/basicgesturedetect/ |
GestureListener.java | 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e); 140 * Returns a human-readable string listing all the stylus buttons that were pressed when the 145 String buttons = ""; local 148 buttons += " primary"; 152 buttons += " secondary"; 156 buttons += " tertiary"; 160 buttons += " back"; 164 buttons += " forward"; 167 if (buttons.equals("")){ 168 buttons = "none" [all...] |
/development/samples/browseable/BasicGestureDetect/src/com.example.android.basicgesturedetect/ |
GestureListener.java | 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e); 140 * Returns a human-readable string listing all the stylus buttons that were pressed when the 145 String buttons = ""; local 148 buttons += " primary"; 152 buttons += " secondary"; 156 buttons += " tertiary"; 160 buttons += " back"; 164 buttons += " forward"; 167 if (buttons.equals("")){ 168 buttons = "none" [all...] |
/development/samples/ApiDemos/res/layout/ |
buttons_1.xml | 17 <!-- Lots of buttons = need scrolling --> 27 <!-- Regular sized buttons --> 33 <!-- Small buttons -->
|
/sdk/emulator/skins/dynamic/ |
layout | 22 buttons { 65 buttons { 120 buttons {
|
/developers/samples/android/ui/holo/BorderlessButtons/ |
template-params.xml | 28 This sample demonstrates the use of borderless buttons, bottom button bars 64 This includes a ListView with custom rows and buttons, using dividing lines to create 68 '?android:buttonBarButtonStyle' for buttons and references to the appropriate divider 73 [1]: http://developer.android.com/design/building-blocks/buttons.html#borderless
|
/development/samples/ControllerSample/res/values/ |
strings.xml | 7 moving the joysticks or pressing buttons. If it helps, try to imagine
|
/external/autotest/client/common_lib/cros/ |
shell.html | 7 # HTML to the document, including buttons that can call submit_button() on
|
/external/autotest/client/site_tests/hardware_GPIOSwitches/ |
control | 17 This test checks if the buttons and mode switches are set as expected
|