Searched refs:dest (Results 226 - 250 of 291) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/preference/
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]));
/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 DNumberKeyListener.java48 Spanned dest, int dstart, int dend) {
47 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
/frameworks/base/tools/aapt/
H A DXMLNode.h137 status_t flatten(const sp<AaptFile>& dest, bool stripComments,
172 status_t collect_strings(StringPool* dest, Vector<uint32_t>* outResIds,
181 status_t flatten_node(const StringPool& strings, const sp<AaptFile>& dest,
/frameworks/base/core/java/android/text/
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/content/res/
H A DCompatibilityInfo.java573 public void writeToParcel(Parcel dest, int flags) { argument
574 dest.writeInt(mCompatibilityFlags);
575 dest.writeInt(applicationDensity);
576 dest.writeFloat(applicationScale);
577 dest.writeFloat(applicationInvertedScale);
/frameworks/base/core/java/android/view/
H A DSurface.java276 private native void nativeWriteToParcel(Parcel dest); argument
715 public void writeToParcel(Parcel dest, int flags) { argument
716 if (dest == null) {
717 throw new IllegalArgumentException("dest must not be null");
720 dest.writeString(mName);
721 nativeWriteToParcel(dest);
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java346 protected boolean allowFilterResult(F filter, List<R> dest) { argument
467 HashMap<String, F[]> dest, String prefix) {
477 addFilter(dest, name, filter);
483 HashMap<String, F[]> dest, String prefix) {
493 remove_all_objects(dest, name, filter);
536 String resolvedType, String scheme, F[] src, List<R> dest, int userId) {
567 if (!allowFilterResult(filter, dest)) {
581 dest.add(oneResult);
601 if (dest.size() == 0 && hasNonDefaults) {
716 @Override protected boolean allowFilterResult(F filter, List<R> dest) {
466 register_intent_filter(F filter, Iterator<String> i, HashMap<String, F[]> dest, String prefix) argument
482 unregister_intent_filter(F filter, Iterator<String> i, HashMap<String, F[]> dest, String prefix) argument
534 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java145 public void writeToParcel(Parcel dest, int flags) { argument
146 dest.writeIntArray(mOps);
147 dest.writeInt(mTransition);
148 dest.writeInt(mTransitionStyle);
149 dest.writeString(mName);
150 dest.writeInt(mIndex);
151 dest.writeInt(mBreadCrumbTitleRes);
152 TextUtils.writeToParcel(mBreadCrumbTitleText, dest, 0);
153 dest.writeInt(mBreadCrumbShortTitleRes);
154 TextUtils.writeToParcel(mBreadCrumbShortTitleText, dest,
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java145 public void writeToParcel(Parcel dest, int flags) { argument
146 dest.writeIntArray(mOps);
147 dest.writeInt(mTransition);
148 dest.writeInt(mTransitionStyle);
149 dest.writeString(mName);
150 dest.writeInt(mIndex);
151 dest.writeInt(mBreadCrumbTitleRes);
152 TextUtils.writeToParcel(mBreadCrumbTitleText, dest, 0);
153 dest.writeInt(mBreadCrumbShortTitleRes);
154 TextUtils.writeToParcel(mBreadCrumbShortTitleText, dest,
[all...]
/frameworks/base/cmds/rawbu/
H A Dbackup.cpp196 static int copy_file(FILE* dest, FILE* src, off_t size, const char* destName, argument
216 int writeLen = fwrite(copyBuffer, 1, readLen, dest);
573 FILE* dest = fopen(path, "w"); local
574 if (dest == NULL) {
581 int copyres = copy_file(dest, fh, size, path, NULL);
582 fclose(dest);
/frameworks/base/core/java/android/database/
H A DCursorWindow.java697 public void writeToParcel(Parcel dest, int flags) { argument
700 dest.writeInt(mStartPos);
701 nativeWriteToParcel(mWindowPtr, dest);
/frameworks/base/core/java/android/widget/
H A DTimePicker.java334 public void writeToParcel(Parcel dest, int flags) { argument
335 super.writeToParcel(dest, flags);
336 dest.writeInt(mHour);
337 dest.writeInt(mMinute);
H A DDatePicker.java799 public void writeToParcel(Parcel dest, int flags) { argument
800 super.writeToParcel(dest, flags);
801 dest.writeInt(mYear);
802 dest.writeInt(mMonth);
803 dest.writeInt(mDay);
H A DExpandableListConnector.java923 public void writeToParcel(Parcel dest, int flags) { argument
924 dest.writeInt(flPos);
925 dest.writeInt(lastChildFlPos);
926 dest.writeInt(gPos);
927 dest.writeLong(gId);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c86 void H264SwDecMemcpy(void *dest, void *src, u32 count) { argument
87 memcpy(dest, src, count);
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java308 public void writeToParcel(Parcel dest, int flags) { argument
309 dest.writeByteArray(mData);
/frameworks/base/libs/hwui/
H A DFontRenderer.h179 static void horizontalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest,
181 static void verticalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest,
/frameworks/base/native/android/
H A Dconfiguration.cpp40 void AConfiguration_copy(AConfiguration* dest, AConfiguration* src) { argument
41 *dest = *src;
/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...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java1160 public void writeToParcel(Parcel dest, int flags) { argument
1161 super.writeToParcel(dest, flags);
1162 dest.writeString(mSerializedPattern);
1163 dest.writeInt(mDisplayMode);
1164 dest.writeValue(mInputEnabled);
1165 dest.writeValue(mInStealthMode);
1166 dest.writeValue(mTactileFeedbackEnabled);
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java445 * @param dest The {@link Parcel} to be written.
448 public void writeToParcel(Parcel dest, int flags) { argument
449 mReceiver.writeToParcel(dest, flags);
450 dest.writeInt(mUsesPolicies);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java726 public void writeToParcel(Parcel dest, int flags) { argument
727 super.writeToParcel(dest, flags);
728 dest.writeInt(focusedPosition);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java606 public void writeToParcel(Parcel dest, int flags) { argument
608 dest.writeInt(count);
610 dest.writeInt(keyAt(i));
611 dest.writeParcelable(valueAt(i), 0);

Completed in 397 milliseconds

1234567891011>>