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

  /external/clang/test/SemaCXX/
warn-infinite-recursion.cpp 116 // DoStuff<0,0>() is instantiated, but never called.
118 int DoStuff() {
124 DoStuff<First, (First + Last)/2>();
125 DoStuff<(First + Last)/2, Last>();
129 int stuff = DoStuff<0, 1>();
warn-comma-operator.cpp 146 bool DoStuff();
157 for (x = 0; x < 10; DoStuff(), ++x) {}
  /external/libchrome/base/threading/
thread_checker_unittest.cc 27 // Both the destructor and DoStuff should verify that they were
34 void DoStuff() {
49 // Calls ThreadCheckerClass::DoStuff on another thread.
57 void Run() override { thread_checker_class_->DoStuff(); }
88 // Verify that DoStuff doesn't assert.
89 thread_checker_class->DoStuff();
112 // Verify that DoStuff doesn't assert when called on a different thread after
127 // DoStuff should assert in debug builds only when called on a
151 // DoStuff doesn't assert when called on a different thread
159 // DoStuff should assert in debug builds only after moving t
    [all...]
non_thread_safe_unittest.cc 27 // Both the destructor and DoStuff should verify that they were
34 void DoStuff() {
49 // Calls NonThreadSafeClass::DoStuff on another thread.
57 void Run() override { non_thread_safe_class_->DoStuff(); }
88 // Verify that DoStuff doesn't assert.
89 non_thread_safe_class->DoStuff();
115 // Verify that DoStuff asserts in debug builds only when called
  /external/webrtc/webrtc/base/
thread_checker_unittest.cc 32 // Both the destructor and DoStuff should verify that they were
39 void DoStuff() { RTC_DCHECK(CalledOnValidThread()); }
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 should assert in debug builds only after moving t
    [all...]
  /external/libchrome/base/synchronization/
lock_unittest.cc 156 static void DoStuff(Lock* lock, int* value) {
166 void ThreadMain() override { DoStuff(lock_, value_); }
184 MutexLockTestThread::DoStuff(&lock, &value);
206 MutexLockTestThread::DoStuff(&lock, &value);
  /external/sfntly/cpp/src/test/
lock_test.cc 168 static void DoStuff(Lock* lock, int* value) {
179 DoStuff(lock_, value_);
198 MutexLockTestThread::DoStuff(&lock, &value);
221 MutexLockTestThread::DoStuff(&lock, &value);
  /external/libchrome/base/
sequence_checker_unittest.cc 38 // DoStuff should verify that it's called on a valid sequenced thread.
46 void DoStuff() {
85 base::Bind(&SequenceCheckedObject::DoStuff,
92 FROM_HERE, base::Bind(&SequenceCheckedObject::DoStuff,
124 // Verify that DoStuff doesn't assert.
125 sequence_checked_object->DoStuff();
144 // Verify that DoStuff doesn't assert when called on a different thread after
191 // DoStuff should assert in debug builds only when called on a
215 // DoStuff doesn't assert when called on a different thread
221 // DoStuff should assert in debug builds only after moving t
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
handle_passing_unittest.cc 77 void DoStuff(sample::RequestPtr request,
166 void DoStuff(bool* got_response,
223 factory->DoStuff(std::move(request), std::move(pipe0.handle0),
224 base::Bind(&DoStuff, &got_response, &got_text_reply,
247 factory->DoStuff(std::move(request), ScopedMessagePipeHandle(),
248 base::Bind(&DoStuff, &got_response, &got_text_reply,
314 factory->DoStuff(std::move(request), ScopedMessagePipeHandle(),

Completed in 863 milliseconds