Searched refs:mSource (Results 1 - 25 of 168) sorted by relevance

1234567

/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DParallaxFloatEffectTest.java42 Parallax<Parallax.FloatProperty> mSource; field in class:ParallaxFloatEffectTest
54 mSource = new Parallax<Parallax.FloatProperty>() {
72 Parallax.FloatProperty var1 = mSource.addProperty("var1");
78 var1.setValue(mSource, 540);
79 mEffect.performMapping(mSource);
84 var1.setValue(mSource, 405);
85 mEffect.performMapping(mSource);
90 var1.setValue(mSource, 270);
91 mEffect.performMapping(mSource);
96 var1.setValue(mSource, 13
[all...]
H A DParallaxIntEffectTest.java39 Parallax<Parallax.IntProperty> mSource; field in class:ParallaxIntEffectTest
51 mSource = new Parallax<Parallax.IntProperty>() {
69 Parallax.IntProperty var1 = mSource.addProperty("var1");
75 var1.setValue(mSource, 540);
76 mEffect.performMapping(mSource);
81 var1.setValue(mSource, 405);
82 mEffect.performMapping(mSource);
87 var1.setValue(mSource, 270);
88 mEffect.performMapping(mSource);
93 var1.setValue(mSource, 13
[all...]
H A DParallaxFloatTest.java35 Parallax<Parallax.FloatProperty> mSource; field in class:ParallaxFloatTest
44 mSource = new Parallax<Parallax.FloatProperty>() {
61 Parallax.FloatProperty var1 = mSource.addProperty("var1");
62 var1.setValue(mSource, 54);
63 assertFloatEquals((float) 54, var1.getValue(mSource));
65 var1.set(mSource, (float) 2000);
66 assertFloatEquals((float) 2000, var1.get(mSource).floatValue());
72 Parallax.FloatProperty var1 = mSource.addProperty("var1");
77 assertFloatEquals((float) 1000, keyValue.getMarkerValue(mSource));
83 Parallax.FloatProperty var1 = mSource
[all...]
H A DParallaxIntTest.java32 Parallax<Parallax.IntProperty> mSource; field in class:ParallaxIntTest
41 mSource = new Parallax<Parallax.IntProperty>() {
58 Parallax.IntProperty var1 = mSource.addProperty("var1");
59 var1.setValue(mSource, 54);
60 assertEquals((int) 54, var1.getValue(mSource));
62 var1.set(mSource, (int) 2000);
63 assertEquals((int) 2000, var1.get(mSource).intValue());
69 Parallax.IntProperty var1 = mSource.addProperty("var1");
74 assertEquals((int) 1000, keyValue.getMarkerValue(mSource));
80 Parallax.IntProperty var1 = mSource
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DRemoteDisplay.cpp36 mSource = new WifiDisplaySource(opPackageName, mNetSession, client);
37 mLooper->registerHandler(mSource);
42 mSource->start(iface);
49 return mSource->pause();
53 return mSource->resume();
57 mSource->stop();
58 mSource.clear();
/frameworks/av/include/media/
H A DAVSyncSettings.h48 AVSyncSource mSource; member in struct:android::AVSyncSettings
52 : mSource(AVSYNC_SOURCE_DEFAULT),
/frameworks/av/include/media/stagefright/
H A DThrottledSource.h42 return mSource->initCheck();
46 return mSource->getSize(size);
50 return mSource->flags();
54 return mSource->reconnectAtOffset(offset);
58 return mSource->DrmInitialization(mime);
62 mSource->getDrmInfo(handle, client);
66 return mSource->getMIMEType();
72 sp<DataSource> mSource; member in struct:android::ThrottledSource
H A DRemoteDataSource.h51 return mSource->readAt(offset, mMemory->pointer(), size);
54 return mSource->getSize(size);
60 mSource = nullptr;
64 return mSource->flags();
70 return mSource->DrmInitialization(mime);
79 sp<DataSource> mSource; member in class:android::RemoteDataSource
84 mSource = source;
90 mName = String8::format("RemoteDataSource(%s)", mSource->toString().string());
/frameworks/av/media/libmedia/include/media/
H A DAVSyncSettings.h48 AVSyncSource mSource; member in struct:android::AVSyncSettings
52 : mSource(AVSYNC_SOURCE_DEFAULT),
/frameworks/av/media/libstagefright/foundation/include/
H A DThrottledSource.h42 return mSource->initCheck();
46 return mSource->getSize(size);
50 return mSource->flags();
54 return mSource->reconnectAtOffset(offset);
58 return mSource->DrmInitialization(mime);
62 mSource->getDrmInfo(handle, client);
66 return mSource->getMIMEType();
72 sp<DataSource> mSource; member in struct:android::ThrottledSource
H A DRemoteDataSource.h51 return mSource->readAt(offset, mMemory->pointer(), size);
54 return mSource->getSize(size);
60 mSource = nullptr;
64 return mSource->flags();
70 return mSource->DrmInitialization(mime);
79 sp<DataSource> mSource; member in class:android::RemoteDataSource
84 mSource = source;
90 mName = String8::format("RemoteDataSource(%s)", mSource->toString().string());
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h42 return mSource->initCheck();
46 return mSource->getSize(size);
50 return mSource->flags();
54 return mSource->reconnectAtOffset(offset);
58 return mSource->DrmInitialization(mime);
62 mSource->getDrmInfo(handle, client);
66 return mSource->getMIMEType();
72 sp<DataSource> mSource; member in struct:android::ThrottledSource
H A DRemoteDataSource.h51 return mSource->readAt(offset, mMemory->pointer(), size);
54 return mSource->getSize(size);
60 mSource = nullptr;
64 return mSource->flags();
70 return mSource->DrmInitialization(mime);
79 sp<DataSource> mSource; member in class:android::RemoteDataSource
84 mSource = source;
90 mName = String8::format("RemoteDataSource(%s)", mSource->toString().string());
/frameworks/compile/libbcc/lib/
H A DScript.cpp32 : mSource(pSource),
41 BCCContext &context = mSource->getContext();
50 mLinkRuntimeCallback(this, &mSource->getModule(),
56 // the destination (mSource) (creating it if necessary) and appends
79 if (!mSource->merge(*libclcore_source)) {
88 bool Script::mergeSource(Source &pSource) { return mSource->merge(pSource); }
/frameworks/base/core/java/android/security/net/config/
H A DCertificatesEntryRef.java25 private final CertificateSource mSource; field in class:CertificatesEntryRef
29 mSource = source;
40 for (X509Certificate cert : mSource.getCertificates()) {
47 X509Certificate foundCert = mSource.findBySubjectAndPublicKey(cert);
56 X509Certificate foundCert = mSource.findByIssuerAndSignature(cert);
65 return mSource.findAllByIssuerAndSignature(cert);
69 mSource.handleTrustStorageUpdate();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DStatement.java51 private final AbstractAsset mSource; field in class:Statement
54 mSource = source;
64 return mSource;
114 if (!mSource.equals(statement.mSource)) {
125 result = 31 * result + mSource.hashCode();
133 statement.append(mSource);
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
H A DMusicTrack.java30 private String mSource; field in class:MusicTrack
55 this.mSource = source;
95 return mSource;
98 public void setSource(String mSource) { argument
99 this.mSource = mSource;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecFeatureAction.java57 private final HdmiCecLocalDevice mSource; field in class:HdmiCecFeatureAction
65 mSource = source;
66 mService = mSource.getService();
179 mSource.addAndStartAction(action);
183 return mSource.getActions(clazz);
187 return mSource.getCecMessageCache();
197 mSource.removeAction(action);
201 mSource.removeActionExcept(clazz, null);
206 mSource.removeActionExcept(clazz, exception);
248 return mSource;
[all...]
H A DActiveSourceHandler.java37 private final HdmiCecLocalDeviceTv mSource; field in class:ActiveSourceHandler
51 mSource = source;
52 mService = mSource.getService();
64 HdmiCecLocalDeviceTv tv = mSource;
98 return mSource.getDeviceInfo().getLogicalAddress();
/frameworks/base/location/java/android/location/
H A DCountry.java59 private final int mSource; field in class:Country
87 mSource = source;
97 mSource = source;
103 mSource = country.mSource;
125 return mSource;
152 parcel.writeInt(mSource);
169 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource();
180 hash = hash * 13 + mSource;
200 return "Country {ISO=" + mCountryIso + ", source=" + mSource
[all...]
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.h33 sp<MediaSource> mSource; member in class:android::DummyRecorder
46 explicit DummyRecorder(const sp<MediaSource> &source) : mSource(source)
/frameworks/av/media/libstagefright/
H A DCallbackDataSource.cpp121 : mSource(source), mCachedOffset(0), mCachedSize(0) {
122 mName = String8::format("TinyCacheSource(%s)", mSource->toString().string());
126 return mSource->initCheck();
131 return mSource->readAt(offset, data, size);
159 const ssize_t numRead = mSource->readAt(offset, mCache, kCacheSize);
183 return mSource->getSize(size);
187 return mSource->flags();
195 return mSource->DrmInitialization(mime);
199 return mSource->getIDataSource();
H A DJPEGSource.cpp55 : mSource(source),
63 CHECK(mSource->getSize(&mSize) == OK);
123 ssize_t n = mSource->readAt(mOffset, buffer->data(), mSize - mOffset);
148 if (!mSource->getUInt16(i, &soi)) {
160 if (mSource->readAt(i++, &marker, 1) != 1) {
166 if (mSource->readAt(i++, &marker, 1) != 1) {
173 if (!mSource->getUInt16(i, &chunkSize)) {
208 if (!mSource->getUInt16(i + 1, &height)
209 || !mSource->getUInt16(i + 3, &width)) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DFitWidthBitmapDrawable.java43 Rect mSource; field in class:FitWidthBitmapDrawable.BitmapState
54 mSource = other.mSource != null ? new Rect(other.mSource) : null;
107 mBitmapState.mSource = null;
121 mBitmapState.mSource = source;
128 return mBitmapState.mSource;
198 if (mBitmapState.mSource == null) {
201 return mBitmapState.mSource;
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java44 mSource = source;
93 return mSource.charAt(off);
97 return mSource.length();
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
106 TextUtils.getChars(mSource, start, end, dest, off);
126 private CharSequence mSource; field in class:AlteredCharSequence

Completed in 437 milliseconds

1234567