HomeSort by relevance Sort by last modified time
    Searched refs:mSet (Results 1 - 17 of 17) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/util/
LongSparseSet.java 26 private final LongSparseArray<Object> mSet = new LongSparseArray<Object>();
36 if (mSet.get(key, null/*default*/) == THE_ONLY_VALID_VALUE) {
48 mSet.put(key, THE_ONLY_VALID_VALUE);
57 mSet.delete(key);
  /frameworks/base/media/java/android/media/
SyncParams.java 163 private int mSet = 0;
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 & SET_FRAME_RATE) == 0)
    [all...]
PlaybackParams.java 91 private int mSet = 0;
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 |= SET_SPEED
    [all...]
  /frameworks/rs/
rsSignal.h 40 bool mSet;
rsSignal.cpp 25 mSet = true;
59 mSet = true;
82 if (!mSet) {
96 mSet = false;
  /system/core/include/utils/
LruCache.h 89 typename LruCacheSet::iterator result = mSet->find(&entryForSearch);
93 std::unique_ptr<LruCacheSet> mSet;
108 mCache(cache), mIterator(mCache.mSet->begin()), mBeginReturned(false) {
112 if (mIterator == mCache.mSet->end()) {
122 bool ret = (mIterator != mCache.mSet->end());
143 : mSet(new LruCacheSet())
149 mSet->max_load_factor(1.0);
165 return mSet->size();
171 if (find_result == mSet->end()) {
186 if (findByKey(key) != mSet->end())
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BucketTest.java 42 Set<Integer> mSet;
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));
  /packages/apps/Settings/src/com/android/settings/
SetFullBackupPassword.java 36 Button mCancel, mSet;
41 if (v == mSet) {
92 mSet = (Button) findViewById(R.id.backup_pw_set_button);
95 mSet.setOnClickListener(mButtonListener);
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.h 76 PropertyAnimatorSetListener(PropertyValuesAnimatorSet* set) : mSet(set) {}
80 PropertyValuesAnimatorSet* mSet;
PropertyValuesAnimatorSet.cpp 141 mSet->onFinished(animator);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedVectorDrawable.java 833 // mSet is only initialized in init(). So we need to check whether it is null before any
835 private AnimatorSet mSet = null;
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));
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
ifaceeventhandler.cpp 203 mSet = 0;
243 mSet = nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_FEATURE_SET]);
244 ALOGV("Supported feature set : %x", mSet);
348 *pset = mSet;
ifaceeventhandler.h 87 feature_set mSet;
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 54 View[] mSet;
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, null)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioHelper.java 134 private boolean mSet;
138 assert !mSet;
140 mSet = true;
148 while (!mSet) {
  /frameworks/base/tools/aapt/
Resource.cpp 90 : 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;
    [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 579 milliseconds