Searched defs:in (Results 226 - 250 of 410) sorted by relevance

1234567891011>>

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentInfo.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
90 public void read(DataInputStream in) throws IOException { argument
91 final int version = in.readInt();
96 authority = DurableUtils.readNullableString(in);
97 documentId = DurableUtils.readNullableString(in);
98 mimeType = DurableUtils.readNullableString(in);
99 displayName = DurableUtils.readNullableString(in);
100 lastModified = in.readLong();
101 flags = in
[all...]
H A DRootInfo.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
82 public void read(DataInputStream in) throws IOException { argument
83 final int version = in.readInt();
86 authority = DurableUtils.readNullableString(in);
87 rootId = DurableUtils.readNullableString(in);
88 flags = in.readInt();
89 icon = in.readInt();
90 title = DurableUtils.readNullableString(in);
91 summary = DurableUtils.readNullableString(in);
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrengthCdma.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
155 // Ec/Io are in dB*10
183 // Ec/Io are in dB*10
234 * Get the CDMA RSSI value in dBm
245 * Get the CDMA Ec/Io value in dB*10
256 * Get the EVDO RSSI value in dBm
267 * Get the EVDO Ec/Io value in dB*10
346 private CellSignalStrengthCdma(Parcel in) { argument
350 mCdmaDbm = in
[all...]
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramData.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 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */
108 CdmaSmsCbProgramData(Parcel in) { argument
109 mOperation = in.readInt();
110 mCategory = in.readInt();
111 mLanguage = in.readInt();
112 mMaxMessages = in.readInt();
113 mAlertOption = in.readInt();
114 mCategoryName = in
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsStreamMediaProfile.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
74 public ImsStreamMediaProfile(Parcel in) { argument
75 readFromParcel(in);
121 private void readFromParcel(Parcel in) { argument
122 mAudioQuality = in.readInt();
123 mAudioDirection = in.readInt();
124 mVideoQuality = in.readInt();
125 mVideoDirection = in.readInt();
131 public ImsStreamMediaProfile createFromParcel(Parcel in) {
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDatePicker.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
119 * If the user is in a locale where the month names are numeric,
210 * If the user is in a locale where the medium date format is
225 // Shouldn't happen, but just in case.
229 /* Remove the 3 pickers from their parent and then add them back in the
259 // Shouldn't happen, but just in case.
310 private SavedState(Parcel in) { argument
311 super(in);
312 mYear = in
[all...]
/frameworks/base/tools/aapt2/
H A DSourceXmlPullParser.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
28 SourceXmlPullParser::SourceXmlPullParser(std::istream& in) : mIn(in), mEmpty(), mDepth(0) { argument
227 // Insert in sorted order.
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pWfdInfo.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
177 public void readFromParcel(Parcel in) { argument
178 mWfdEnabled = (in.readInt() == 1);
179 mDeviceInfo = in.readInt();
180 mCtrlPort = in.readInt();
181 mMaxThroughput = in.readInt();
187 public WifiP2pWfdInfo createFromParcel(Parcel in) {
189 device.readFromParcel(in);
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.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
236 FILE *in = fopen(inFile.c_str(), "r"); local
237 if (!in) {
245 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
250 fclose(in);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp162 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); local
163 for (in = inBegin; in != inEnd; ++in) {
164 if (*in != NULL)
165 delete *in;
177 Output::const_iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); local
178 for (in = inBegin; in != inEnd; ++in) {
190 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); local
229 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); local
264 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); local
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DDecodeTask.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
39 * decode is complete, even if the task is cancelled, the result is placed in the given cache.
122 InputStream in = null;
130 in = reset(in);
131 if (in == null) {
169 in = new AutoCloseInputStream(orientationFd);
172 orientation = Exif.getOrientation(in, byteSize);
176 in
471 reset(InputStream in) argument
488 decode(ParcelFileDescriptor fd, InputStream in) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
H A DMIMEContainer.java36 * @param in A reader to read MIME data from; Note that the charset should be ISO-8859-1 to
39 * @param boundary A boundary string for the MIME section that this container is in.
43 public MIMEContainer(LineNumberReader in, String boundary) throws IOException { argument
44 Map<String,List<String>> headers = parseHeader(in);
48 throw new IOException("Missing " + Type + " @ " + in.getLineNumber());
84 String line = in.readLine();
87 in.getLineNumber());
97 MIMEContainer container = new MIMEContainer(in, subBoundary);
130 mText = recode(getBody(in, boundary, quoted, eof), charset);
196 private static Map<String,List<String>> parseHeader(LineNumberReader in) throw argument
253 getBody(LineNumberReader in, String boundary, boolean quoted, AtomicBoolean eof) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java114 throw new IOException(ValueTag + " in constructed node");
128 throw new IOException("No text in " + DDFNameTag);
199 public static MOTree unmarshal(InputStream in) throws IOException { argument
203 int octet = in.read();
217 String version = OMAConstants.deserializeString(in);
218 String urn = OMAConstants.readURN(in);
220 OMAConstructed root = OMANode.unmarshal(in);
/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java5 * use this file except in compliance with the License. You may obtain a copy of
10 * Unless required by applicable law or agreed to in writing, software
36 * in the database cursor returned by the ContentProvider.
89 private CellBroadcastMessage(Parcel in) { argument
90 mSmsCbMessage = new SmsCbMessage(in);
91 mDeliveryTime = in.readLong();
92 mIsRead = (in.readInt() != 0);
93 mSubId = in.readInt();
113 public CellBroadcastMessage createFromParcel(Parcel in) {
114 return new CellBroadcastMessage(in);
[all...]
H A DSmsCbMessage.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
27 * <li>opt-in informational broadcasts, e.g. news, weather, stock quotes, sports scores</li>
29 * roaming purposes (required to display on the idle screen in Brazil)</li>
37 * two completely different concepts in 3GPP and CDMA.
40 * of the equivalent field in CDMA. In both cases the service category is a 16-bit value, but 3GPP
49 * Service Area in UMTS). The relevant values are concatenated into a single String which will be
160 public SmsCbMessage(Parcel in) { argument
161 mMessageFormat = in.readInt();
162 mGeographicalScope = in
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.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
60 // Event values in SETUP_EVENT_LIST Proactive Command as per ETSI 102.223
130 public CatCmdMessage(Parcel in) { argument
131 mCmdDet = in.readParcelable(null);
132 mTextMsg = in.readParcelable(null);
133 mMenu = in.readParcelable(null);
134 mInput = in.readParcelable(null);
135 mLoadIconFailed = (in.readByte() == 1);
139 mBrowserSettings.url = in
[all...]
H A DTone.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
100 * This tone is to be used in critical situations. The terminal shall make
102 * from the volume setting in the terminal.
169 Tone(Parcel in) { argument
170 mValue = in.readInt();
185 public Tone createFromParcel(Parcel in) {
186 return Tone.values()[in.readInt()];
/frameworks/rs/api/
H A DUtilities.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
30 " * you may not use this file except in compliance with the License.\n"
35 " * Unless required by applicable law or agreed to in writing, software\n"
99 string in = stringReplace(html, "<li>", "- "); local
101 for (size_t start = 0; start < in.size(); start++) {
102 size_t lt = in.find('<', start);
104 out += in.substr(start);
107 out += in.substr(start, lt - start);
108 if (isalpha(in[l
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsic3DLUT.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
55 extern "C" void rsdIntrinsic3DLUT_K(void *dst, void const *in, size_t count,
67 uchar4 *in = (uchar4 *)info->inPtr[0]; local
90 rsdIntrinsic3DLUT_K(out, in, len,
95 in += len;
101 int4 baseCoord = convert_int4(*in) * coordMul;
136 ret.w = in->w;
140 ALOGE("in %08x %08x %08x %08x", in
[all...]
H A DrsCpuIntrinsicHistogram.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
174 uchar *in = (uchar *)info->inPtr[0]; local
178 sums[(in[0] << 2) ] ++;
179 sums[(in[1] << 2) + 1] ++;
180 sums[(in[2] << 2) + 2] ++;
181 sums[(in[3] << 2) + 3] ++;
182 in += info->inStride[0];
191 uchar *in = (uchar *)info->inPtr[0]; local
195 sums[(in[
207 uchar *in = (uchar *)info->inPtr[0]; local
222 uchar *in = (uchar *)info->inPtr[0]; local
240 uchar *in = (uchar *)info->inPtr[0]; local
257 uchar *in = (uchar *)info->inPtr[0]; local
273 uchar *in = (uchar *)info->inPtr[0]; local
288 uchar *in = (uchar *)info->inPtr[0]; local
[all...]
/frameworks/rs/
H A DrsScriptC_Lib.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
94 // have to apply locking for proper behavior in RenderScript.
239 Allocation *in, Allocation *out,
243 if (in == nullptr) {
248 const Allocation *ins[1] = {in};
237 rsrForEach(Context *rsc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
/frameworks/support/design/src/android/support/design/widget/
H A DNavigationView.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
221 * <p>Existing items in the menu will not be modified or removed.</p>
346 * Sets the currently checked item in this navigation menu.
401 * Called when an item in the navigation menu is selected.
417 public SavedState(Parcel in) { argument
418 super(in);
419 menuState = in.readBundle();
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.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
89 private SavedState(Parcel in) { argument
90 super(in);
91 curTab = in.readString();
109 public SavedState createFromParcel(Parcel in) {
110 return new SavedState(in);
121 // because the simple Context construct can result in a broken object!
259 // This fragment was restored in the active state,
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentTabHost.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
36 * its tab content. When placing this in a view hierarchy, after inflating
40 * <p>Here is a simple example of using a FragmentTabHost in an Activity:
97 private SavedState(Parcel in) { argument
98 super(in);
99 curTab = in.readString();
117 public SavedState createFromParcel(Parcel in) {
118 return new SavedState(in);
129 // because the simple Context construct can result in
[all...]
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaDescriptionCompat.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
83 private MediaDescriptionCompat(Parcel in) { argument
84 mMediaId = in.readString();
85 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
86 mSubtitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
87 mDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
88 mIcon = in.readParcelable(null);
89 mIconUri = in.readParcelable(null);
90 mExtras = in
[all...]

Completed in 856 milliseconds

1234567891011>>