/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...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_report.cc | 30 : mset(MBlockReportMutex) { 82 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) { 83 for (uptr i = 0; i < mset.Size(); i++) { 86 const ReportMopMutex m = mset[i]; 88 Printf(i == mset.Size() - 1 ? ")" : ","); 105 PrintMutexSet(mop->mset);
|
tsan_report.h | 53 Vector<ReportMopMutex> mset; member in struct:__tsan::ReportMop
|
tsan_rtl_report.cc | 157 const StackTrace *stack, const MutexSet *mset) { 167 for (uptr i = 0; i < mset->Size(); i++) { 168 MutexSet::Desc d = mset->Get(i); 177 mop->mset.PushBack(mtx); 181 mop->mset.PushBack(mtx); 388 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset) { 418 if (mset) 419 *mset = hdr->mset0; 435 if (mset) { 437 mset->Add(pc, true, epoch0 + i) [all...] |
tsan_rtl_mutex.cc | 78 thr->mset.Remove(s->GetId()); 112 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch()); 151 thr->mset.Del(s->GetId(), true); 173 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch()); 196 thr->mset.Del(s->GetId(), false); 241 thr->mset.Del(s->GetId(), write);
|
tsan_rtl.h | 425 MutexSet mset; member in struct:__tsan::ThreadState 564 const MutexSet *mset); 583 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset);
|
tsan_interface_java.cc | 51 thr->mset.Remove(s->GetId());
|
tsan_rtl.cc | 323 hdr->mset0 = thr->mset;
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 339 self.assertEqual("EmbeddedMessageSetElement", file_options.mset.Extensions[
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
descriptor_unittest.cc | [all...] |