/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/ |
DialpadView.java | 323 * @param buttonId The button ID. 326 private int getKeyButtonAnimationDelay(int buttonId) { 329 if (buttonId == R.id.three) { 331 } else if (buttonId == R.id.six) { 333 } else if (buttonId == R.id.nine) { 335 } else if (buttonId == R.id.pound) { 337 } else if (buttonId == R.id.two) { 339 } else if (buttonId == R.id.five) { 341 } else if (buttonId == R.id.eight) { 343 } else if (buttonId == R.id.zero) [all...] |
/external/lzma/CPP/7zip/UI/FileManager/ |
PasswordDialog.cpp | 43 bool CPasswordDialog::OnButtonClicked(int buttonID, HWND buttonHWND)
45 if (buttonID == IDX_PASSWORD_SHOW)
51 return CDialog::OnButtonClicked(buttonID, buttonHWND);
|
OverwriteDialog.cpp | 106 bool COverwriteDialog::OnButtonClicked(int buttonID, HWND buttonHWND)
108 switch (buttonID)
115 End(buttonID);
118 return CModalDialog::OnButtonClicked(buttonID, buttonHWND);
|
PasswordDialog.h | 17 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
OverwriteDialog.h | 50 bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
ProgressDialog.cpp | 159 bool CProgressDialog::OnButtonClicked(int buttonID, HWND buttonHWND)
161 switch(buttonID)
180 return CModalDialog::OnButtonClicked(buttonID, buttonHWND);
|
/packages/apps/Camera2/src/com/android/camera/ |
ButtonManager.java | 133 public void onButtonVisibilityChanged(ButtonManager buttonManager, int buttonId); 138 public void onButtonEnabledChanged(ButtonManager buttonManager, int buttonId); 245 private MultiToggleImageButton getButtonOrError(int buttonId) { 246 switch (buttonId) { 288 throw new IllegalArgumentException("button not known by id=" + buttonId); 297 private ImageButton getImageButtonOrError(int buttonId) { 298 switch (buttonId) { 325 throw new IllegalArgumentException("button not known by id=" + buttonId); 333 * @param buttonId The id if the button to be initialized. 336 public void initializeButton(int buttonId, ButtonCallback cb) [all...] |
/external/lzma/CPP/Windows/Control/ |
Dialog.h | 77 bool CheckButton(int buttonID, UINT checkState)
78 { return BOOLToBool(CheckDlgButton(_window, buttonID, checkState)); }
79 bool CheckButton(int buttonID, bool checkState)
80 { return CheckButton(buttonID, UINT(checkState ? BST_CHECKED : BST_UNCHECKED)); }
82 UINT IsButtonChecked(int buttonID) const
83 { return IsDlgButtonChecked(_window, buttonID); }
84 bool IsButtonCheckedBool(int buttonID) const
85 { return (IsButtonChecked(buttonID) == BST_CHECKED); }
105 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
ToolBar.h | 32 bool EnableButton(UINT buttonID, bool enable) { return LRESULTToBool(SendMessage(TB_ENABLEBUTTON, buttonID, MAKELONG(BoolToBOOL(enable), 0))); }
|
Window2.h | 40 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ |
com.badlogic.gdx.controllers.desktop.ois.OisJoystick.cpp | 44 bool Listener::buttonPressed (const OIS::JoyStickEvent &event, int buttonId) { 45 env->CallVoidMethod(obj, buttonPressedId, (jint)buttonId); 49 bool Listener::buttonReleased (const OIS::JoyStickEvent &event, int buttonId) { 50 env->CallVoidMethod(obj, buttonReleasedId, (jint)buttonId);
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_messagebox.h | 59 int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */ member in struct:__anon44888 109 * \param buttonid The pointer to which user id of hit button should be copied. 111 * \return -1 on error, otherwise 0 and buttonid contains user id of button 119 extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_messagebox.h | 59 int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */ member in struct:__anon44997 109 * \param buttonid The pointer to which user id of hit button should be copied. 111 * \return -1 on error, otherwise 0 and buttonid contains user id of button 119 extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_messagebox.h | 59 int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */ member in struct:__anon45076 109 * \param buttonid The pointer to which user id of hit button should be copied. 111 * \return -1 on error, otherwise 0 and buttonid contains user id of button 119 extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_messagebox.h | 59 int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */ member in struct:__anon45170 109 * \param buttonid The pointer to which user id of hit button should be copied. 111 * \return -1 on error, otherwise 0 and buttonid contains user id of button 119 extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
|
/packages/apps/Camera2/src/com/android/camera/widget/ |
IndicatorIconController.java | 99 public void onButtonVisibilityChanged(ButtonManager buttonManager, int buttonId) { 100 syncIndicatorWithButton(buttonId); 104 public void onButtonEnabledChanged(ButtonManager buttonManager, int buttonId) { 105 syncIndicatorWithButton(buttonId); 112 private void syncIndicatorWithButton(int buttonId) { 113 switch (buttonId) {
|
/packages/apps/Settings/src/com/android/settings/widget/ |
SettingsAppWidgetProvider.java | 201 int buttonId = getButtonId(); 208 views.setImageViewResource(buttonId, getButtonImageId(false)); 215 views.setImageViewResource(buttonId, getButtonImageId(true)); 228 views.setImageViewResource(buttonId, getButtonImageId(true)); 234 views.setImageViewResource(buttonId, getButtonImageId(false)); [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentHideShow.java | 56 void addShowHideListener(int buttonId, final Fragment fragment) { 57 final Button button = (Button)findViewById(buttonId);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
DateWidgets1.java | 80 private void setDialogOnClickListener(int buttonId, final int dialogId) { 81 Button b = (Button) findViewById(buttonId);
|
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentHideShowSupport.java | 57 void addShowHideListener(int buttonId, final Fragment fragment) { 58 final Button button = (Button)findViewById(buttonId);
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/src/com/badlogic/gdx/controllers/desktop/ois/ |
OisJoystick.java | 198 bool Listener::buttonPressed (const OIS::JoyStickEvent &event, int buttonId) {
199 env->CallVoidMethod(obj, buttonPressedId, (jint)buttonId);
203 bool Listener::buttonReleased (const OIS::JoyStickEvent &event, int buttonId) {
204 env->CallVoidMethod(obj, buttonReleasedId, (jint)buttonId);
|
/external/lzma/CPP/7zip/UI/GUI/ |
ExtractDialog.h | 59 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
/developers/build/prebuilts/gradle/PermissionRequest/Application/tests/src/com/example/android/permissionrequest/test/ |
SampleTests.java | 152 * @param buttonId The resource ID of the button to press. 156 final int buttonId) throws Throwable { 160 dialogFragment.getDialog().findViewById(buttonId).performClick();
|
/developers/samples/android/content/webview/PermissionRequest/Application/tests/src/com/example/android/permissionrequest/test/ |
SampleTests.java | 152 * @param buttonId The resource ID of the button to press. 156 final int buttonId) throws Throwable { 160 dialogFragment.getDialog().findViewById(buttonId).performClick();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ConvertSwitchDialog.java | 124 protected void buttonPressed(int buttonId) { 125 if (buttonId == IDialogConstants.HELP_ID) { 128 super.buttonPressed(buttonId);
|