/packages/apps/IM/res/layout/ |
simple_input_activity.xml | 50 android:text="@string/cancel" />
|
/packages/apps/Mms/src/com/android/mms/ui/ |
NumberPickerButton.java | 29 * This class exists purely to cancel long click events, that got
|
/packages/apps/Music/src/com/android/music/ |
DeleteItems.java | 48 ((Button)findViewById(R.id.cancel)).setOnClickListener(new View.OnClickListener() {
|
/packages/apps/Settings/res/layout/ |
two_buttons_panel.xml | 49 android:text="@string/cancel"
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
AbstractExecutorService.java | 133 f.cancel(true); 179 f.cancel(true); 230 f.cancel(true);
|
ScheduledExecutorService.java | 16 * and return a task object that can be used to cancel or check 59 * public void run() { beeperHandle.cancel(true); } 94 * @return a ScheduledFuture that can be used to extract result or cancel
|
Exchanger.java | 237 private static final Object CANCEL = new Object(); 251 * of the use of non-V CANCEL sentinels. 306 * @return the other thread's item, or CANCEL if interrupted or timed out 331 if (v != CANCEL) 403 * Tries to cancel a wait for the given node waiting in the given 412 if (!node.compareAndSet(null, CANCEL)) 428 * @return on success, the hole; on failure, CANCEL 458 * @return on success, the hole; on failure, CANCEL 485 * @return on success, the hole; on failure, CANCEL 528 * @return another thread's item, or CANCEL [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
MessengerService.java | 129 // Cancel the persistent notification. 130 mNM.cancel(R.string.remote_service_started); 165 // We use a string id because it is a unique number. We use it later to cancel.
|
NotifyingService.java | 62 // Cancel the persistent notification. 63 mNM.cancel(MOOD_NOTIFICATIONS); 114 // We use a layout id because it is a unique number. We use it later to cancel.
|
AlertDialogSamples.java | 90 /* User clicked Cancel so do some stuff */ 114 /* User clicked Cancel so do some stuff */ 239 /* User clicked cancel so do some stuff */ 258 /* Display a text message with yes/no buttons and handle each message as well as the cancel action */ 266 /* Display a long text message with yes/no buttons and handle each message as well as the cancel action */
|
/external/bluetooth/glib/gio/win32/ |
gwin32directorymonitor.c | 85 if (G_FILE_MONITOR_CLASS (g_win32_directory_monitor_parent_class)->cancel) 86 (*G_FILE_MONITOR_CLASS (g_win32_directory_monitor_parent_class)->cancel) (base); 200 G_FILE_MONITOR_CLASS (klass)->cancel = g_win32_directory_monitor_cancel;
|
/external/proguard/src/proguard/gui/ |
OptimizationsDialog.java | 39 * Return value if the dialog is canceled (with the Cancel button or by 166 // Create the Cancel button. 167 JButton cancelButton = new JButton(msg("cancel"));
|
/external/qemu/distrib/sdl-1.2.12/src/main/macos/ |
SDL.r | 18 $"4361 6E63 656C 0000 0000 000F 0084 001F 0155 1000 0000 0000 0054 0019 0066 007D" /* Cancel.......?...U.......T...f.} */ 28 $"0002 0000 0000 006F 001E 0083 0058 0406 4361 6E63 656C 0000 0000 006E 00C0 0082" /* .......o...?.X..Cancel.....n.?.? */ 35 $"4361 6E63 656C 2E00" /* Cancel.. */
|
/external/webkit/WebCore/loader/icon/ |
IconFetcher.cpp | 153 cancel(); 156 void IconFetcher::cancel() function in class:WebCore::IconFetcher 159 m_handle->cancel();
|
/frameworks/base/core/java/android/webkit/ |
HttpAuthHandler.java | 103 * call back to either proceed() or cancel(). 152 * Cancel the authorization request 157 public void cancel() { method in class:HttpAuthHandler
|
/external/webkit/WebCore/loader/ |
ResourceLoader.cpp | 340 m_handle->cancel(); 349 void ResourceLoader::cancel() function in class:WebCore::ResourceLoader 351 cancel(ResourceError()); 354 void ResourceLoader::cancel(const ResourceError& error) function in class:WebCore::ResourceLoader 460 cancel();
|
/external/webkit/WebKit/android/WebCoreSupport/ |
GeolocationPermissions.cpp | 125 // We cancel any queued request for the given frame. There can be at most 126 // one of these, since each frame maps to a single origin. We only cancel 146 // If this is the origin currently being shown, cancel the prompt 177 // If the permissions are set to be remembered, cancel any queued requests 218 // Don't cancel the request if it's currently being shown, in which case
|
/frameworks/base/core/java/android/speech/ |
RecognitionService.java | 121 if (DBG) Log.d(TAG, "cancel called with no preceding startListening - ignoring"); 123 Log.w(TAG, "cancel called by client who did not call startListening - ignoring"); 174 * Notifies the service that it should cancel the speech recognition. 321 public void cancel(IRecognitionListener listener) { method in class:RecognitionService.RecognitionServiceBinder 322 if (DBG) Log.d(TAG, "cancel called by:" + listener.asBinder());
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ViewAnimatorTest.java | 129 final View v2 = mActivity.findViewById(R.id.cancel); 191 final View v2 = mActivity.findViewById(R.id.cancel); 237 final View v2 = mActivity.findViewById(R.id.cancel); 270 final View v2 = mActivity.findViewById(R.id.cancel); 301 final View v2 = mActivity.findViewById(R.id.cancel); 376 final View v2 = mActivity.findViewById(R.id.cancel); 465 final View v2 = mActivity.findViewById(R.id.cancel);
|
/external/opencore/nodes/streaming/streamingmanager/plugins/common/include/ |
pvmf_sm_fsp_base_impl.h | 324 //To process Cancel command & CancelAll command 326 * Assumption: When this function is called, cancel all command is present in the input Q. 328 * No attempt will be made to cancel any of the async command that are queued after 338 * Assumption: When this function is called, cancel all command is present in the input Q. 340 * No attempt will be made to cancel any of the async command that are queued after 596 SMFSP_ERRHANDLER_WAITING_FOR_CANCEL_COMPLETION, //when er occurs for cancel command we do not queue cancel due to err
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 283 * Runs on the UI thread after {@link #cancel(boolean)} is invoked. 285 * @see #cancel(boolean) 297 * @see #cancel(boolean) 304 * Attempts to cancel execution of this task. This attempt will 307 * and this task has not started when <tt>cancel</tt> is called, 324 public final boolean cancel(boolean mayInterruptIfRunning) { method in class:AsyncTask 325 return mFuture.cancel(mayInterruptIfRunning);
|
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockPattern.java | 155 Cancel(R.string.cancel, true), 156 CancelDisabled(R.string.cancel, false), 205 LeftButtonMode.Cancel, RightButtonMode.ContinueDisabled, 223 LeftButtonMode.Cancel, RightButtonMode.ConfirmDisabled, 227 LeftButtonMode.Cancel, RightButtonMode.Confirm, ID_EMPTY_MESSAGE, false); 338 } else if (mUiStage.leftMode == LeftButtonMode.Cancel) {
|
/external/opencore/nodes/pvdummyinputnode/src/ |
pvmf_dummy_fileinput_node.cpp | 501 //command such as Cancel must be able to interrupt a command 980 //Called by the command handler AO to do the Cancel All 984 //first cancel the current command if any 990 //next cancel all queued commands 992 //start at element 1 since this cancel command is element 0. 997 //finally, report cancel complete. 1002 //Called by the command handler AO to do the Cancel single command 1015 //cancel the queued command 1017 //report cancel success 1025 //start at element 1 since this cancel command is element 0 [all...] |
/frameworks/base/core/java/android/app/ |
Dialog.java | 90 * Whether to cancel the dialog when a touch is received outside of the 104 private static final int CANCEL = 0x44; 541 cancel(); method 552 * The default implementation will cancel the dialog when a touch 558 cancel(); method 930 * @param cancel Whether the dialog should be canceled when touched outside 933 public void setCanceledOnTouchOutside(boolean cancel) { 934 if (cancel && !mCancelable) { 938 mCanceledOnTouchOutside = cancel; 942 * Cancel the dialog. This is essentially the same as calling {@link #dismiss()}, but it wil 945 public void cancel() { method in class:Dialog [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/ |
VoiceInput.java | 382 * Handle the cancel button. 387 cancel(); method 468 * Cancel in-progress speech recognition. 470 public void cancel() { method in class:VoiceInput 484 // Remove all pending tasks (e.g., timers to cancel voice input) 487 mSpeechRecognizer.cancel();
|