OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DoStuff
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/base/threading/
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.
56
non_thread_safe_class_->
DoStuff
();
90
// Verify that
DoStuff
doesn't assert.
91
non_thread_safe_class->
DoStuff
();
117
// Verify that
DoStuff
asserts in debug builds only when called
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.
56
thread_checker_class_->
DoStuff
();
90
// Verify that
DoStuff
doesn't assert.
91
thread_checker_class->
DoStuff
();
114
// Verify that
DoStuff
doesn't assert when called on a different thread after
129
//
DoStuff
should assert in debug builds only when called on a
153
//
DoStuff
doesn't assert when called on a different thread
161
//
DoStuff
should assert in debug builds only after moving t
[
all
...]
/external/chromium_org/third_party/webrtc/base/
thread_checker_unittest.cc
33
// Both the destructor and
DoStuff
should verify that they were
40
void
DoStuff
() {
55
// Calls ThreadCheckerClass::
DoStuff
on another thread.
65
thread_checker_class_->
DoStuff
();
112
// Verify that
DoStuff
doesn't assert.
113
thread_checker_class->
DoStuff
();
136
// Verify that
DoStuff
doesn't assert when called on a different thread after
151
//
DoStuff
should assert in debug builds only when called on a
176
//
DoStuff
doesn't assert when called on a different thread
184
//
DoStuff
should assert in debug builds only after moving t
[
all
...]
/external/chromium_org/base/synchronization/
lock_unittest.cc
155
static void
DoStuff
(Lock* lock, int* value) {
166
DoStuff
(lock_, value_);
185
MutexLockTestThread::
DoStuff
(&lock, &value);
207
MutexLockTestThread::
DoStuff
(&lock, &value);
/external/chromium_org/base/
sequence_checker_unittest.cc
33
//
DoStuff
should verify that it's called on a valid sequenced thread.
41
void
DoStuff
() {
83
base::Bind(&SequenceCheckedObject::
DoStuff
,
91
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/chromium_org/third_party/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/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>();
Completed in 138 milliseconds