Searched defs:in (Results 51 - 75 of 213) sorted by relevance

123456789

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Immutable cell information from a point in time.
116 private CellInfoCdma(Parcel in) { argument
117 super(in);
118 mCellIdentityCdma = CellIdentityCdma.CREATOR.createFromParcel(in);
119 mCellSignalStrengthCdma = CellSignalStrengthCdma.CREATOR.createFromParcel(in);
126 public CellInfoCdma createFromParcel(Parcel in) {
127 in.readInt(); // Skip past token, we know what it is
128 return createFromParcelBody(in);
138 createFromParcelBody(Parcel in) argument
[all...]
H A DCellInfoGsm.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Immutable cell information from a point in time.
116 private CellInfoGsm(Parcel in) { argument
117 super(in);
118 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in);
119 mCellSignalStrengthGsm = CellSignalStrengthGsm.CREATOR.createFromParcel(in);
125 public CellInfoGsm createFromParcel(Parcel in) {
126 in.readInt(); // Skip past token, we know what it is
127 return createFromParcelBody(in);
137 createFromParcelBody(Parcel in) argument
[all...]
H A DCellInfoLte.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Immutable cell information from a point in time.
121 private CellInfoLte(Parcel in) { argument
122 super(in);
123 mCellIdentityLte = CellIdentityLte.CREATOR.createFromParcel(in);
124 mCellSignalStrengthLte = CellSignalStrengthLte.CREATOR.createFromParcel(in);
131 public CellInfoLte createFromParcel(Parcel in) {
132 in.readInt(); // Skip past token, we know what it is
133 return createFromParcelBody(in);
143 createFromParcelBody(Parcel in) argument
[all...]
H A DNeighboringCellInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
52 * CID in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
56 * LAC in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
60 * Primary Scrambling Code in 9 bits format in UMT
162 NeighboringCellInfo(Parcel in) argument
[all...]
/frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
H A DAppCompatibility.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
104 * Gets the first error in collection and return the long message for it.
105 * @param in {@link Collection} of {@link ProcessErrorStateInfo} to parse.
108 private String getFirstError(Collection<ProcessErrorStateInfo> in) { argument
109 if (in == null) {
112 ProcessErrorStateInfo err = in.iterator().next();
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
191 private static CharSequence subst(CharSequence in, char ch, CharSequence sub) { argument
193 SpannableStringBuilder edit = new SpannableStringBuilder(in);
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
42 * cell broadcasts saved in older versions of the database without location info.
73 public SmsCbLocation(Parcel in) { argument
74 mPlmn = in.readString();
75 mLac = in.readInt();
76 mCid = in.readInt();
171 * @param dest The Parcel in which the object should be written.
184 public SmsCbLocation createFromParcel(Parcel in) {
185 return new SmsCbLocation(in);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
56 private Input(Parcel in) { argument
57 text = in.readString();
58 defaultText = in.readString();
59 icon = in.readParcelable(null);
60 minLen = in.readInt();
61 maxLen = in.readInt();
62 ucs2 = in.readInt() == 1 ? true : false;
63 packed = in
[all...]
H A DMenu.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
57 private Menu(Parcel in) { argument
58 title = in.readString();
59 titleIcon = in.readParcelable(null);
62 int size = in.readInt();
64 Item item = in.readParcelable(null);
67 defaultItem = in.readInt();
68 softKeyPreferred = in.readInt() == 1 ? true : false;
69 helpAvailable = in
[all...]
/frameworks/rs/driver/
H A DrsdIntrinsicLUT.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 uchar4 *in = (uchar4 *)p->in; local
47 in += xstart;
57 uchar4 p = *in;
60 in++;
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsicLUT.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 uchar4 *in = (uchar4 *)p->in; local
47 in += xstart;
57 uchar4 p = *in;
60 in++;
/frameworks/base/media/java/android/media/
H A DResampleInputStream.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
149 private static native void fir21(byte[] in, int inOffset, argument
/frameworks/base/media/jni/
H A Dandroid_media_ResampleInputStream.cpp6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
89 short in[BUF_SIZE]; local
90 env->GetByteArrayRegion(jIn, jInOffset, (jNpoints * 2 + nFir21 - 1) * 2, (jbyte*)in);
97 const short* inp = &in[i * 2];
/frameworks/base/opengl/java/android/opengl/
H A DETC1.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 * Size in bytes of an encoded block.
40 * Size in bytes of a decoded block.
45 * Size of a PKM file header, in bytes.
57 * @param in a native order direct buffer of size DECODED_BLOCK_SIZE that represent a
58 * 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
68 public static native void encodeBlock(Buffer in, int validPixelMask, Buffer out); argument
73 * @param in a native order direct buffer of size ENCODED_BLOCK_SIZE that contains the
78 * 4 x 4 square of 3-byte pixels in for
81 decodeBlock(Buffer in, Buffer out) argument
97 encodeImage(Buffer in, int width, int height, int pixelSize, int stride, Buffer out) argument
109 decodeImage(Buffer in, Buffer out, int width, int height, int pixelSize, int stride) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 class MediaPlayerBase; // in media/MediaPlayerInterface.h
36 // TestPlayerStub::setDataSource loads the library in the test url. 2
46 // typical usage in a java test:
96 virtual status_t invoke(const android::Parcel& in, android::Parcel *out) { argument
97 return mPlayer->invoke(in, out);
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
84 boolean writeFile(File f, BackupDataInputStream in) { argument
91 result = writeFile_native(mPtr, f.getAbsolutePath(), in.mData.mBackupReader);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Describes the meta data for an installed AppWidget provider. The fields in this class
25 * correspond to the fields in the <code>&lt;appwidget-provider&gt;</code> xml tag.
34 * Widget is resizable in the horizontal axis only.
38 * Widget is resizable in the vertical axis only.
42 * Widget is resizable in both the horizontal and vertical axes.
59 * {@link android.appwidget as described in the AppWidget package documentation}.
61 * <p>This field corresponds to the <code>android:name</code> attribute in
62 * the <code>&lt;receiver&gt;</code> element in th
204 AppWidgetProviderInfo(Parcel in) argument
[all...]
/frameworks/base/core/java/android/content/
H A DClipDescription.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
52 * other piece of data; in that case the MIME type should be the type
124 * @return Returns true if one of the MIME types in the clip description
138 * all MIME types in the clip that match the given MIME type.
163 * Return the number of MIME types the clip is available in.
235 ClipDescription(Parcel in) { argument
236 mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
237 mMimeTypes = in.createStringArray();
H A DComponentName.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
29 * a component: the package (a String) it exists in, and the class (a String)
40 * @param pkg The name of the package that the component exists in. Can
98 * Return the class name, either fully qualified or in a shortened form
114 * class names contained in the ComponentName. You can later recover
155 * names that were encoded in <var>str</var>
228 * @param out The Parcel in which the ComponentName will be placed.
245 * @param in The Parcel from which to read the ComponentName
251 public static ComponentName readFromParcel(Parcel in) { argument
277 ComponentName(Parcel in) argument
286 ComponentName(String pkg, Parcel in) argument
[all...]
H A DDefaultDataHandler.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 * Inserts default data from InputStream, should be in XML format.
42 * Delete, it must be in order of uri, select, and arg:
61 * Insert multiple rows in to same table and same attributes:
87 public void insert(ContentResolver contentResolver, InputStream in) argument
90 Xml.parse(in, Xml.Encoding.UTF_8, this);
93 public void insert(ContentResolver contentResolver, String in) argument
96 Xml.parse(in, this);
/frameworks/base/core/java/android/gesture/
H A DGesture.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
101 * Calculates the total length of the gesture. When there are multiple strokes in
268 static Gesture deserialize(DataInputStream in) throws IOException { argument
272 gesture.mGestureID = in.readLong();
274 final int count = in.readInt();
277 gesture.addStroke(GestureStroke.deserialize(in));
284 public Gesture createFromParcel(Parcel in) {
286 final long gestureID = in.readLong();
289 new ByteArrayInputStream(in
[all...]
H A DGestureStore.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
122 * Get all the gesture entry names in the library
279 DataInputStream in = null;
281 in = new DataInputStream((stream instanceof BufferedInputStream) ? stream :
290 final short versionNumber = in.readShort();
293 readFormatV1(in);
302 if (closeStream) GestureUtils.closeStream(in);
306 private void readFormatV1(DataInputStream in) throws IOException { argument
311 // Number of entries in th
[all...]
H A DGestureStroke.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
219 static GestureStroke deserialize(DataInputStream in) throws IOException { argument
221 final int count = in.readInt();
225 points.add(GesturePoint.deserialize(in));
/frameworks/base/core/java/android/net/
H A DNetworkPolicy.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
71 public NetworkPolicy(Parcel in) { argument
72 template = in.readParcelable(null);
73 cycleDay = in.readInt();
74 cycleTimezone = in.readString();
75 warningBytes = in.readLong();
76 limitBytes = in.readLong();
77 lastWarningSnooze = in.readLong();
78 lastLimitSnooze = in
[all...]
/frameworks/base/core/java/android/os/
H A DWorkSource.java17 * Internal statics to avoid object allocations in some operations.
61 WorkSource(Parcel in) { argument
62 mNum = in.readInt();
63 mUids = in.createIntArray();
163 * Merge the contents of <var>other</var> WorkSource in to this one.
258 // Skip uids that already exist or are not in 'other'.
263 // Remove any uids that don't exist in 'other'.
336 public WorkSource createFromParcel(Parcel in) {
337 return new WorkSource(in);

Completed in 596 milliseconds

123456789