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

/frameworks/ex/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java48 // Test: add a third row with a non-unique destination.
57 // Test: add a forth row with a non-unique destination again.
69 String destination,
77 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
84 String destination,
94 assertEquals(destination, c.getString(1));
67 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
82 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/net/
H A DRouteInfo.java36 * The IP destination address for this route.
48 public RouteInfo(LinkAddress destination, InetAddress gateway) { argument
49 if (destination == null) {
52 destination = new LinkAddress(Inet4Address.ANY, 0);
54 destination = new LinkAddress(Inet6Address.ANY, 0);
57 // no destination, no gateway. invalid.
62 if (destination.getAddress() instanceof Inet4Address) {
68 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
69 destination.getNetworkPrefixLength()), destination
219 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.java169 * file descriptor pointing to the backup data destination.
261 * will be delivered to the backup destination along with the metadata necessary
267 * @param output The destination to which the backed-up file data will be sent.
392 * The default implementation creates the destination file/directory and populates it
399 * destination. If the file system object being restored is a directory, {@code size}
401 * @param destination The File on disk to be restored with the given data.
404 * @param mode The access mode to be assigned to the destination after its data is
411 File destination, int type, long mode, long mtime)
413 FullBackup.restoreFile(data, size, type, mode, mtime, destination);
454 // with a null destination
410 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.java53 /** Type of the destination like {@link Email#TYPE_HOME} */
56 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
62 /** ID for the destination */
89 String destination, int destinationType, String destinationLabel,
94 mDestination = destination;
127 * to avoid confusion and just use the destination instead.
130 String destination) {
131 return (displayNameSource > DisplayNameSources.PHONE) ? displayName : destination;
146 String displayName, int displayNameSource, String destination, int destinationType,
149 destination),
87 RecipientEntry( int entryType, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, Uri photoThumbnailUri, boolean isFirstLevel) argument
129 pickDisplayName(int displayNameSource, String displayName, String destination) argument
145 constructTopLevelEntry( String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, Uri photoThumbnailUri) argument
155 constructTopLevelEntry( String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String thumbnailUriAsString) argument
166 constructSecondLevelEntry( String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String thumbnailUriAsString) argument
[all...]
H A DBaseRecipientAdapter.java145 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
155 this.destination = cursor.getString(Queries.Query.DESTINATION);
444 * First, each destination (an email address or a phone number) with a valid contactId is
638 if (existingDestinations.contains(entry.destination)) {
642 existingDestinations.add(entry.destination);
648 entry.destination, entry.destinationType, entry.destinationLabel,
656 entry.destination, entry.destinationType, entry.destinationLabel,
663 entry.destination, entry.destinationType, entry.destinationLabel,
865 String destination = entry.getDestination();
866 if (TextUtils.isEmpty(displayName) || TextUtils.equals(displayName, destination)) {
[all...]
H A DRecipientEditTextView.java1008 private String tokenizeAddress(String destination) { argument
1009 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(destination);
1013 return destination;
1608 // valid contact, but the destination is invalid, then make this a fake
1610 String destination = item.getDestination();
1613 destination);
1616 || TextUtils.equals(item.getDisplayName(), destination)
1617 || (mValidator != null && !mValidator.isValid(destination)))) {
1618 entry = RecipientEntry.constructFakeEntry(destination);
/frameworks/base/libs/hwui/font/
H A DFont.cpp138 SkPoint destination[4]; local
142 destination[0].set(-tangent->fX * halfWidth - tangent->fY * vOffset,
144 destination[1].set(tangent->fX * halfWidth - tangent->fY * vOffset,
146 destination[2].set(destination[1].fX + tangent->fY * height,
147 destination[1].fY - tangent->fX * height);
148 destination[3].set(destination[0].fX + tangent->fY * height,
149 destination[0].fY - tangent->fX * height);
157 position->fX + destination[
[all...]

Completed in 3218 milliseconds