HomeSort by relevance Sort by last modified time
    Searched refs:mSource (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/support/v4/api21/android/support/v4/view/
WindowInsetsCompatApi21.java 24 private final WindowInsets mSource;
27 mSource = source;
32 return mSource.getSystemWindowInsetLeft();
37 return mSource.getSystemWindowInsetTop();
42 return mSource.getSystemWindowInsetRight();
47 return mSource.getSystemWindowInsetBottom();
52 return mSource.hasSystemWindowInsets();
57 return mSource.hasInsets();
62 return mSource.isConsumed();
67 return mSource.isRound()
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Script.h 28 Source *mSource;
36 Script(Source &pSource) : mSource(&pSource) { }
50 // This is equivalent to the call to Script::merge(...) on mSource.
54 { return *mSource; }
56 { return *mSource; }
  /frameworks/compile/libbcc/lib/Core/
Script.cpp 24 if (mSource == &pSource) {
29 delete mSource;
31 mSource = &pSource;
36 return mSource->merge(pSource, pPreserveSource);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ScrollIndicatorsView.java 34 private ScrollNotifier mSource;
45 mSource = notifier;
46 mSource.addScrollListener(this);
51 return mSource.computeVerticalScrollRange();
56 return mSource.computeVerticalScrollOffset();
61 return mSource.computeVerticalScrollExtent();
66 return mSource.computeHorizontalScrollRange();
71 return mSource.computeHorizontalScrollOffset();
76 return mSource.computeHorizontalScrollExtent();
  /frameworks/av/media/libmediaplayerservice/
RemoteDisplay.cpp 35 mSource = new WifiDisplaySource(mNetSession, client);
36 mLooper->registerHandler(mSource);
41 mSource->start(iface);
48 return mSource->pause();
52 return mSource->resume();
56 mSource->stop();
57 mSource.clear();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSourceResult.java 28 private final GoogleSource mSource;
36 mSource = source;
40 return mSource;
45 return mSource;
50 return mSource.getIntentComponent();
63 return mSource + "[" + getUserQuery() + "]";
Suggestions.java 40 private Source mSource;
50 mSource = source;
65 return mSource;
189 return "Suggestions@" + hashCode() + "{source=" + mSource
  /frameworks/av/media/libstagefright/include/
ThrottledSource.h 42 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;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Base64Body.java 29 private final InputStream mSource;
34 mSource = source;
39 return mSource;
58 IOUtils.copyLarge(mSource, b64out);
60 mSource.close();
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 33 sp<MediaSource> mSource;
46 DummyRecorder(const sp<MediaSource> &source) : mSource(source)
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicTrack.java 30 private String mSource;
55 this.mSource = source;
95 return mSource;
98 public void setSource(String mSource) {
99 this.mSource = mSource;
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecFeatureAction.java 57 private final HdmiCecLocalDevice mSource;
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...]
ActiveSourceHandler.java 37 private final HdmiCecLocalDeviceTv mSource;
51 mSource = source;
52 mService = mSource.getService();
64 HdmiCecLocalDeviceTv tv = mSource;
94 return mSource.getDeviceInfo().getLogicalAddress();
  /frameworks/base/location/java/android/location/
Country.java 59 private final int mSource;
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 + ", time=" + mTimestamp + "}"
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TimedText3GPPSource.h 33 virtual status_t start() { return mSource->start(); }
34 virtual status_t stop() { return mSource->stop(); }
47 sp<MediaSource> mSource;
TimedTextPlayer.cpp 44 mSource(NULL),
51 if (mSource != NULL) {
52 mSource->stop();
53 mSource.clear();
54 mSource = NULL;
190 if (mSource != NULL) {
191 mSource->stop();
192 mSource.clear();
193 mSource = NULL;
202 mSource = static_cast<TimedTextSource*>(obj.get())
    [all...]
TimedText3GPPSource.cpp 35 : mSource(mediaSource) {
45 status_t err = mSource->read(&textBuffer, options);
72 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
96 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
102 if (!mSource->getFormat()->findData(
116 return mSource->getFormat();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
AbstractGoogleSourceResult.java 30 private final Source mSource;
35 mSource = source;
44 return mSource;
83 return mSource;
107 return mSource.getDefaultIntentAction();
111 return mSource.getIntentComponent();
  /frameworks/av/media/libstagefright/timedtext/test/
TimedTextSRTSource_test.cpp 87 mSource = new TimedTextSRTSource(stub);
88 mSource->start();
110 sp<TimedTextSource> mSource;
120 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
127 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
133 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
139 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
145 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
152 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
161 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
MediaSetSource.java 40 private WidgetSource mSource;
48 mSource = new CheckedMediaSetSource(mediaSet);
55 mSource = new EmptySource();
61 return mSource.size();
66 return mSource.getImage(index);
71 return mSource.getContentUri(index);
79 mSource.setContentListener(listener);
85 mSource.reload();
90 mSource.close();
112 mSource = new CheckedMediaSetSource(mediaSet)
    [all...]
WidgetService.java 60 private WidgetSource mSource;
72 mSource = new MediaSetSource(mApp.getDataManager(), mAlbumPath);
74 mSource = new LocalPhotoSource(mApp.getAndroidContext());
76 mSource.setContentListener(this);
84 mSource.close();
85 mSource = null;
90 return mSource.size();
119 Bitmap bitmap = mSource.getImage(position);
127 .setData(mSource.getContentUri(position)));
133 mSource.reload()
    [all...]
  /frameworks/av/media/libstagefright/
JPEGSource.cpp 55 : 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)) {
ThrottledSource.cpp 27 : mSource(source),
37 ssize_t n = mSource->readAt(offset, data, size);
  /frameworks/base/core/java/android/text/
AlteredCharSequence.java 44 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;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 56 private RectF mSource = new RectF();
116 mSource.set((w - h) / 2, 0, (w + h) / 2, h);
117 canvas.drawTexture(entry.texture, mSource, mTarget);
124 mSource.set(0, 0, (w - h) / 2, h);
125 canvas.drawTexture(entry.texture, mSource, mTarget);
129 mSource.set((w + h) / 2, 0, w, h);
130 canvas.drawTexture(entry.texture, mSource, mTarget);
136 mSource.set(0, (h - w) / 2, w, (h + w) / 2);
137 canvas.drawTexture(entry.texture, mSource, mTarget);
144 mSource.set(0, 0, w, (h - w) / 2)
    [all...]

Completed in 391 milliseconds

1 2 3 4 5 6 7 8