Searched refs:dest (Results 201 - 225 of 291) sorted by last modified time

1234567891011>>

/frameworks/base/core/java/android/os/
H A DStrictMode.java2120 public void writeToParcel(Parcel dest, int flags) { argument
2121 crashInfo.writeToParcel(dest, flags);
2122 dest.writeInt(policy);
2123 dest.writeInt(durationMillis);
2124 dest.writeInt(violationNumThisLoop);
2125 dest.writeInt(numAnimationsRunning);
2126 dest.writeLong(violationUptimeMillis);
2127 dest.writeLong(numInstances);
2128 dest.writeString(broadcastIntentAction);
2129 dest
[all...]
H A DWorkSource.java315 public void writeToParcel(Parcel dest, int flags) { argument
316 dest.writeInt(mNum);
317 dest.writeIntArray(mUids);
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java456 public void writeToParcel(Parcel dest, int flags) { argument
457 super.writeToParcel(dest, flags);
458 dest.writeInt(isDialogShowing ? 1 : 0);
459 dest.writeBundle(dialogBundle);
H A DEditTextPreference.java213 public void writeToParcel(Parcel dest, int flags) { argument
214 super.writeToParcel(dest, flags);
215 dest.writeString(text);
H A DListPreference.java316 public void writeToParcel(Parcel dest, int flags) { argument
317 super.writeToParcel(dest, flags);
318 dest.writeString(value);
H A DMultiCheckPreference.java306 public void writeToParcel(Parcel dest, int flags) { argument
307 super.writeToParcel(dest, flags);
308 dest.writeBooleanArray(values);
H A DMultiSelectListPreference.java259 public void writeToParcel(Parcel dest, int flags) { argument
260 super.writeToParcel(dest, flags);
261 dest.writeStringArray(values.toArray(new String[0]));
H A DPreferenceActivity.java451 public void writeToParcel(Parcel dest, int flags) { argument
452 dest.writeLong(id);
453 dest.writeInt(titleRes);
454 TextUtils.writeToParcel(title, dest, flags);
455 dest.writeInt(summaryRes);
456 TextUtils.writeToParcel(summary, dest, flags);
457 dest.writeInt(breadCrumbTitleRes);
458 TextUtils.writeToParcel(breadCrumbTitle, dest, flags);
459 dest.writeInt(breadCrumbShortTitleRes);
460 TextUtils.writeToParcel(breadCrumbShortTitle, dest, flag
[all...]
H A DPreferenceScreen.java263 public void writeToParcel(Parcel dest, int flags) { argument
264 super.writeToParcel(dest, flags);
265 dest.writeInt(isDialogShowing ? 1 : 0);
266 dest.writeBundle(dialogBundle);
H A DSeekBarPreference.java223 public void writeToParcel(Parcel dest, int flags) { argument
224 super.writeToParcel(dest, flags);
227 dest.writeInt(progress);
228 dest.writeInt(max);
H A DTwoStatePreference.java280 public void writeToParcel(Parcel dest, int flags) { argument
281 super.writeToParcel(dest, flags);
282 dest.writeInt(checked ? 1 : 0);
H A DVolumePreference.java194 public void writeToParcel(Parcel dest, int flags) { argument
195 super.writeToParcel(dest, flags);
196 dest.writeInt(mVolumeStore.volume);
197 dest.writeInt(mVolumeStore.originalVolume);
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java105 public void getChars(int start, int end, char[] dest, int off) { argument
106 TextUtils.getChars(mSource, start, end, dest, off);
112 System.arraycopy(mChars, start - mStart, dest, off, end - start);
H A DAndroidCharacter.java33 * Fill in the first <code>count</code> bytes of <code>dest</code> with the
38 public native static void getDirectionalities(char[] src, byte[] dest, argument
55 * Fill the first <code>count</code> bytes of <code>dest</code> with the
59 * in <code>dest</code> will be one of {@link #EAST_ASIAN_WIDTH_NEUTRAL},
67 * @param dest byte array of results for each character in src
70 int count, byte[] dest);
69 getEastAsianWidths(char[] src, int start, int count, byte[] dest) argument
H A DAnnotation.java48 public void writeToParcel(Parcel dest, int flags) { argument
49 dest.writeString(mKey);
50 dest.writeString(mValue);
H A DAutoText.java184 String dest = parser.getText();
187 if (dest.equals(odest)) {
191 right.append((char) dest.length());
192 right.append(dest);
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 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
H A DLayout.java1265 public void getCursorPath(int point, Path dest, argument
1267 dest.reset();
1296 dest.moveTo(h1, top);
1297 dest.lineTo(h1, bottom);
1299 dest.moveTo(h1, top);
1300 dest.lineTo(h1, (top + bottom) >> 1);
1302 dest.moveTo(h2, (top + bottom) >> 1);
1303 dest.lineTo(h2, bottom);
1307 dest.moveTo(h2, bottom);
1308 dest
1339 addSelection(int line, int start, int end, int top, int bottom, Path dest) argument
1378 getSelectionPath(int start, int end, Path dest) argument
1708 ellipsize(int start, int end, int line, char[] dest, int destoff, TextUtils.TruncateAt method) argument
1790 getChars(int start, int end, char[] dest, int destoff) argument
[all...]
H A DLoginFilter.java42 * range <code>dstart &hellip; dend</code> of <code>dest</code>
51 Spanned dest, int dstart, int dend) {
54 // Scan through beginning characters in dest, calling onInvalidCharacter()
57 char c = dest.charAt(i);
86 // Scan through remaining characters in dest, calling onInvalidCharacter()
88 for (int i = dend; i < dest.length(); i++) {
89 char c = dest.charAt(i);
50 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
H A DSpannableStringBuilder.java912 public void getChars(int start, int end, char[] dest, int destoff) { argument
916 System.arraycopy(mText, start, dest, destoff, end - start);
918 System.arraycopy(mText, start + mGapLength, dest, destoff, end - start);
920 System.arraycopy(mText, start, dest, destoff, mGapStart - start);
922 dest, destoff + (mGapStart - start),
H A DSpannableStringInternal.java69 public final void getChars(int start, int end, char[] dest, int off) { argument
70 mText.getChars(start, end, dest, off);
H A DTextUtils.java64 char[] dest, int destoff) {
68 ((String) s).getChars(start, end, dest, destoff);
70 ((StringBuffer) s).getChars(start, end, dest, destoff);
72 ((StringBuilder) s).getChars(start, end, dest, destoff);
74 ((GetChars) s).getChars(start, end, dest, destoff);
77 dest[destoff++] = s.charAt(i);
530 public void getChars(int start, int end, char[] dest, int destoff) { argument
532 dest, destoff);
533 AndroidCharacter.mirror(dest, 0, end - start);
538 char tmp = dest[destof
63 getChars(CharSequence s, int start, int end, char[] dest, int destoff) argument
983 copySpansFrom(Spanned source, int start, int end, Class kind, Spannable dest, int destoff) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java130 Spanned dest, int dstart, int dend) {
131 CharSequence out = super.filter(source, start, end, dest, dstart, dend);
145 int dlen = dest.length();
152 char c = dest.charAt(i);
161 char c = dest.charAt(i);
129 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
H A DNumberKeyListener.java48 Spanned dest, int dstart, int dend) {
47 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument

Completed in 152 milliseconds

1234567891011>>