OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DoStuff
(Results
1 - 7
of
7
) 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>();
/external/libchrome/base/threading/
thread_checker_unittest.cc
25
// Both the destructor and
DoStuff
should verify that they were
32
void
DoStuff
() {
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
should assert in debug builds only after moving t
[
all
...]
non_thread_safe_unittest.cc
25
// Both the destructor and
DoStuff
should verify that they were
32
void
DoStuff
() {
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/
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
,
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
should assert in debug builds only after moving t
[
all
...]
Completed in 343 milliseconds