Searched refs:handled (Results 51 - 70 of 70) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java146 * @return Whether the intent is handled and should not be delivered to clients.
486 final boolean handled = mActivityChoserModelPolicy.onChooseActivity(this,
488 if (handled) {
H A DTextView.java1111 // So that selection can be changed using arrow keys and touch is handled.
5368 final boolean handled = mEditor.mKeyListener.onKeyOther(this, (Editable) mText,
5372 if (handled) {
5385 final boolean handled = mEditor.mKeyListener.onKeyDown(this, (Editable) mText,
5389 if (handled) return 1;
5400 boolean handled = mMovement.onKeyOther(this, (Spannable) mText,
5403 if (handled) {
5510 * Return true because we handled the key; super
5739 * @return Return true if you handled the command, else false.
7215 // Spans that are adjacent to the edited region will be handled i
[all...]
H A DEditor.java807 public boolean performLongClick(boolean handled) { argument
809 if (!handled && !isPositionOnText(mLastDownPositionX, mLastDownPositionY) &&
816 handled = true;
819 if (!handled && mSelectionActionMode != null) {
834 handled = true;
838 if (!handled) {
839 handled = startSelectionActionMode();
842 return handled;
1362 // Same as drawDisplayList below, handled by our TextView's parent
/frameworks/native/include/android/
H A Dinput.h842 void AInputQueue_finishEvent(AInputQueue* queue, AInputEvent* event, int handled);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java71 * The {@link Intent} that must be declared as handled by the service.
239 boolean handled = false;
245 handled = true;
248 finishInputEvent(event, handled);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java167 * @return whether the menu item selection was handled
761 boolean handled = false;
764 handled = performItemAction(item, flags);
771 return handled;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2381 boolean handled = false;
2475 handled = true;
2495 return handled;
3188 // If there is no view, then the event will not be handled.
3220 boolean handled = mView.dispatchPointerEvent(event);
3224 if (handled) {
3266 // If there is no view, then the event will not be handled.
3389 // we always consider the trackball event handled.
3427 // If there is no view, then the event will not be handled.
3629 void handleImeFinishedEvent(int seq, boolean handled) { argument
4150 dispatchImeFinishedEvent(int seq, boolean handled) argument
4303 finishInputEvent(QueuedInputEvent q, boolean handled) argument
4822 finishedEvent(int seq, boolean handled) argument
[all...]
H A DKeyEvent.java97 * This key is handled by the framework and is never delivered to applications. */
1293 * @return If you handled the event, return true. If you want to allow
1294 * the event to be handled by the next receiver, return false.
1309 * @return If you handled the event, return true. If you want to allow
1310 * the event to be handled by the next receiver, return false.
1320 * @return If you handled the event, return true. If you want to allow
1321 * the event to be handled by the next receiver, return false.
1333 * @return If you handled the event, return true. If you want to allow
1334 * the event to be handled by the next receiver, return false.
2593 * an ACTION_MULTIPLE event and it is not handled, the
[all...]
H A DView.java136 * <li><strong>Set focus:</strong> The framework will handled moving focus in
437 * Drawing is handled by walking the tree and rendering each view that
3065 * but should be handled by another view.
4237 boolean handled = false;
4240 handled = li.mOnLongClickListener.onLongClick(View.this);
4242 if (!handled) {
4243 handled = showContextMenu();
4245 if (handled) {
4248 return handled;
7176 * @return True if the event was handled, fals
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2449 boolean handled = false;
2453 handled |= up(widget, buffer);
2456 handled |= down(widget, buffer);
2459 handled |= left(widget, buffer);
2462 handled |= right(widget, buffer);
2466 handled = true;
2469 return handled;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java182 boolean handled = super.onClickHandler(view, pendingIntent, fillInIntent);
184 if (isActivity && handled) {
189 return handled;
726 // NB: the large icon is now handled entirely by the template
858 * are handled, because the notification isn't really cancelled. The lights are just
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java338 boolean handled = false;
344 handled = true;
347 finishInputEvent(event, handled);
656 private void interceptPowerKeyDown(boolean handled) { argument
657 mPowerKeyHandled = handled;
658 if (!handled) {
2268 boolean handled = false;
2316 finishInputEvent(event, handled);
/frameworks/base/core/java/android/app/
H A DActivity.java1988 * will happen to key events that are not otherwise handled. The default
2032 * Called when a key was pressed down and not handled by any of the views
2052 * further, or <code>false</code> to indicate that you have not handled
2079 boolean handled;
2082 handled = false;
2084 handled = TextKeyListener.getInstance().onKeyDown(
2086 if (handled && mDefaultKeySsb.length() > 0) {
2112 return handled;
2126 * Called when a key was released and not handled by any of the views
2135 * further, or <code>false</code> to indicate that you have not handled
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java584 boolean handled = notifyGestureLocked(gestureId, false);
585 if (!handled) {
586 handled = notifyGestureLocked(gestureId, true);
588 return handled;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java317 boolean handled = (result == Intents.RESULT_SMS_HANDLED);
318 notifyAndAcknowledgeLastIncomingSms(handled, result, null);
474 // implementations this retry is handled by the baseband.
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java471 // Reset any pending chips as they would have been handled
1410 boolean handled = super.onTouchEvent(event);
1435 handled = true;
1443 return handled;
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java264 * INITIALIZE message can be handled.
1980 // PAUSE/RESUME timers will still be processed even if they get handled later
2036 boolean handled = nativeKey(mNativeClass, keyCode, unicodeChar, evt.getRepeatCount(),
2040 if (!handled && keyCode != KeyEvent.KEYCODE_ENTER) {
H A DWebViewClassic.java332 boolean handled = true;
354 handled = super.performEditorAction(editorAction);
358 return handled;
836 * TODO: Some of this is now unnecessary as it is handled by
1198 // used for serializing asynchronously handled touch events.
4420 /* In the case where the application hasn't already handled the long
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java673 boolean handled = false;
719 handled = true;
724 finishInputEvent(event, handled);
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java565 public void finishedEvent(int seq, boolean handled) throws RemoteException { argument

Completed in 4670 milliseconds

123