/aosp14/frameworks/base/media/java/android/media/ |
H A D | SyncParams.java | 157 private int mSet = 0; field in SyncParams 173 mSet |= SET_SYNC_SOURCE | SET_AUDIO_ADJUST_MODE | SET_TOLERANCE; in allowDefaults() 184 mSet |= SET_AUDIO_ADJUST_MODE; in setAudioAdjustMode() 194 if ((mSet & SET_AUDIO_ADJUST_MODE) == 0) { in getAudioAdjustMode() 207 mSet |= SET_SYNC_SOURCE; in setSyncSource() 217 if ((mSet & SET_SYNC_SOURCE) == 0) { in getSyncSource() 236 mSet |= SET_TOLERANCE; in setTolerance() 248 if ((mSet & SET_TOLERANCE) == 0) { in getTolerance() 263 mSet |= SET_FRAME_RATE; in setFrameRate() 276 if ((mSet & SET_FRAME_RATE) == 0) { in getFrameRate()
|
H A D | PlaybackParams.java | 99 private int mSet = 0; field in PlaybackParams 115 mSet = in.readInt(); in PlaybackParams() 144 mSet |= SET_AUDIO_FALLBACK_MODE; in setAudioFallbackMode() 154 if ((mSet & SET_AUDIO_FALLBACK_MODE) == 0) { in getAudioFallbackMode() 169 mSet |= SET_AUDIO_STRETCH_MODE; in setAudioStretchMode() 181 if ((mSet & SET_AUDIO_STRETCH_MODE) == 0) { in getAudioStretchMode() 198 mSet |= SET_PITCH; in setPitch() 208 if ((mSet & SET_PITCH) == 0) { in getPitch() 221 mSet |= SET_SPEED; in setSpeed() 231 if ((mSet & SET_SPEED) == 0) { in getSpeed() [all …]
|
/aosp14/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | ArraySetTest.java | 34 ArraySet<String> mSet = new ArraySet<>(); field in ArraySetTest 38 mSet = null; in tearDown() 55 while (mSet != null) { in testConcurrentModificationException() 57 mSet.add(String.format("key %d", i++)); in testConcurrentModificationException() 66 + " size=" + (mSet == null ? "??" : String.valueOf(mSet.size())) + "]"); in testConcurrentModificationException() 75 if (mSet.size() % 4 == 0) { in testConcurrentModificationException() 76 mSet.clear(); in testConcurrentModificationException() 87 "[successfully caught CME at clear #" + i + " size=" + mSet.size() + "]"); in testConcurrentModificationException() 99 mSet.add(String.format("key %d", i++)); in testNonConcurrentAccesses() 104 mSet.clear(); in testNonConcurrentAccesses()
|
/aosp14/system/core/libutils/include/utils/ |
H A D | LruCache.h | 112 std::unique_ptr<LruCacheSet> mSet; variable 164 : mSet(new LruCacheSet()) in LruCache() 170 mSet->max_load_factor(1.0); in LruCache() 186 return mSet->size(); in size() 192 if (find_result == mSet->end()) { in get() 209 if (findByKey(key) != mSet->end()) { in put() 214 mSet->insert(newEntry); in put() 222 if (find_result == mSet->end()) { in remove() 228 mSet->erase(entry); in remove() 263 for (auto entry : *mSet.get()) { in clear() [all …]
|
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/ |
H A D | AnimatedVectorDrawable.java | 1130 if (mSet == null || mSet.isStarted()) { in start() 1133 mSet.start(); in start() 1142 mSet.end(); in end() 1151 mSet.cancel(); in reset() 1159 mSet.reverse(); in reverse() 1165 return mSet != null && mSet.canReverse(); in canReverse() 1194 if (mSet != null && mSet.isStarted()) { in onDraw() 1201 return mSet != null && mSet.isStarted(); in isStarted() 1206 return mSet != null && mSet.isRunning(); in isRunning() 1219 mSet.pause(); in pause() [all …]
|
/aosp14/frameworks/base/tests/JankBench/app/src/main/jni/ |
H A D | WorkerPool.cpp | 31 mSet = true; in Signal() 65 mSet = true; in set() 88 if (!mSet) { in wait() 102 mSet = false; in wait()
|
H A D | WorkerPool.h | 56 bool mSet;
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | GridLayoutManager.java | 59 View[] mSet; field in GridLayoutManager 362 if (mSet == null || mSet.length != mSpanCount) { in ensureViewSet() 363 mSet = new View[mSpanCount]; in ensureViewSet() 559 mSet[count] = view; in layoutChunk() 571 View view = mSet[i]; in layoutChunk() 604 View view = mSet[i]; in layoutChunk() 615 final View view = mSet[i]; in layoutChunk() 660 View view = mSet[i]; in layoutChunk() 689 Arrays.fill(mSet, null); in layoutChunk() 773 View view = mSet[i]; in assignSpans()
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | PropertyValuesAnimatorSet.h | 90 explicit PropertyAnimatorSetListener(PropertyValuesAnimatorSet* set) : mSet(set) {} in PropertyAnimatorSetListener() 94 PropertyValuesAnimatorSet* mSet;
|
H A D | PropertyValuesAnimatorSet.cpp | 183 mSet->onFinished(animator); in onAnimationFinished()
|
/aosp14/frameworks/base/tools/aapt/ |
H A D | Resource.cpp | 86 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0) in ResourceDirIterator() 115 } else if (mSetPos < mSet->size()) { in next() 116 mGroup = group = mSet->valueAt(mSetPos++); in next() 165 const sp<ResourceTypeSet> mSet; member in ResourceDirIterator
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 16719 Landroid/graphics/drawable/AnimatedVectorDrawable$VectorDrawableAnimatorUI;->mSet:Landroid/animatio… 30632 Landroid/media/SyncParams;->mSet:I
|