Searched refs:dest (Results 226 - 250 of 291) sorted by last modified time

1234567891011>>

/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java189 public void getChars(int start, int end, char[] dest, int off) { argument
190 TextUtils.getChars(mSource, start, end, dest, off);
227 dest[i - start + off] = DOT;
H A DReplacementTransformationMethod.java150 public void getChars(int start, int end, char[] dest, int off) { argument
151 TextUtils.getChars(mSource, start, end, dest, off);
156 char c = dest[i];
160 dest[i] = mReplacement[j];
/frameworks/base/core/java/android/text/style/
H A DAbsoluteSizeSpan.java59 public void writeToParcel(Parcel dest, int flags) { argument
60 dest.writeInt(mSize);
61 dest.writeInt(mDip ? 1 : 0);
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 DBulletSpan.java70 public void writeToParcel(Parcel dest, int flags) { argument
71 dest.writeInt(mGapWidth);
72 dest.writeInt(mWantColor ? 1 : 0);
73 dest.writeInt(mColor);
H A DEasyEditSpan.java42 public void writeToParcel(Parcel dest, int flags) { argument
H A DForegroundColorSpan.java45 public void writeToParcel(Parcel dest, int flags) { argument
46 dest.writeInt(mColor);
H A DLeadingMarginSpan.java128 public void writeToParcel(Parcel dest, int flags) { argument
129 dest.writeInt(mFirst);
130 dest.writeInt(mRest);
H A DLocaleSpan.java56 public void writeToParcel(Parcel dest, int flags) { argument
57 dest.writeString(mLocale.getLanguage());
58 dest.writeString(mLocale.getCountry());
59 dest.writeString(mLocale.getVariant());
H A DQuoteSpan.java54 public void writeToParcel(Parcel dest, int flags) { argument
55 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 DStyleSpan.java60 public void writeToParcel(Parcel dest, int flags) { argument
61 dest.writeInt(mStyle);
H A DSubscriptSpan.java39 public void writeToParcel(Parcel dest, int flags) { argument
H A DSuggestionRangeSpan.java48 public void writeToParcel(Parcel dest, int flags) { argument
49 dest.writeInt(mBackgroundColor);
H A DSuggestionSpan.java238 public void writeToParcel(Parcel dest, int flags) { argument
239 dest.writeStringArray(mSuggestions);
240 dest.writeInt(mFlags);
241 dest.writeString(mLocaleString);
242 dest.writeString(mNotificationTargetClassName);
243 dest.writeInt(mHashCode);
244 dest.writeInt(mEasyCorrectUnderlineColor);
245 dest.writeFloat(mEasyCorrectUnderlineThickness);
246 dest.writeInt(mMisspelledUnderlineColor);
247 dest
[all...]
H A DSuperscriptSpan.java39 public void writeToParcel(Parcel dest, int flags) { argument
H A DTextAppearanceSpan.java146 public void writeToParcel(Parcel dest, int flags) { argument
147 dest.writeString(mTypeface);
148 dest.writeInt(mStyle);
149 dest.writeInt(mTextSize);
151 dest.writeInt(1);
152 mTextColor.writeToParcel(dest, flags);
154 dest.writeInt(0);
157 dest.writeInt(1);
158 mTextColorLink.writeToParcel(dest, flags);
160 dest
[all...]
H A DTypefaceSpan.java52 public void writeToParcel(Parcel dest, int flags) { argument
53 dest.writeString(mFamily);
H A DURLSpan.java48 public void writeToParcel(Parcel dest, int flags) { argument
49 dest.writeString(mURL);
H A DUnderlineSpan.java40 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/core/java/android/view/
H A DAbsSavedState.java70 public void writeToParcel(Parcel dest, int flags) { argument
71 dest.writeParcelable(mSuperState, flags);

Completed in 116 milliseconds

1234567891011>>