Searched defs:destination (Results 1 - 11 of 11) sorted by relevance

/frameworks/ex/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java53 // Test: add a third row with a non-unique destination.
62 // Test: add a forth row with a non-unique destination again.
74 String destination,
82 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
89 String destination,
99 assertEquals(destination, c.getString(1));
131 // Ensure that if one has a display name different from its destination, and the other's
132 // is equal to its destination, we use the unique one
72 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
87 assertRow(Cursor c, int position, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
/frameworks/base/core/java/android/print/
H A DPrintDocumentAdapter.java68 * pages to the provided destination. The execution of this method is not
234 * @param destination The destination file descriptor to which to write.
241 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
H A DPrintFileDocumentAdapter.java87 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
89 mWriteFileAsyncTask = new WriteFileAsyncTask(destination, cancellationSignal, callback);
102 public WriteFileAsyncTask(ParcelFileDescriptor destination, argument
104 mDestination = destination;
/frameworks/base/services/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java88 private void installFile(File destination, BufferedInputStream stream, int length) argument
92 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
/frameworks/base/core/java/android/net/
H A DRouteInfo.java32 * In order to be used, a route must have a destination prefix and:
47 * The IP destination address for this route.
68 * If destination is null, then gateway must be specified and the
74 * destination and gateway may not both be null.
76 * @param destination the destination prefix
80 public RouteInfo(LinkAddress destination, InetAddress gateway, String iface) { argument
81 if (destination == null) {
84 destination = new LinkAddress(Inet4Address.ANY, 0);
86 destination
111 RouteInfo(LinkAddress destination, InetAddress gateway) argument
283 matches(InetAddress destination) argument
[all...]
/frameworks/ex/variablespeed/jni/
H A Dring_buffer.cc101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const { argument
104 memcpy(destination, samples_ + pos * num_channels_,
105 num_channels_ * num_frames * sizeof(destination[0]));
108 memcpy(destination, samples_ + pos * num_channels_,
109 num_channels_ * wrapped * sizeof(destination[0]));
111 memcpy(destination + wrapped * num_channels_, samples_,
112 num_channels_ * remaining * sizeof(destination[0]));
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java200 * file descriptor pointing to the backup data destination.
307 * will be delivered to the backup destination along with the metadata necessary
313 * @param output The destination to which the backed-up file data will be sent.
450 * The default implementation creates the destination file/directory and populates it
457 * destination. If the file system object being restored is a directory, {@code size}
459 * @param destination The File on disk to be restored with the given data.
462 * @param mode The access mode to be assigned to the destination after its data is
469 File destination, int type, long mode, long mtime)
471 FullBackup.restoreFile(data, size, type, mode, mtime, destination);
532 // with a null destination
468 onRestoreFile(ParcelFileDescriptor data, long size, File destination, int type, long mode, long mtime) argument
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEntry.java55 /** Type of the destination like {@link Email#TYPE_HOME} */
58 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
64 /** ID for the destination */
79 private RecipientEntry(int entryType, String displayName, String destination, argument
85 mDestination = destination;
137 * to avoid confusion and just use the destination instead.
140 String destination) {
141 return (displayNameSource > DisplayNameSources.PHONE) ? displayName : destination;
157 String destination, int destinationType, String destinationLabel, long contactId,
160 displayName, destination), destinatio
139 pickDisplayName(int displayNameSource, String displayName, String destination) argument
156 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, Uri photoThumbnailUri, boolean isValid, boolean isGalContact) argument
164 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String thumbnailUriAsString, boolean isValid, boolean isGalContact) argument
173 constructSecondLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String thumbnailUriAsString, boolean isValid, boolean isGalContact) argument
[all...]
H A DBaseRecipientAdapter.java148 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
159 String destination,
168 this.destination = destination;
180 this.destination = cursor.getString(Queries.Query.DESTINATION);
470 * First, each destination (an email address or a phone number) with a valid contactId is
680 if (existingDestinations.contains(entry.destination)) {
684 existingDestinations.add(entry.destination);
690 entry.destination, entry.destinationType, entry.destinationLabel,
699 entry.destination, entr
157 TemporaryEntry( String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String thumbnailUriString, int displayNameSource, boolean isGalContact) argument
[all...]
H A DRecipientEditTextView.java1084 private static String tokenizeAddress(String destination) { argument
1085 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(destination);
1089 return destination;
1704 // valid contact, but the destination is invalid, then make this a fake
1706 String destination = item.getDestination();
1709 destination, item.isValid());
1712 || TextUtils.equals(item.getDisplayName(), destination)
1713 || (mValidator != null && !mValidator.isValid(destination)))) {
1714 entry = RecipientEntry.constructFakeEntry(destination, item.isValid());
/frameworks/base/libs/hwui/font/
H A DFont.cpp236 SkPoint destination[4]; local
243 destination[0].set(-tangent->fX * halfWidth - tangent->fY * vOffset,
245 destination[1].set(tangent->fX * halfWidth - tangent->fY * vOffset,
247 destination[2].set(destination[1].fX + tangent->fY * height,
248 destination[1].fY - tangent->fX * height);
249 destination[3].set(destination[0].fX + tangent->fY * height,
250 destination[0].fY - tangent->fX * height);
258 position->x() + destination[
[all...]

Completed in 283 milliseconds