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

1234567891011

/frameworks/base/core/java/android/text/
H A DGetChars.java29 * through <code>end - 1</code> from this CharSequence into <code>dest</code>
32 public void getChars(int start, int end, char[] dest, int destoff); argument
H A DAnnotation.java48 public void writeToParcel(Parcel dest, int flags) { argument
49 dest.writeString(mKey);
50 dest.writeString(mValue);
H A DInputFilter.java27 * range <code>dstart &hellip; dend</code> of <code>dest</code>
34 * you should not attempt to make any changes to <code>dest</code>
43 Spanned dest, int dstart, int dend);
51 Spanned dest, int dstart, int dend) {
83 Spanned dest, int dstart, int dend) {
84 int keep = mMax - (dest.length() - (dend - dstart));
42 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
50 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
82 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
/frameworks/base/core/java/android/text/style/
H A DEasyEditSpan.java42 public void writeToParcel(Parcel dest, int flags) { argument
H A DAlignmentSpan.java45 public void writeToParcel(Parcel dest, int flags) { argument
46 dest.writeString(mAlignment.name());
H A DBackgroundColorSpan.java45 public void writeToParcel(Parcel dest, int flags) { argument
46 dest.writeInt(mColor);
H A DForegroundColorSpan.java45 public void writeToParcel(Parcel dest, int flags) { argument
46 dest.writeInt(mColor);
H A DRelativeSizeSpan.java44 public void writeToParcel(Parcel dest, int flags) { argument
45 dest.writeFloat(mProportion);
H A DScaleXSpan.java44 public void writeToParcel(Parcel dest, int flags) { argument
45 dest.writeFloat(mProportion);
H A DSpellCheckSpan.java56 public void writeToParcel(Parcel dest, int flags) { argument
57 dest.writeInt(mSpellCheckInProgress ? 1 : 0);
H A DStrikethroughSpan.java40 public void writeToParcel(Parcel dest, int flags) { argument
H A DSubscriptSpan.java39 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/tools/aapt/tests/
H A DMockCacheUpdater.h29 // Process an image from source out to dest
30 virtual void processImage(String8 source, String8 dest) { argument
/frameworks/native/opengl/tests/angeles/
H A Dcams.h38 /* Five parameters of src[5] and dest[5]:
41 short src[5], dest[5]; member in struct:__anon1485
/frameworks/base/core/java/android/accounts/
H A DAccount.java66 public void writeToParcel(Parcel dest, int flags) { argument
67 dest.writeString(name);
68 dest.writeString(type);
H A DAccountManagerResponse.java64 public void writeToParcel(Parcel dest, int flags) { argument
65 dest.writeStrongBinder(mResponse.asBinder());
/frameworks/base/core/java/android/content/
H A DContentProviderResult.java53 public void writeToParcel(Parcel dest, int flags) { argument
55 dest.writeInt(1);
56 dest.writeInt(count);
58 dest.writeInt(2);
59 uri.writeToParcel(dest, 0);
H A DPeriodicSync.java50 public void writeToParcel(Parcel dest, int flags) { argument
51 account.writeToParcel(dest, flags);
52 dest.writeString(authority);
53 dest.writeBundle(extras);
54 dest.writeLong(period);
/frameworks/base/core/java/android/content/pm/
H A DPackageCleanItem.java63 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
64 dest.writeInt(userId);
65 dest.writeString(packageName);
66 dest.writeInt(andCode ? 1 : 0);
H A DPackageInfoLite.java64 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
65 dest.writeString(packageName);
66 dest.writeInt(versionCode);
67 dest.writeInt(recommendedInstallLocation);
68 dest.writeInt(installLocation);
71 dest.writeInt(0);
73 dest.writeInt(verifiers.length);
74 dest.writeTypedArray(verifiers, parcelableFlags);
H A DVerifierInfo.java68 public void writeToParcel(Parcel dest, int flags) { argument
69 dest.writeString(packageName);
70 dest.writeSerializable(publicKey);
/frameworks/base/core/java/android/nfc/
H A DApduList.java58 public void writeToParcel(Parcel dest, int flags) { argument
59 dest.writeInt(commands.size());
62 dest.writeInt(cmd.length);
63 dest.writeByteArray(cmd);
H A DTechListParcel.java41 public void writeToParcel(Parcel dest, int flags) { argument
43 dest.writeInt(count);
46 dest.writeStringArray(techList);
/frameworks/base/core/java/android/os/
H A DParcelUuid.java128 public void writeToParcel(Parcel dest, int flags) { argument
129 dest.writeLong(mUuid.getMostSignificantBits());
130 dest.writeLong(mUuid.getLeastSignificantBits());
H A DParcelable.java86 * @param dest The Parcel in which the object should be written.
90 public void writeToParcel(Parcel dest, int flags); argument

Completed in 742 milliseconds

1234567891011