Searched refs:dest (Results 401 - 425 of 545) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c124 int ReadFile2Buf(FILE* infile,unsigned char* dest,int readSize) argument
127 readBytes = fread(dest, 1, readSize, infile);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DEvaluationTestBench.c331 library function memcpy to copy src to dest.
334 void H264SwDecMemcpy(void *dest, void *src, u32 count) argument
336 memcpy(dest, src, count);
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java980 public void writeToParcel(Parcel dest, int flags) { argument
981 dest.writeInt(mTnf);
982 dest.writeInt(mType.length);
983 dest.writeByteArray(mType);
984 dest.writeInt(mId.length);
985 dest.writeByteArray(mId);
986 dest.writeInt(mPayload.length);
987 dest.writeByteArray(mPayload);
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java179 * one best-match item from {@code source} to {@code dest}. For example, if
182 * French locale from {@code source} to {@code dest}. Here the best matching English locale
190 * @param dest Destination into which the filtered items will be added.
198 @NonNull ArrayList<T> dest) {
223 dest.add(sources.get(entry.mIndex));
194 filterByLanguage( @onNull List<T> sources, @NonNull LocaleExtractor<T> extractor, @NonNull LocaleList preferredLanguages, @NonNull ArrayList<T> dest) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java2027 public void writeToParcel(Parcel dest, int flags) { argument
2028 super.writeToParcel(dest, flags);
2029 dest.writeInt(openDrawerGravity);
2030 dest.writeInt(lockModeLeft);
2031 dest.writeInt(lockModeRight);
2032 dest.writeInt(lockModeStart);
2033 dest.writeInt(lockModeEnd);
2348 private void copyNodeInfoNoChildren(AccessibilityNodeInfoCompat dest, argument
2353 dest.setBoundsInParent(rect);
2356 dest
[all...]
H A DSlidingPaneLayout.java1611 private void copyNodeInfoNoChildren(AccessibilityNodeInfoCompat dest, argument
1616 dest.setBoundsInParent(rect);
1619 dest.setBoundsInScreen(rect);
1621 dest.setVisibleToUser(src.isVisibleToUser());
1622 dest.setPackageName(src.getPackageName());
1623 dest.setClassName(src.getClassName());
1624 dest.setContentDescription(src.getContentDescription());
1626 dest.setEnabled(src.isEnabled());
1627 dest.setClickable(src.isClickable());
1628 dest
[all...]
/frameworks/av/media/libstagefright/include/
H A DHevcUtils.h91 bool write(size_t index, uint8_t* dest, size_t size);
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java468 public void writeToParcel(Parcel dest, int flags) { argument
469 super.writeToParcel(dest, flags);
470 dest.writeInt(isDialogShowing ? 1 : 0);
471 dest.writeBundle(dialogBundle);
H A DListPreference.java333 public void writeToParcel(Parcel dest, int flags) { argument
334 super.writeToParcel(dest, flags);
335 dest.writeString(value);
H A DMultiCheckPreference.java316 public void writeToParcel(Parcel dest, int flags) { argument
317 super.writeToParcel(dest, flags);
318 dest.writeBooleanArray(values);
H A DMultiSelectListPreference.java270 public void writeToParcel(Parcel dest, int flags) { argument
271 super.writeToParcel(dest, flags);
272 dest.writeStringArray(values.toArray(new String[0]));
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java188 public void getChars(int start, int end, char[] dest, int off) { argument
189 TextUtils.getChars(mSource, start, end, dest, off);
226 dest[i - start + off] = DOT;
/frameworks/base/tools/aapt/
H A DXMLNode.h143 status_t flatten(const sp<AaptFile>& dest, bool stripComments,
183 status_t collect_strings(StringPool* dest, Vector<uint32_t>* outResIds,
192 status_t flatten_node(const StringPool& strings, const sp<AaptFile>& dest,
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreference.java297 public void writeToParcel(@NonNull Parcel dest, int flags) { argument
298 super.writeToParcel(dest, flags);
299 dest.writeString(value);
/frameworks/base/core/java/android/text/
H A DTextUtils.java79 char[] dest, int destoff) {
83 ((String) s).getChars(start, end, dest, destoff);
85 ((StringBuffer) s).getChars(start, end, dest, destoff);
87 ((StringBuilder) s).getChars(start, end, dest, destoff);
89 ((GetChars) s).getChars(start, end, dest, destoff);
92 dest[destoff++] = s.charAt(i);
548 public void getChars(int start, int end, char[] dest, int destoff) { argument
550 dest, destoff);
551 AndroidCharacter.mirror(dest, 0, end - start);
556 char tmp = dest[destof
78 getChars(CharSequence s, int start, int end, char[] dest, int destoff) argument
1017 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.java575 public void writeToParcel(Parcel dest, int flags) { argument
576 dest.writeInt(mCompatibilityFlags);
577 dest.writeInt(applicationDensity);
578 dest.writeFloat(applicationScale);
579 dest.writeFloat(applicationInvertedScale);
/frameworks/base/core/java/android/text/style/
H A DTtsSpan.java497 public void writeToParcel(Parcel dest, int flags) { argument
498 writeToParcelInternal(dest, flags);
502 public void writeToParcelInternal(Parcel dest, int flags) { argument
503 dest.writeString(mType);
504 dest.writePersistableBundle(mArgs);
/frameworks/base/core/java/android/app/
H A DFragment.java138 public void writeToParcel(Parcel dest, int flags) { argument
139 dest.writeString(mClassName);
140 dest.writeInt(mIndex);
141 dest.writeInt(mFromLayout ? 1 : 0);
142 dest.writeInt(mFragmentId);
143 dest.writeInt(mContainerId);
144 dest.writeString(mTag);
145 dest.writeInt(mRetainInstance ? 1 : 0);
146 dest.writeInt(mDetached ? 1 : 0);
147 dest
538 writeToParcel(Parcel dest, int flags) argument
[all...]
H A DIActivityManager.java682 public void writeToParcel(Parcel dest, int flags) { argument
683 info.writeToParcel(dest, 0);
685 dest.writeStrongBinder(provider.asBinder());
687 dest.writeStrongBinder(null);
689 dest.writeStrongBinder(connection);
690 dest.writeInt(noReleaseNeeded ? 1 : 0);
732 public void writeToParcel(Parcel dest, int flags) { argument
733 dest.writeInt(result);
734 dest.writeInt(timeout ? 1 : 0);
735 ComponentName.writeToParcel(who, dest);
[all...]
/frameworks/base/core/java/android/os/
H A DStrictMode.java2477 public void writeToParcel(Parcel dest, int flags) { argument
2478 dest.writeString(message);
2479 crashInfo.writeToParcel(dest, flags);
2480 int start = dest.dataPosition();
2481 dest.writeInt(policy);
2482 dest.writeInt(durationMillis);
2483 dest.writeInt(violationNumThisLoop);
2484 dest.writeInt(numAnimationsRunning);
2485 dest.writeLong(violationUptimeMillis);
2486 dest
[all...]
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java1759 public void writeToParcel(Parcel dest, int flags) { argument
1760 dest.writeInt(id);
1761 dest.writeInt(pid);
1762 dest.writeString(name);
1763 dest.writeString(title);
1764 dest.writeString(description);
1765 dest.writeInt(max);
1766 dest.writeInt(progress);
1767 dest.writeInt(realMax);
1768 dest
1787 writeFile(Parcel dest, File file) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java476 protected boolean allowFilterResult(F filter, List<R> dest) { argument
621 ArrayMap<String, F[]> dest, String prefix) {
631 addFilter(dest, name, filter);
637 ArrayMap<String, F[]> dest, String prefix) {
647 remove_all_objects(dest, name, filter);
690 String resolvedType, String scheme, F[] src, List<R> dest, int userId) {
742 if (!allowFilterResult(filter, dest)) {
757 dest.add(oneResult);
783 if (dest.size() == 0) {
785 } else if (dest
620 register_intent_filter(F filter, Iterator<String> i, ArrayMap<String, F[]> dest, String prefix) argument
636 unregister_intent_filter(F filter, Iterator<String> i, ArrayMap<String, F[]> dest, String prefix) argument
688 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[all...]
/frameworks/native/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.java701 public void writeToParcel(Parcel dest, int flags) { argument
704 dest.writeInt(mStartPos);
705 nativeWriteToParcel(mWindowPtr, dest);
/frameworks/base/services/core/java/com/android/server/net/
H A DIpConfigStore.java216 LinkAddress dest = null;
219 // only supported default gateways - leave the dest/prefix empty
228 dest = new LinkAddress(
235 RouteInfo route = new RouteInfo(dest, gateway);

Completed in 826 milliseconds

<<11121314151617181920>>