Searched refs:handled (Results 1 - 25 of 70) sorted by path

123

/frameworks/av/media/libstagefright/
H A DACodec.cpp2956 bool handled = false; local
2963 handled = true;
2970 handled = true;
2985 handled = true;
2995 handled = true;
3003 return handled;
3158 bool handled = false; local
3164 handled = true;
3171 handled = true;
3183 handled
3427 bool handled = false; local
3556 bool handled = false; local
3656 bool handled = false; local
3759 bool handled = false; local
3821 bool handled = false; local
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp1051 bool handled = false; local
1063 handled = true;
1067 if (!handled) {
1077 bool handled = false; local
1087 handled = true;
1092 if (!handled) {
1093 ALOGV("PID 0x%04x not handled.", PID);
/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...]
H A DMediaRouteButton.java119 boolean handled = super.performClick();
120 if (!handled) {
141 return handled;
H A DNativeActivity.java107 private native void finishPreDispatchKeyEventNative(int handle, int seq, boolean handled); argument
129 public void finishedEvent(int seq, boolean handled) { argument
132 na.finishPreDispatchKeyEventNative(na.mNativeHandle, seq, handled);
/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java135 boolean handled = event.dispatch(AbstractInputMethodService.this,
138 callback.finishedEvent(seq, handled);
147 boolean handled = onTrackballEvent(event);
149 callback.finishedEvent(seq, handled);
158 boolean handled = onGenericMotionEvent(event);
160 callback.finishedEvent(seq, handled);
207 * @return True if the event was handled in this function, false otherwise.
218 * @return True if the event was handled in this function, false otherwise.
H A DIInputMethodSessionWrapper.java63 public void finishedEvent(int seq, boolean handled) { argument
65 mCb.finishedEvent(seq, handled);
H A DSoftInputWindow.java79 boolean handled = super.dispatchTouchEvent(temp);
81 return 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/android/text/method/
H A DArrowKeyMovementMethod.java113 boolean handled = false;
124 handled = true;
129 return handled;
137 boolean handled = false;
148 handled = true;
153 return handled;
235 boolean handled = Touch.onTouchEvent(widget, buffer, event);
251 if (isSelecting(buffer) && handled) {
253 // handled will be true, if we're in select mode AND we're
292 return handled;
[all...]
H A DBaseKeyListener.java152 boolean handled;
155 handled = backspace(view, content, keyCode, event);
158 handled = forwardDelete(view, content, keyCode, event);
161 handled = false;
165 if (handled) {
H A DBaseMovementMethod.java42 boolean handled = handleMovementKey(widget, text, keyCode, movementMetaState, event);
43 if (handled) {
47 return handled;
57 boolean handled = false;
62 handled = true;
64 if (handled) {
68 return handled;
107 boolean handled = false;
109 handled |= scrollLeft(widget, text, (int)Math.ceil(-hscroll));
111 handled |
[all...]
/frameworks/base/core/java/android/view/
H A DGestureDetector.java472 boolean handled = false;
517 handled |= mDoubleTapListener.onDoubleTap(mCurrentDownEvent);
519 handled |= mDoubleTapListener.onDoubleTapEvent(ev);
543 handled |= mListener.onDown(ev);
554 handled |= mDoubleTapListener.onDoubleTapEvent(ev);
560 handled = mListener.onScroll(mCurrentDownEvent, ev, scrollX, scrollY);
572 handled = mListener.onScroll(mCurrentDownEvent, ev, scrollX, scrollY);
583 handled |= mDoubleTapListener.onDoubleTapEvent(ev);
588 handled = mListener.onSingleTapUp(ev);
600 handled
[all...]
H A DInputEventReceiver.java48 private static native void nativeFinishInputEvent(int receiverPtr, int seq, boolean handled); argument
108 * to indicate whether the event was handled. No new input events will be received
130 * Finishes an input event and indicates whether it was handled.
134 * @param handled True if the event was handled.
136 public final void finishInputEvent(InputEvent event, boolean handled) { argument
150 nativeFinishInputEvent(mReceiverPtr, seq, handled);
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 DTouchDelegate.java111 boolean handled = false;
149 handled = delegateView.dispatchTouchEvent(event);
151 return handled;
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
3063 * but should be handled by another view.
4235 boolean handled = false;
4238 handled = li.mOnLongClickListener.onLongClick(View.this);
4240 if (!handled) {
4241 handled = showContextMenu();
4243 if (handled) {
4246 return handled;
7169 * @return True if the event was handled, fals
[all...]
H A DViewGroup.java158 // They might not have actually handled the hover event, but we will
164 // It might not have actually handled the hover event.
1126 final boolean handled = notifyChildOfDrag(children[i]);
1127 if (handled) {
1154 // We consider drag-ended to have been handled if one of our children
1425 boolean handled = false;
1483 handled |= dispatchTransformedGenericPointerEvent(
1491 handled |= dispatchTransformedGenericPointerEvent(
1495 handled |= dispatchTransformedGenericPointerEvent(
1499 handled |
[all...]
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...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java133 * the core {@link InputMethod} interface, though this is normally handled by
170 * IMEs, but must be explicitly handled by an IME that is customizing the
525 public void finishedEvent(int seq, boolean handled) {
526 InputMethodManager.this.finishedEvent(seq, handled);
1570 boolean handled = false;
1578 handled = true;
1593 callback.finishedEvent(seq, handled);
1644 void finishedEvent(int seq, boolean handled) { argument
1655 callback.finishedEvent(seq, handled);
1946 public void finishedEvent(int seq, boolean handled); argument
[all...]
H A DInputMethodSession.java35 void finishedEvent(int seq, boolean handled); argument
/frameworks/base/core/java/android/webkit/
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
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) {
/frameworks/base/core/java/android/widget/
H A DAbsListView.java669 * Track the item count from the last time we handled a data change.
1049 boolean handled = false;
1053 handled = true;
1100 handled |= super.performItemClick(view, position, id);
1103 return handled;
2763 boolean handled = false;
2765 handled = performLongPress(child, longPressPosition, longPressId);
2767 if (handled) {
2785 boolean handled = false;
2787 handled
[all...]
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) {

Completed in 262 milliseconds

123