Lines Matching defs: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
50 * must return correct MIME type(s) describing the data in the clip. For help
51 * in correctly constructing a clip with the correct MIME type, use
83 * <p>More complicated exchanges will be done through URIs, in particular
85 * to interact closely with the ContentProvider holding the data in order to
86 * negotiate the transfer of that data. The clip must also be filled in with
120 * <p>More complicated data types require the implementation of support in
141 * <p>The copy operation in our NotePad application is now just a simple matter
168 * Description of a single item in a ClippedData.
174 * so it can be formatted text supported by corresponding Android built-in
205 * supply a plain text representation in addition to HTML text; coercion
264 * Retrieve the raw text contained in this Item.
271 * Retrieve the raw HTML text contained in this Item.
278 * Retrieve the raw Intent contained in this Item.
285 * Retrieve the raw URI contained in this Item.
374 // Shouldn't get here, but just in case...
561 // Shouldn't get here, but just in case...
636 * @param item The contents of the first item in the clip.
652 * @param item The contents of the first item in the clip.
666 * of all items in the clip.
681 * @param text The actual text in the clip.
696 * @param htmlText The actual HTML text in the clip.
710 * @param intent The actual Intent in the clip.
726 * @param uri The URI in the clip.
766 * @param uri The URI in the clip.
798 * Return the number of items in the clip data.
952 ClipData(Parcel in) {
953 mClipDescription = new ClipDescription(in);
954 if (in.readInt() != 0) {
955 mIcon = Bitmap.CREATOR.createFromParcel(in);
960 final int N = in.readInt();
962 CharSequence text = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
963 String htmlText = in.readString();
964 Intent intent = in.readInt() != 0 ? Intent.CREATOR.createFromParcel(in) : null;
965 Uri uri = in.readInt() != 0 ? Uri.CREATOR.createFromParcel(in) : null;