/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mutexset_test.cc | 18 static void Expect(const MutexSet &mset, uptr i, u64 id, bool write, u64 epoch, 20 MutexSet::Desc d = mset.Get(i); 28 MutexSet mset; local 29 EXPECT_EQ(mset.Size(), (uptr)0); 31 mset.Add(1, true, 2); 32 EXPECT_EQ(mset.Size(), (uptr)1); 33 Expect(mset, 0, 1, true, 2, 1); 34 mset.Del(1, true); 35 EXPECT_EQ(mset.Size(), (uptr)0); 37 mset.Add(3, true, 4) 49 MutexSet mset; local 67 MutexSet mset; local 77 MutexSet mset; local 90 MutexSet mset; local 109 MutexSet mset; local [all...] |
/external/stlport/test/unit/ |
multiset_test.cpp | 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest 46 mset s; 53 mset::iterator i = s.find(40); 66 mset s(array, array + 9); 67 mset::iterator i; 72 pair<mset::iterator, mset::iterator> p = s.equal_range(5); 77 mset::const_iterator ci; 82 pair<mset::const_iterator, mset::const_iterator> cp [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
multiset_test.cpp | 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest 46 mset s; 53 mset::iterator i = s.find(40); 66 mset s(array, array + 9); 67 mset::iterator i; 72 pair<mset::iterator, mset::iterator> p = s.equal_range(5); 77 mset::const_iterator ci; 82 pair<mset::const_iterator, mset::const_iterator> cp [all...] |
/ndk/tests/device/test-stlport/unit/ |
multiset_test.cpp | 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest 46 mset s; 53 mset::iterator i = s.find(40); 66 mset s(array, array + 9); 67 mset::iterator i; 72 pair<mset::iterator, mset::iterator> p = s.equal_range(5); 77 mset::const_iterator ci; 82 pair<mset::const_iterator, mset::const_iterator> cp [all...] |
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
BucketTest.java | 32 Set<Integer> mSet; 51 mSet = new HashSet<Integer>(); 54 if (!mSet.add(mArr.get(i))) { 68 assertEquals(mBucket.get(i), mSet.contains(i)); 96 assertEquals(mSet.contains(j + 1), mBucket.get(j)); 117 assertEquals(mSet.contains(j - 1), mBucket.get(j));
|
/frameworks/rs/ |
rsSignal.cpp | 25 mSet = true; 59 mSet = true; 82 if (!mSet) { 96 mSet = false;
|
rsSignal.h | 40 bool mSet;
|
/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);
|
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/ |
rsSignal.h | 40 bool mSet;
|
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/ |
rsSignal.h | 40 bool mSet;
|
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/ |
rsSignal.h | 40 bool mSet;
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Config.cpp | 245 : mSet(SortConfig(mSortAttribs)) 252 mSet.insert(config); 257 return mSet.size(); 263 passed.reserve(mSet.size()); 265 for (Iterator config = mSet.begin(); config != mSet.end(); config++) 346 for (Iterator config = mSet.begin(); config != mSet.end(); config++)
|
Display.cpp | 97 for (ConfigSet::Iterator config = configSet.mSet.begin(); config != configSet.mSet.end(); config++) 103 mConfigSet.mSet.insert(configuration);
|
Config.h | 109 Set mSet;
|
/cts/tests/tests/media/src/android/media/cts/ |
AudioTrack_ListenerTest.java | 118 private boolean mSet; 122 assert !mSet; 124 mSet = true; 132 while (!mSet) {
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl_report.cc | 172 const StackTrace *stack, const MutexSet *mset) { 184 for (uptr i = 0; i < mset->Size(); i++) { 185 MutexSet::Desc d = mset->Get(i); 188 mop->mset.PushBack(mtx); 390 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset) { 419 if (mset) 420 *mset = hdr->mset0; 436 if (mset) { 438 mset->Add(pc, true, epoch0 + i); 440 mset->Del(pc, true) [all...] |
tsan_report.cc | 49 : mset(MBlockReportMutex) { 111 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) { 112 for (uptr i = 0; i < mset.Size(); i++) { 115 const ReportMopMutex m = mset[i]; 117 Printf(i == mset.Size() - 1 ? ")" : ","); 136 PrintMutexSet(mop->mset);
|
tsan_report.h | 59 Vector<ReportMopMutex> mset; member in struct:__tsan::ReportMop
|
tsan_rtl_mutex.cc | 143 thr->mset.Remove(mid); 174 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch()); 217 thr->mset.Del(s->GetId(), true); 251 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch()); 292 thr->mset.Del(mid, false); 332 thr->mset.Del(s->GetId(), write);
|
tsan_rtl.h | 350 MutexSet mset; member in struct:__tsan::ThreadState 502 const MutexSet *mset); 527 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset);
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
GridLayoutManager.java | 54 View[] mSet; 259 if (mSet == null || mSet.length != mSpanCount) { 260 mSet = new View[mSpanCount]; 361 mSet[count] = view; 375 View view = mSet[i]; 408 final View view = mSet[i]; 442 View view = mSet[i]; 467 Arrays.fill(mSet, null); 521 View view = mSet[i] [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
unittest_custom_options.proto | 320 optional AggregateMessageSet mset = 5; 350 mset {
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 339 self.assertEqual("EmbeddedMessageSetElement", file_options.mset.Extensions[
|
/external/icu/icu4c/source/layout/ |
LETypes.h | 541 LE_MSET_FEATURE_TAG = 0x6D736574UL, /**< 'mset' */
|
/frameworks/base/tools/aapt/ |
Resource.cpp | 81 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0) 110 } else if (mSetPos < mSet->size()) { 111 mGroup = group = mSet->valueAt(mSetPos++); 156 const sp<ResourceTypeSet> mSet; [all...] |