Searched refs:source (Results 151 - 175 of 474) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/include/
H A DFragmentedMP4Extractor.h36 // Extractor assumes ownership of "source".
37 FragmentedMP4Extractor(const sp<DataSource> &source);
65 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DMPEG2PSExtractor.h34 MPEG2PSExtractor(const sp<DataSource> &source);
74 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DMPEG2TSExtractor.h37 MPEG2TSExtractor(const sp<DataSource> &source);
71 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DWAVExtractor.h32 // Extractor assumes ownership of "source".
33 WAVExtractor(const sp<DataSource> &source);
64 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DWVMExtractor.h46 WVMExtractor(const sp<DataSource> &source);
97 const sp<DataSource> &source, String8 *mimeType, float *confidence,
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.h38 MatroskaExtractor(const sp<DataSource> &source);
83 const sp<DataSource> &source, String8 *mimeType, float *confidence,
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSource.h38 const sp<MediaSource>& source);
40 const sp<DataSource>& source, FileType filetype);
/frameworks/base/core/java/android/accounts/
H A DAccount.java72 public Account createFromParcel(Parcel source) {
73 return new Account(source);
H A DAccountAuthenticatorResponse.java90 public AccountAuthenticatorResponse createFromParcel(Parcel source) {
91 return new AccountAuthenticatorResponse(source);
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java145 WallpaperInfo(Parcel source) { argument
146 mSettingsActivityName = source.readString();
147 mThumbnailResource = source.readInt();
148 mAuthorResource = source.readInt();
149 mDescriptionResource = source.readInt();
150 mService = ResolveInfo.CREATOR.createFromParcel(source);
297 public WallpaperInfo createFromParcel(Parcel source) {
298 return new WallpaperInfo(source);
/frameworks/base/core/java/android/view/
H A DInputChannel.java37 public InputChannel createFromParcel(Parcel source) {
39 result.readFromParcel(source);
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java139 public SpellCheckerInfo(Parcel source) { argument
140 mLabel = source.readInt();
141 mId = source.readString();
142 mSettingsActivityName = source.readString();
143 mService = ResolveInfo.CREATOR.createFromParcel(source);
144 source.readTypedList(mSubtypes, SpellCheckerSubtype.CREATOR);
192 public SpellCheckerInfo createFromParcel(Parcel source) {
193 return new SpellCheckerInfo(source);
/frameworks/base/tests/ImfTest/
H A DAndroid.mk7 # Only compile source java files in this apk.
/frameworks/base/tests/MemoryUsage/
H A DAndroid.mk6 # Only compile source java files in this apk.
/frameworks/native/opengl/tests/gl2_cameraeye/
H A DAndroid.mk6 # Only compile source java files in this apk.
/frameworks/base/media/tests/MediaDump/
H A DAndroid.mk6 # Only compile source java files in this apk.
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.cpp101 sp<MediaSource> source = prepareMediaSource(stream); local
102 sp<MetaData> meta = source->getFormat();
120 sp<MediaSource> decoder = getDecoder(&mClient, source);
121 return decodeSource(decoder, source, bm);
131 OMXClient *client, const sp<MediaSource>& source) {
132 sp<MetaData> meta = source->getFormat();
134 client->interface(), meta, false /* createEncoder */, source);
141 const sp<MediaSource>& source, SkBitmap* bm) {
150 // decode source
130 getDecoder( OMXClient *client, const sp<MediaSource>& source) argument
140 decodeSource(sp<MediaSource> decoder, const sp<MediaSource>& source, SkBitmap* bm) argument
H A Domx_jpeg_decoder.h49 sp<MediaSource> getDecoder(OMXClient* client, const sp<MediaSource>& source);
50 bool decodeSource(sp<MediaSource> decoder, const sp<MediaSource>& source,
/frameworks/base/native/android/
H A DAndroid.mk6 # our source files
/frameworks/base/native/graphics/jni/
H A DAndroid.mk16 # our source files
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java313 public AnimatedRotateState(AnimatedRotateState source, AnimatedRotateDrawable owner, argument
315 if (source != null) {
317 mDrawable = source.mDrawable.getConstantState().newDrawable(res);
319 mDrawable = source.mDrawable.getConstantState().newDrawable();
322 mPivotXRel = source.mPivotXRel;
323 mPivotX = source.mPivotX;
324 mPivotYRel = source.mPivotYRel;
325 mPivotY = source.mPivotY;
326 mFramesCount = source.mFramesCount;
327 mFrameDuration = source
[all...]
H A DRotateDrawable.java311 public RotateState(RotateState source, RotateDrawable owner, Resources res) { argument
312 if (source != null) {
314 mDrawable = source.mDrawable.getConstantState().newDrawable(res);
316 mDrawable = source.mDrawable.getConstantState().newDrawable();
319 mPivotXRel = source.mPivotXRel;
320 mPivotX = source.mPivotX;
321 mPivotYRel = source.mPivotYRel;
322 mPivotY = source.mPivotY;
323 mFromDegrees = mCurrentDegrees = source.mFromDegrees;
324 mToDegrees = source
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1072 public void readFromParcel(Parcel source) { argument
1073 fontScale = source.readFloat();
1074 mcc = source.readInt();
1075 mnc = source.readInt();
1076 if (source.readInt() != 0) {
1077 locale = new Locale(source.readString(), source.readString(),
1078 source.readString());
1080 userSetLocale = (source.readInt()==1);
1081 touchscreen = source
1114 Configuration(Parcel source) argument
[all...]
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp135 Source *source = Source::CreateFromFd(mContext, pInputFd); local
136 if (source == NULL) {
141 Script *script = new (std::nothrow) Script(*source);
145 delete source;
195 const Source &source = pScript.getSource(); local
196 for (llvm::Module::lib_iterator lib_iter = source.getModule().lib_begin(),
197 lib_end = source.getModule().lib_end(); lib_iter != lib_end;
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java180 private void innerSetDataSource(MediaPlayerDataSource source) { argument
181 checkNotNull(source, "source");
185 mDataSource = source;
264 private void stopAndStartPlayingAgain(MediaPlayerDataSource source) { argument
267 innerSetDataSource(source);
315 public PlaybackRunnable(MediaPlayerDataSource source) { argument
316 mInnerSource = source;

Completed in 2469 milliseconds

1234567891011>>