Searched refs:destination (Results 1 - 25 of 108) sorted by last modified time

12345

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/buildSrc/
H A Dinit.gradle300 zipTask.from(junitReport.destination)
/frameworks/support/development/checkstyle/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/rs/script_api/include/
H A Drs_matrix.rsh228 * If loading from a matrix and the source is smaller than the destination, the rest
229 * of the destination is filled with elements of the identity matrix. E.g.
239 * destination: Matrix to set.
244 rsMatrixLoad(rs_matrix4x4* destination, const float* array);
247 rsMatrixLoad(rs_matrix3x3* destination, const float* array);
250 rsMatrixLoad(rs_matrix2x2* destination, const float* array);
253 rsMatrixLoad(rs_matrix4x4* destination, const rs_matrix4x4* source);
256 rsMatrixLoad(rs_matrix3x3* destination, const rs_matrix3x3* source);
259 rsMatrixLoad(rs_matrix2x2* destination, const rs_matrix2x2* source);
262 rsMatrixLoad(rs_matrix4x4* destination, cons
[all...]
/frameworks/rs/script_api/
H A Drs_convert.spec41 Converting numbers too large to fit the destination type yields undefined results.
H A Drs_graphics.spec64 summary: Blend destination function
880 summary: Get program store blend destination function
882 Get program store blend destination function
H A Drs_matrix.spec215 arg: #1* destination, "Matrix to set."
225 If loading from a matrix and the source is smaller than the destination, the rest
226 of the destination is filled with elements of the identity matrix. E.g.
240 arg: #1* destination
248 arg: rs_matrix4x4* destination
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java141 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
153 String destination,
163 this.destination = destination;
176 this.destination = cursor.getString(Queries.Query.DESTINATION);
510 * First, each destination (an email address or a phone number) with a valid contactId is
807 if (existingDestinations.contains(entry.destination)) {
811 existingDestinations.add(entry.destination);
817 entry.destination, entry.destinationType, entry.destinationLabel,
826 entry.destination, entr
151 TemporaryEntry( String displayName, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriString, int displayNameSource, String lookupKey) argument
[all...]
H A DCircularImageView.java27 private final RectF destination; field in class:CircularImageView
44 destination = new RectF();
80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(),
83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination);
88 * mask. Only draws a circle with diameter equal to the destination width.
93 * @param dest The destination bound on the canvas.
H A DDropdownChipLayouter.java122 CharSequence destination = styledResults[1];
133 if (TextUtils.isEmpty(displayName) || TextUtils.equals(displayName, destination)) {
134 displayName = destination;
136 // We only show the destination for secondary entries, so clear it only for the
139 destination = null;
169 destination = Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress();
176 bindTextToView(destination, viewHolder.destinationView);
354 * Each View must contain two TextViews (for display name and destination) and one ImageView
372 * Each View must contain two TextViews (for display name and destination) and one ImageView
411 * Returns an id for TextView in an item View for showing a destination
[all...]
H A DRecipientAlternatesAdapter.java316 // If only one has a display name that is not the same as the destination, use it
454 * - This method ignores all other fields and dedupe solely on the destination. Normally,
455 * if a cursor contains multiple contacts and they have the same destination, we'd still want
500 final String destination = original.getString(Query.DESTINATION);
501 if (destinationsSeen.contains(destination)) {
504 destinationsSeen.add(destination);
H A DRecipientEditTextView.java1090 * Draws the icon onto the canvas given the source rectangle of the bitmap and the destination
1108 * Draws the icon onto the canvas given the source rectangle of the bitmap and the destination
1548 private static String tokenizeAddress(String destination) { argument
1549 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(destination);
1553 return destination;
2290 // valid contact, but the destination is invalid, then make this a fake
2292 String destination = item.getDestination();
2295 destination, item.isValid());
2298 || TextUtils.equals(item.getDisplayName(), destination)
2299 || (mValidator != null && !mValidator.isValid(destination)))) {
[all...]
H A DRecipientEntry.java64 /** Type of the destination like {@link Email#TYPE_HOME} */
67 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
75 /** ID for the destination */
101 protected RecipientEntry(int entryType, String displayName, String destination, argument
105 this(entryType, displayName, destination, destinationType,
110 protected RecipientEntry(int entryType, String displayName, String destination, argument
117 mDestination = destination;
133 protected RecipientEntry(int entryType, String displayName, String destination, argument
137 this(entryType, displayName, destination, destinationType, destinationLabel,
191 String destination, in
190 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isValid, String lookupKey) argument
200 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
211 constructSecondLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
245 pickDisplayName(int displayNameSource, String displayName, String destination) argument
[all...]
/frameworks/opt/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java56 // Test: add a third row with a non-unique destination.
66 // Test: add a forth row with a non-unique destination again.
79 String destination,
87 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
94 String destination,
104 assertEquals(destination, c.getString(1));
136 // Ensure that if one has a display name different from its destination, and the other's
137 // is equal to its destination, we use the unique one
77 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
92 assertRow(Cursor c, int position, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/developmentPlugins/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/extensions/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/App With Spaces/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 4537 milliseconds

12345