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

123

/packages/apps/Gallery2/jni/filters/
H A Dexposure.c21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
H A Dnegative.c21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
H A Dredeye.c22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
H A Dcontrast.c41 char* destination = 0; local
42 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
43 unsigned char * rgb = (unsigned char * )destination;
H A Dgradient.c22 char* destination = 0; local
33 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
40 int r = destination[RED];
42 destination[RED] = r;
46 int g = destination[GREEN];
48 destination[GREEN] = g;
52 int b = destination[BLUE];
54 destination[BLUE] = b;
H A Dhighlight.c24 char* destination = 0; local
25 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 unsigned char * rgb = (unsigned char * )destination;
H A Dhue.c21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
H A Dshadows.c31 char* destination = 0; local
32 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
33 unsigned char * rgb = (unsigned char * )destination;
H A Dbwfilter.c22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
H A Dedge.c22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
35 char * dst = destination;
38 char * ptr = destination;
H A Dkmeans.cc37 char* destination = 0; local
40 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
43 unsigned char * dst = (unsigned char *) destination;
H A Dsaturated.c21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
36 int r = destination[RED];
37 int g = destination[GREEN];
38 int b = destination[BLUE];
47 destination[RED] = CLAMP(Rc);
48 destination[GREEN] = CLAMP(Gc);
49 destination[BLUE] = CLAMP(Bc);
H A Dvibrance.c22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
38 int r = destination[RED];
39 int g = destination[GREEN];
40 int b = destination[BLUE];
56 destination[RED] = CLAMP(Rc);
57 destination[GREEN] = CLAMP(Gc);
58 destination[BLUE] = CLAMP(Bc);
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DComposedData.java39 * Copy the code points in the typed word to a destination array of ints.
44 * @param destination the array of ints.
48 @Nonnull final int[] destination) {
60 if (codePointSize > destination.length) {
63 return StringUtils.copyCodePointsAndReturnCodePointCount(destination, mTypedWord, 0,
47 copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount( @onnull final int[] destination) argument
/packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
H A DPrefsBackupHelper.java63 private void copyMatchingPreferences(SharedPreferences source, Editor destination) { argument
66 setPreference(destination, preference);
/packages/apps/Messaging/src/com/android/messaging/util/
H A DContactRecipientEntryUtils.java48 * Construct a special "Send to xxx" entry for a given destination.
50 public static RecipientEntry constructSendToDestinationEntry(final String destination) { argument
51 return constructSpecialRecipientEntry(destination, CONTACT_ID_SENDTO_DESTINATION);
57 public static RecipientEntry constructNumberWithAvatarEntry(final String destination) { argument
58 return constructSpecialRecipientEntry(destination, CONTACT_ID_NUMBER_WITH_AVATAR);
61 private static RecipientEntry constructSpecialRecipientEntry(final String destination, argument
63 // For the send-to-destination (e.g. "Send to xxx" in the auto-complete drop-down)
69 destination, RecipientEntry.INVALID_DESTINATION_TYPE, null, contactId,
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DCombinedInputOutput.java216 * @param destination a destination writer.
219 public static void writeDictionaryCombined(final BufferedWriter destination, argument
226 destination.write(CombinedFormatUtils.formatAttributeMap(dict.mOptions.mAttributes));
228 destination.write(CombinedFormatUtils.formatWordProperty(wordProperty));
/packages/apps/DeskClock/src/com/android/deskclock/
H A DDeskClockBackupAgent.java57 public void onRestoreFile(@NonNull ParcelFileDescriptor data, long size, File destination, argument
61 if (destination.getName().endsWith("_preferences.xml")) {
63 destination = new File(destination.getParentFile(), prefFileName);
66 super.onRestoreFile(data, size, destination, type, mode, mtime);
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
H A DDocumentClipper.java78 * @param destination destination document.
79 * @param docStack the document stack to the destination folder (not including the destination
84 DocumentInfo destination,
92 * @param docStack the document stack to the destination folder,
102 * @param destination destination folder
103 * @param docStack the document stack to the destination folder (not including the destination
83 copyFromClipboard( DocumentInfo destination, DocumentStack docStack, FileOperations.Callback callback) argument
108 copyFromClipData( DocumentInfo destination, DocumentStack docStack, ClipData clipData, FileOperations.Callback callback) argument
[all...]
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DCompressJob.java53 * Moves files to a destination identified by {@code destination}.
59 CompressJob(Context service, Listener listener, String id, DocumentStack destination, argument
61 super(service, listener, id, OPERATION_MOVE, destination, srcs, messenger, features);
148 * {@link #mSrcs} is in the same root of destination, and if it's optimized move in the same
171 .append(", destination=" + stack)
H A DMoveJob.java55 * Moves files to a destination identified by {@code destination}.
61 MoveJob(Context service, Listener listener, String id, DocumentStack destination, argument
63 super(service, listener, id, OPERATION_MOVE, destination, srcs, messenger, features);
112 * {@link #mSrcs} is in the same root of destination, and if it's optimized move in the same
193 .append(", destination=" + stack)
H A DResolvedResourcesJob.java50 DocumentStack destination, UrisSupplier srcs, Features features) {
51 super(service, listener, id, opType, destination, srcs, features);
49 ResolvedResourcesJob(Context service, Listener listener, String id, @OpType int opType, DocumentStack destination, UrisSupplier srcs, Features features) argument
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A DTestDocumentClipper.java85 public void copyFromClipboard(DocumentInfo destination, DocumentStack docStack, argument
87 copyFromClip.accept(Pair.create(new DocumentStack(docStack, destination), primaryClip));
96 public void copyFromClipData(DocumentInfo destination, DocumentStack docStack, argument
98 copyFromClip.accept(Pair.create(new DocumentStack(docStack, destination), clipData));
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/services/
H A DAbstractJobTest.java97 final T createJob(@OpType int opType, List<Uri> srcs, Uri srcParent, Uri destination) argument
100 new DocumentStack(mSrcRoot, DocumentInfo.fromUri(mResolver, destination));
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DBugleRecipientEntry.java31 final String destination, final int destinationType, final String destinationLabel,
35 super(entryType, displayName, destination, destinationType, destinationLabel, contactId,
40 final int displayNameSource, final String destination, final int destinationType,
44 return new BugleRecipientEntry(ENTRY_TYPE_PERSON, displayName, destination, destinationType,
50 final int displayNameSource, final String destination, final int destinationType,
54 return new BugleRecipientEntry(ENTRY_TYPE_PERSON, displayName, destination, destinationType,
30 BugleRecipientEntry(final int entryType, final String displayName, final String destination, final int destinationType, final String destinationLabel, final long contactId, final Long directoryId, final long dataId, final Uri photoThumbnailUri, final boolean isFirstLevel, final boolean isValid, final String lookupKey) argument
39 constructTopLevelEntry(final String displayName, final int displayNameSource, final String destination, final int destinationType, final String destinationLabel, final long contactId, final Long directoryId, final long dataId, final String thumbnailUriAsString, final boolean isValid, final String lookupKey) argument
49 constructSecondLevelEntry(final String displayName, final int displayNameSource, final String destination, final int destinationType, final String destinationLabel, final long contactId, final Long directoryId, final long dataId, final String thumbnailUriAsString, final boolean isValid, final String lookupKey) argument

Completed in 594 milliseconds

123