Searched defs:mSet (Results 1 - 8 of 8) sorted by relevance

/frameworks/rs/
H A DrsSignal.h40 bool mSet; member in class:android::renderscript::Signal
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBucketTest.java42 Set<Integer> mSet; field in class:BucketTest
60 mSet = new HashSet<>();
63 if (!mSet.add(mArr.get(i))) {
78 assertEquals(mBucket.get(i), mSet.contains(i));
107 assertEquals(mSet.contains(j + 1), mBucket.get(j));
129 assertEquals(mSet.contains(j - 1), mBucket.get(j));
/frameworks/base/libs/hwui/
H A DPropertyValuesAnimatorSet.h76 PropertyAnimatorSetListener(PropertyValuesAnimatorSet* set) : mSet(set) {}
80 PropertyValuesAnimatorSet* mSet; member in class:android::uirenderer::PropertyAnimatorSetListener
/frameworks/base/media/java/android/media/
H A DPlaybackParams.java91 private int mSet = 0; field in class:PlaybackParams
103 mSet = in.readInt();
121 mSet |= SET_AUDIO_FALLBACK_MODE | SET_AUDIO_STRETCH_MODE | SET_PITCH | SET_SPEED;
132 mSet |= SET_AUDIO_FALLBACK_MODE;
142 if ((mSet & SET_AUDIO_FALLBACK_MODE) == 0) {
156 mSet |= SET_AUDIO_STRETCH_MODE;
167 if ((mSet & SET_AUDIO_STRETCH_MODE) == 0) {
184 mSet |= SET_PITCH;
194 if ((mSet & SET_PITCH) == 0) {
207 mSet |
[all...]
H A DSyncParams.java163 private int mSet = 0; field in class:SyncParams
179 mSet |= SET_SYNC_SOURCE | SET_AUDIO_ADJUST_MODE | SET_TOLERANCE;
190 mSet |= SET_AUDIO_ADJUST_MODE;
200 if ((mSet & SET_AUDIO_ADJUST_MODE) == 0) {
213 mSet |= SET_SYNC_SOURCE;
223 if ((mSet & SET_SYNC_SOURCE) == 0) {
242 mSet |= SET_TOLERANCE;
254 if ((mSet & SET_TOLERANCE) == 0) {
269 mSet |= SET_FRAME_RATE;
282 if ((mSet
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java54 View[] mSet; field in class:GridLayoutManager
354 if (mSet == null || mSet.length != mSpanCount) {
355 mSet = new View[mSpanCount];
536 mSet[count] = view;
551 View view = mSet[i];
600 View view = mSet[i];
624 final View view = mSet[i];
659 View view = mSet[i];
688 Arrays.fill(mSet, nul
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java833 // mSet is only initialized in init(). So we need to check whether it is null before any
835 private AnimatorSet mSet = null; field in class:AnimatedVectorDrawable.VectorDrawableAnimatorUI
837 // Caching the listener in the case when listener operation is called before the mSet is
848 if (mSet != null) {
855 mSet = set.clone();
856 mIsInfinite = mSet.getTotalDuration() == Animator.DURATION_INFINITE;
861 mSet.addListener(mListenerArray.get(i));
872 if (mSet == null || mSet.isStarted()) {
875 mSet
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp90 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0)
119 } else if (mSetPos < mSet->size()) {
120 mGroup = group = mSet->valueAt(mSetPos++);
169 const sp<ResourceTypeSet> mSet; member in class:ResourceDirIterator

Completed in 896 milliseconds