Searched refs:in (Results 151 - 175 of 286) sorted by relevance

1234567891011>>

/packages/apps/UnifiedEmail/src/com/android/mail/
H A DNotificationActionIntentService.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
94 * Grab the alarm from the intent. Since the remote AlarmManagerService fills in the Intent
102 final Parcel in = Parcel.obtain();
103 in.unmarshall(data, 0, data.length);
104 in.setDataPosition(0);
105 notificationAction = NotificationAction.CREATOR.createFromParcel(in,
/packages/apps/UnifiedEmail/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/experimental/RpcPerformance/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/experimental/StrictModeTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/experimental/procstatlog/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/inputmethods/LatinIME/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/services/Telephony/common/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DViewIdGenerator.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
68 * @param viewIndex index of the view in the parent {@link Editor}, if it's a leave view.
121 public ViewIdGenerator createFromParcel(Parcel in) {
123 vig.readFromParcel(in);
H A DStructuredNameEditorView.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
98 // synced (in order to provide aggregate suggestions).
205 * data structure so it is similar to the user typing the value in on the field directly.
241 private SavedState(Parcel in) { argument
243 mSuperState = in.readParcelable(loader);
245 mChanged = in.readInt() != 0;
246 mSnapshot = in.readParcelable(loader);
261 public SavedState createFromParcel(Parcel in) {
262 return new SavedState(in);
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DItemOperationsParser.java4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
25 * Parse the result of an ItemOperations command; we use this to load attachments in EAS 14.0
35 public ItemOperationsParser(final InputStream in, final OutputStream out, final long size, argument
37 super(in);
50 // Wrap the input stream in our custom base64 input stream
100 * Read the attachment data in chunks and write the data back out to our attachment file
/packages/apps/CellBroadcastReceiver/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
32 # Apk must be signed with platform signature in order to send test broadcasts.
/packages/apps/Exchange/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
49 # additionally, build unit tests in a separate .apk
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DMailbox.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
48 * mailboxes are included in the extra.
121 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in a push only sync");
124 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in an account only sync");
142 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in an account only sync");
153 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in a push only sync");
279 * push if it has a valid, non-initial sync key and is opted in for sync.
326 // Types after this are used for non-mail mailboxes (as in EAS)
338 * If a mailbox type is in thi
845 Mailbox(Parcel in) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppUtility.java6 * Redistribution and use in source and binary forms, with or without
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
132 * Organize Array list for transfers in one batch
157 if (V) Log.d(TAG, "Uri in this batch: " + path.toString());
176 Intent in = new Intent(context, BluetoothOppBtErrorActivity.class);
177 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
178 in.putExtra("title", context.getString(R.string.not_exist_file));
179 in.putExtra("content", context.getString(R.string.not_exist_file_desc));
180 context.startActivity(in);
[all...]
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.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
93 private PhoneItem(Parcel in) { argument
94 this.id = in.readLong();
95 this.phoneNumber = in.readString();
96 this.accountType = in.readString();
97 this.dataSet = in.readString();
98 this.type = in.readLong();
99 this.label = in.readString();
100 this.mimeType = in
[all...]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileUtils.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
50 * Facilities are provided in the following areas:
86 * Instances should NOT be constructed in standard programming.
93 * The number of bytes in a kilobyte.
98 * The number of bytes in a megabyte.
103 * The number of bytes in a gigabyte.
251 * @param directory the directory to search in.
272 * If your search should recurse into subdirectories you can pass in
278 * "temp" you pass in <cod
[all...]
/packages/apps/Contacts/src/com/android/contacts/datepicker/
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
131 * If the user is in a locale where the month names are numeric,
227 /* Remove the 3 pickers from their parent and then add them back in the
284 private SavedState(Parcel in) { argument
285 super(in);
286 mYear = in.readInt();
287 mMonth = in.readInt();
288 mDay = in.readInt();
289 mHasYear = in
[all...]
/packages/apps/Gallery/src/com/android/camera/
H A DImageManager.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
54 * in the media content provider.
91 private ImageListParam(Parcel in) { argument
92 mLocation = DataLocation.values()[in.readInt()];
93 mInclusion = in.readInt();
94 mSort = in.readInt();
95 mBucketId = in.readString();
96 mSingleImageUri = in.readParcelable(null);
97 mIsEmptyImageList = (in
[all...]
/packages/apps/Camera/jni/feature_stab/src/dbregtest/
H A Ddbregtest.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
54 " -r <int> : the period (in nr of frames) for reference frame updates (default = 5)",
124 ifstream in(image_list_file_name.c_str(),ios::in);
126 if ( !in.is_open() )
143 // if the images are color, the input is saved in color_ref:
151 while ( !in.eof() )
153 getline(in,file_name);
/packages/apps/Camera2/jni/feature_stab/src/dbregtest/
H A Ddbregtest.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
54 " -r <int> : the period (in nr of frames) for reference frame updates (default = 5)",
124 ifstream in(image_list_file_name.c_str(),ios::in);
126 if ( !in.is_open() )
143 // if the images are color, the input is saved in color_ref:
151 while ( !in.eof() )
153 getline(in,file_name);
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
H A Ddbregtest.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
54 " -r <int> : the period (in nr of frames) for reference frame updates (default = 5)",
124 ifstream in(image_list_file_name.c_str(),ios::in);
126 if ( !in.is_open() )
143 // if the images are color, the input is saved in color_ref:
151 while ( !in.eof() )
153 getline(in,file_name);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAttachmentTile.java6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
101 * repeatedly as status updates stream in, so only properties with new or changed values will
121 // TODO: This is not an ideal string, but it's too late in KLP to add new strings.
251 public AttachmentPreview createFromParcel(Parcel in) {
252 return new AttachmentPreview(in);
261 private AttachmentPreview(Parcel in) { argument
262 attachmentIdentifier = in.readString();
263 preview = in.readParcelable(null);
H A DThumbnailLoadTask.java6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
40 * Performs the load of a thumbnail bitmap in a background
134 LogUtils.d(LOG_TAG, "in background, src w/h=%d/%d dst w/h=%d/%d, divider=%d",
167 InputStream in = null;
170 in = resolver.openInputStream(thumbnailUri);
171 return Exif.getOrientation(in, -1);
176 if (in != null) {
178 in.close();
191 LogUtils.d(LOG_TAG, "back in U
[all...]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DByteArrayOutputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
27 * This class implements an output stream in which the data is
34 * Closing a <tt>ByteArrayOutputStream</tt> has no effect. The methods in
60 /** The total count of bytes in all the filled buffers. */
77 * the specified size, in bytes.
187 * @param in the input stream to read from
193 public synchronized int write(InputStream in) throws IOException { argument
196 int n = in.read(currentBuffer, inBufferPos, currentBuffer.length - inBufferPos);
205 n = in
[all...]
/packages/apps/Email/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
60 # additionally, build unit tests in a separate .apk

Completed in 577 milliseconds

1234567891011>>