Searched defs:which (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/core/java/android/content/
H A DSyncStatusObserver.java20 void onStatusChanged(int which); argument
H A DDialogInterface.java117 * @param which The button that was clicked (e.g.
122 public void onClick(DialogInterface dialog, int which); argument
134 * @param which The position of the item in the list that was clicked.
137 public void onClick(DialogInterface dialog, int which, boolean isChecked); argument
/frameworks/base/core/java/com/android/internal/app/
H A DExternalMediaFormatActivity.java92 public void onClick(DialogInterface dialog, int which) { argument
94 if (which == POSITIVE_BUTTON) {
H A DNetInitiatedActivity.java123 public void onClick(DialogInterface dialog, int which) { argument
124 if (which == POSITIVE_BUTTON) {
127 if (which == NEGATIVE_BUTTON) {
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportWarningActivity.java68 public void onClick(DialogInterface dialog, int which) { argument
69 if (which == AlertDialog.BUTTON_POSITIVE) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbAccessoryUriActivity.java84 public void onClick(DialogInterface dialog, int which) { argument
85 if (which == AlertDialog.BUTTON_POSITIVE) {
H A DUsbConfirmActivity.java112 public void onClick(DialogInterface dialog, int which) { argument
113 if (which == AlertDialog.BUTTON_POSITIVE) {
H A DUsbDebuggingActivity.java119 public void onClick(DialogInterface dialog, int which) { argument
120 boolean allow = (which == AlertDialog.BUTTON_POSITIVE);
H A DUsbPermissionActivity.java159 public void onClick(DialogInterface dialog, int which) { argument
160 if (which == AlertDialog.BUTTON_POSITIVE) {
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java102 public void onClick(DialogInterface dialog, int which) { argument
H A DManageDialog.java118 public void onClick(DialogInterface dialog, int which) { argument
120 if (which == DialogInterface.BUTTON_POSITIVE) {
122 } else if (which == DialogInterface.BUTTON_NEUTRAL) {
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuDialogHelper.java166 public void onClick(DialogInterface dialog, int which) { argument
167 mMenu.performItemAction((MenuItemImpl) mPresenter.getAdapter().getItem(which), 0);
/frameworks/base/core/java/com/android/internal/widget/
H A DSmileys.java63 public static int getSmileyResource(int which) { argument
64 return sIconIds[which];
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DGuestResumeSessionReceiver.java169 public void onClick(DialogInterface dialog, int which) { argument
170 if (which == BUTTON_WIPE) {
173 } else if (which == BUTTON_DONTWIPE) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DMediaProjectionPermissionActivity.java121 public void onClick(DialogInterface dialog, int which) { argument
123 if (which == AlertDialog.BUTTON_POSITIVE) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuDialogHelper.java169 public void onClick(DialogInterface dialog, int which) { argument
170 mMenu.performItemAction((MenuItemImpl) mPresenter.getAdapter().getItem(which), 0);
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java130 public void onClick(DialogInterface dialog, int which) { argument
131 switch (which) {
H A DTimePickerDialog.java129 public void onClick(DialogInterface dialog, int which) { argument
130 switch (which) {
/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java138 public void onClick(DialogInterface dialog, int which) { argument
151 public void onClick(DialogInterface dialog, int which) { argument
H A DPlugin.java216 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/packages/Keyguard/scripts/
H A Dnew_merge.py13 def which(program): function
46 DIFF_TOOL=which(os.environ["DIFF_TOOL"])
49 DIFF_TOOL=which(differ)
55 #Anything file which contains any string in this list as a substring will be ommitted
/frameworks/native/libs/binder/
H A DIServiceManager.cpp196 String16 which = data.readString16(); local
197 sp<IBinder> b = const_cast<BnServiceManager*>(this)->getService(which);
203 String16 which = data.readString16(); local
204 sp<IBinder> b = const_cast<BnServiceManager*>(this)->checkService(which);
210 String16 which = data.readString16(); local
212 status_t err = addService(which, b);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFooter.java131 public void onClick(DialogInterface dialog, int which) { argument
132 if (which == DialogInterface.BUTTON_NEGATIVE) {
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java382 public void onClick(DialogInterface dialog, int which) { argument
383 mWhichButtonClicked = which;
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java154 * @param text the buffer in which the meta key would have been pressed.
156 * @return an integer in which each bit set to one represents a pressed
175 * @param text the buffer in which the meta key would have been pressed.
176 * @param event the event for which to evaluate the meta state.
177 * @return an integer in which each bit set to one represents a pressed
195 * @param text the buffer in which the meta key would have been pressed.
226 * @param text the buffer in which the meta key would have been pressed.
227 * @param event the event for which to evaluate the meta state.
454 * @return an integer in which each bit set to one represents a pressed
619 * @param which met
622 clearMetaKeyState(long state, int which) argument
[all...]

Completed in 3736 milliseconds

12