Searched defs:dest (Results 1 - 25 of 99) sorted by relevance

1234

/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DUnicodeDialerKeyListener.java33 Spanned dest, int dstart, int dend) {
38 CharSequence result = super.filter(converted, start, end, dest, dstart, dend);
32 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DIconFactory.java65 * @param dest bitmap into which to draw the icon.
69 public static void drawIcon(Bitmap dest, Bitmap sourceImage, boolean scale) { argument
70 if (dest == null || sourceImage == null) {
76 int iconWidth = dest.getWidth();
77 int iconHeight = dest.getHeight();
84 Canvas canvas = new Canvas(dest);
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DUtf8ByteLengthFilter.java48 Spanned dest, int dstart, int dend) {
55 int destLen = dest.length();
60 char c = dest.charAt(i);
68 return null; // use original dest string
80 // reason it is, return null to use the original dest string.
47 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DCaptureRequestProxy.java64 public void writeToParcel(Parcel dest, int flags) { argument
65 mRequest.writeToParcel(dest, flags);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBitmapScreenNail.java58 public void draw(GLCanvas canvas, RectF source, RectF dest) { argument
59 canvas.drawTexture(mBitmapTexture, source, dest);
H A DScreenNail.java34 public void draw(GLCanvas canvas, RectF source, RectF dest); argument
/packages/apps/Nfc/src/com/android/nfc/beam/
H A DBeamTransferRecord.java89 public void writeToParcel(Parcel dest, int flags) { argument
90 dest.writeInt(dataLinkType);
91 dest.writeParcelable(remoteDevice, 0);
92 dest.writeInt(remoteActivating ? 1 : 0);
93 dest.writeInt(uris != null ? uris.length : 0);
95 dest.writeTypedArray(uris, 0);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
H A DPickerColumn.java66 public void writeToParcel(Parcel dest, int flags) { argument
67 dest.writeInt(mItems.length);
68 dest.writeStringArray(mItems);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/
H A DExchangeAttachment.java48 public void writeToParcel(Parcel dest, int flags) { argument
49 super.writeToParcel(dest, flags);
50 dest.writeString(contentId);
51 dest.writeLong(messageKey);
52 dest.writeString(location);
53 dest.writeString(encoding);
54 dest.writeString(content);
55 dest.writeInt(flags);
56 dest.writeLong(accountKey);
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharEscaper.java124 char[] dest = Platform.charBufferFromThreadLocal();
125 int destSize = dest.length;
147 dest = growBuffer(dest, destIndex, destSize);
152 s.getChars(lastEscape, index, dest, destIndex);
156 // Copy the replacement string into the dest buffer as needed.
158 System.arraycopy(r, 0, dest, destIndex, rlen);
171 dest = growBuffer(dest, destIndex, sizeNeeded);
173 s.getChars(lastEscape, slen, dest, destInde
200 growBuffer(char[] dest, int index, int size) argument
[all...]
H A DUnicodeEscaper.java172 char[] dest = Platform.charBufferFromThreadLocal();
193 if (dest.length < sizeNeeded) {
195 dest = growBuffer(dest, destIndex, destLength);
199 s.getChars(unescapedChunkStart, index, dest, destIndex);
203 System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
217 if (dest.length < endIndex) {
218 dest = growBuffer(dest, destIndex, endIndex);
220 s.getChars(unescapedChunkStart, end, dest, destInde
423 growBuffer(char[] dest, int index, int size) argument
[all...]
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.h122 #define dest(a) orig(sym(a)) macro
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DViewIdGenerator.java109 public void writeToParcel(Parcel dest, int flags) { argument
110 dest.writeInt(mNextId);
111 dest.writeBundle(mIdMap);
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DMaterialColorMapUtils.java82 public void writeToParcel(Parcel dest, int flags) { argument
83 dest.writeInt(mPrimaryColor);
84 dest.writeInt(mSecondaryColor);
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.h122 #define dest(a) orig(sym(a)) macro
/packages/apps/Settings/src/com/android/settings/dashboard/
H A DDashboardCategory.java116 public void writeToParcel(Parcel dest, int flags) { argument
117 dest.writeInt(titleRes);
118 dest.writeInt(externalIndex);
119 TextUtils.writeToParcel(title, dest, flags);
120 dest.writeString(key);
123 dest.writeInt(count);
127 tile.writeToParcel(dest, flags);
H A DDashboardTile.java145 public void writeToParcel(Parcel dest, int flags) { argument
146 dest.writeLong(id);
147 dest.writeInt(titleRes);
148 TextUtils.writeToParcel(title, dest, flags);
149 dest.writeInt(summaryRes);
150 TextUtils.writeToParcel(summary, dest, flags);
151 dest.writeInt(iconRes);
152 dest.writeString(iconPkg);
153 dest.writeString(fragment);
154 dest
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
H A DNoneDreamInfoAction.java60 public void writeToParcel(Parcel dest, int flags) { argument
61 dest.writeString(getTitle());
62 dest.writeInt(isChecked() ? 1 : 0);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolderList.java42 public void writeToParcel(Parcel dest, int flags) { argument
43 dest.writeTypedList(folders);
H A DListParams.java66 public void writeToParcel(Parcel dest, int flags) { argument
67 dest.writeInt(mLimit);
68 dest.writeInt(mUseNetwork ? 1 : 0);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderOperation.java97 public void writeToParcel(Parcel dest, int flags) { argument
98 dest.writeByte((byte)(mAdd ? 1 : 0));
99 dest.writeParcelable(mFolder, 0);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DSpannableStringUtils.java37 * <code>destoff...destoff+end-start</code> in <code>dest</code>.
47 * are out of range in <code>dest</code>.
50 Spannable dest, int destoff) {
70 dest.setSpan(spans[i], st - start + destoff, en - start + destoff,
49 copyNonParagraphSuggestionSpansFrom(Spanned source, int start, int end, Spannable dest, int destoff) argument
/packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
H A DDialogSmsDisplayTests.java276 public void sendOnNewIntent(String message, String dest, int notificationId) { argument
281 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, dest);
287 assertEquals(dest, dialogSmsDisplayActivity.mFromAddress);
/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_utilities_indexing.cpp36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal) argument
46 d_bottom=dest+first;
47 d_top=dest+last;
55 *first_equal=d_bottom-dest;
56 *last_equal=d_top-dest;
69 double *dest; local
74 dest=tempA;
79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal);
93 dest=tempA;
/packages/apps/Gallery2/jni/filters/
H A DredEyeMath.c110 void filterRedEye(unsigned char *src, unsigned char *dest, int iw, int ih, short *rect) { argument
150 dest[p + 2] = (0);
151 dest[p + 1] = (0);
152 dest[p] = (0);
155 stuff(r / 2, g / 2, b / 2, dest, p);
157 stuff((2 * r) / 3, (2 * g) / 3, (2 * b) / 3, dest, p);
161 stuff(r, g, b, dest, p);
163 //dest[p + 2] = dest[p + 1] =dest[
[all...]

Completed in 2803 milliseconds

1234