Searched refs:destination (Results 1 - 20 of 20) sorted by relevance

/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 DSingleRecipientArrayAdapter.java60 TextView destination = (TextView) view.findViewById(android.R.id.text1);
61 destination.setText(Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress());
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 DRecipientAlternatesAdapter.java283 // If only one has a display name that is not the same as the destination, use it
376 * - This method ignores all other fields and dedupe solely on the destination. Normally,
377 * if a cursor contains multiple contacts and they have the same destination, we'd still want
391 final String destination = original.getString(Query.DESTINATION);
392 if (destinationsSeen.contains(destination)) {
395 destinationsSeen.add(destination);
474 TextView destination = (TextView) view.findViewById(android.R.id.text1);
475 destination.setText(cursor.getString(Queries.Query.DESTINATION));
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/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]));
H A Dring_buffer.h59 // @param destination float buffer to which the samples will be written.
60 void Copy(int reader, float* destination, int num_frames) const;
/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/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...]
/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/tests/coretests/src/android/net/
H A DRouteInfoTest.java47 fail("Expected RuntimeException: destination and gateway null");
50 // Null destination is default route.
75 public PatchedRouteInfo(LinkAddress destination, InetAddress gateway, String iface) {
76 super(destination, gateway, iface);
79 public boolean matches(InetAddress destination) {
80 return super.matches(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/app/
H A DDownloadManager.java45 * request that a URI be downloaded to a particular destination file. The download manager will
101 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
233 * Value of {@link #COLUMN_REASON} when the requested destination file already exists (the
341 * Note that the default download destination is a shared volume where the system might delete
439 * Set the local destination for the downloaded file. Must be a file URI to a path on
457 * Set the local destination for the downloaded file to the system cache dir (/cache).
475 * Set the local destination for the downloaded file to a path within
487 * destination filename
513 * Set the local destination for the downloaded file to a path within
522 * destination filenam
[all...]
/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/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py285 def push(self, source, destination):
286 self._call_adb(*["push", source, destination])
288 # adb forward <source> <destination>
289 def forward(self, source, destination):
290 self._call_adb(*["forward", source, destination])
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java699 final Uri destination = (movedToGlobal != null && movedToGlobal.contains(key))
708 getContentResolver().insert(destination, contentValues);
712 Log.d(TAG, "Restored setting: " + destination + " : "+ key + "=" + value);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s41 ; * is not equal to OMX_VC_INTER4V, the destination
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s41 ; * is not equal to OMX_VC_INTER4V, the destination

Completed in 530 milliseconds