Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 * object to react to a change in state by changing its appearance or performing other actions.
34 * by changing one or more colors in its displayed image.
42 * Most methods return valid data only for certain event actions. This is summarized in the
43 * following table. Each possible {@link #getAction()} value is listed in the first column. The
149 * from {@link #getClipDescription()} to determine if they can accept the data contained in
155 * A View only receives further drag events if it returns {@code true} in response to
206 * return to its usual drawing state in response to this event.
213 * If a View returned {@code true} in response to {@link #ACTION_DROP}, then
226 * by changing its appearance in a way that tells the user that the View is the current
242 * The View can react by changing its appearance in a way that tells the user that
301 * @return One of the following action constants, in the order in which they usually occur
347 * Returns the {@link android.content.ClipDescription} object contained in the
350 * The drag handler or listener for a View can use the metadata in this object to decide if the
392 * @return {@code true} if a drag event listener returned {@code true} in response to
394 * {@link #ACTION_DRAG_ENDED}, or if the listener returned {@code false} in response to
460 * @param dest A {@link android.os.Parcel} object in which to put the DragEvent object.
461 * @param flags Flags to store in the Parcel.
487 public DragEvent createFromParcel(Parcel in) {
489 event.mAction = in.readInt();
490 event.mX = in.readFloat();
491 event.mY = in.readFloat();
492 event.mDragResult = (in.readInt() != 0);
493 if (in.readInt() != 0) {
494 event.mClipData = ClipData.CREATOR.createFromParcel(in);
496 if (in.readInt() != 0) {
497 event.mClipDescription = ClipDescription.CREATOR.createFromParcel(in);