Searched refs:DoStuff (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dwarn-infinite-recursion.cpp116 // DoStuff<0,0>() is instantiated, but never called.
118 int DoStuff() { function
124 DoStuff<First, (First + Last)/2>();
125 DoStuff<(First + Last)/2, Last>();
129 int stuff = DoStuff<0, 1>();
/external/libchrome/base/threading/
H A Dthread_checker_unittest.cc25 // Both the destructor and DoStuff should verify that they were
32 void DoStuff() { function in class:base::__anon9321::ThreadCheckerClass
47 // Calls ThreadCheckerClass::DoStuff on another thread.
55 void Run() override { thread_checker_class_->DoStuff(); }
86 // Verify that DoStuff doesn't assert.
87 thread_checker_class->DoStuff();
110 // Verify that DoStuff doesn't assert when called on a different thread after
125 // DoStuff should assert in debug builds only when called on a
149 // DoStuff doesn't assert when called on a different thread
157 // DoStuff shoul
[all...]
H A Dnon_thread_safe_unittest.cc25 // Both the destructor and DoStuff should verify that they were
32 void DoStuff() { function in class:base::__anon9311::NonThreadSafeClass
47 // Calls NonThreadSafeClass::DoStuff on another thread.
55 void Run() override { non_thread_safe_class_->DoStuff(); }
86 // Verify that DoStuff doesn't assert.
87 non_thread_safe_class->DoStuff();
113 // Verify that DoStuff asserts in debug builds only when called
/external/webrtc/webrtc/base/
H A Dthread_checker_unittest.cc32 // Both the destructor and DoStuff should verify that they were
39 void DoStuff() { RTC_DCHECK(CalledOnValidThread()); } function in class:rtc::__anon20060::ThreadCheckerClass
52 // Calls ThreadCheckerClass::DoStuff on another thread.
61 void Run() override { thread_checker_class_->DoStuff(); }
105 // Verify that DoStuff doesn't assert.
106 thread_checker_class->DoStuff();
129 // Verify that DoStuff doesn't assert when called on a different thread after
144 // DoStuff should assert in debug builds only when called on a
168 // DoStuff doesn't assert when called on a different thread
176 // DoStuff shoul
[all...]
/external/libchrome/base/synchronization/
H A Dlock_unittest.cc156 static void DoStuff(Lock* lock, int* value) { function in class:base::MutexLockTestThread
166 void ThreadMain() override { DoStuff(lock_, value_); }
184 MutexLockTestThread::DoStuff(&lock, &value);
206 MutexLockTestThread::DoStuff(&lock, &value);
/external/sfntly/cpp/src/test/
H A Dlock_test.cc168 static void DoStuff(Lock* lock, int* value) { function in class:sfntly::MutexLockTestThread
179 DoStuff(lock_, value_);
198 MutexLockTestThread::DoStuff(&lock, &value);
221 MutexLockTestThread::DoStuff(&lock, &value);
/external/libchrome/base/
H A Dsequence_checker_unittest.cc38 // DoStuff should verify that it's called on a valid sequenced thread.
46 void DoStuff() { function in class:base::__anon9249::SequenceCheckedObject
85 base::Bind(&SequenceCheckedObject::DoStuff,
92 FROM_HERE, base::Bind(&SequenceCheckedObject::DoStuff,
125 // Verify that DoStuff doesn't assert.
126 sequence_checked_object->DoStuff();
145 // Verify that DoStuff doesn't assert when called on a different thread after
192 // DoStuff should assert in debug builds only when called on a
216 // DoStuff doesn't assert when called on a different thread
222 // DoStuff shoul
[all...]

Completed in 188 milliseconds