/external/clang/test/SemaCXX/ |
D | warn-infinite-recursion.cpp | 118 int DoStuff() { in DoStuff() function 124 DoStuff<First, (First + Last)/2>(); in DoStuff() 125 DoStuff<(First + Last)/2, Last>(); in DoStuff() 129 int stuff = DoStuff<0, 1>();
|
D | warn-comma-operator.cpp | 146 bool DoStuff(); 157 for (x = 0; x < 10; DoStuff(), ++x) {} in test9()
|
/external/webrtc/webrtc/base/ |
D | thread_checker_unittest.cc | 39 void DoStuff() { RTC_DCHECK(CalledOnValidThread()); } in DoStuff() function in rtc::__anonf43f4f110111::ThreadCheckerClass 61 void Run() override { thread_checker_class_->DoStuff(); } in Run() 106 thread_checker_class->DoStuff(); in TEST() 178 thread_checker_class->DoStuff(); in DetachThenCallFromDifferentThreadImpl()
|
/external/sfntly/cpp/src/test/ |
D | lock_test.cc | 168 static void DoStuff(Lock* lock, int* value) { in DoStuff() function in sfntly::MutexLockTestThread 179 DoStuff(lock_, value_); in ThreadMain() 198 MutexLockTestThread::DoStuff(&lock, &value); in MutexTwoThreads() 221 MutexLockTestThread::DoStuff(&lock, &value); in MutexFourThreads()
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | handle_passing_unittest.cc | 78 void DoStuff(sample::RequestPtr request, in DoStuff() function in mojo::test::__anone3e49b760111::SampleFactoryImpl 162 void DoStuff(bool* got_response, in DoStuff() function 217 factory->DoStuff(std::move(request), std::move(pipe0.handle0), in TEST_P() 218 base::Bind(&DoStuff, &got_response, &got_text_reply, in TEST_P() 242 factory->DoStuff(std::move(request), ScopedMessagePipeHandle(), in TEST_P() 243 base::Bind(&DoStuff, &got_response, &got_text_reply, in TEST_P()
|
/external/libchrome/base/synchronization/ |
D | lock_unittest.cc | 198 static void DoStuff(Lock* lock, int* value) { in DoStuff() function in base::MutexLockTestThread 208 void ThreadMain() override { DoStuff(lock_, value_); } in ThreadMain() 226 MutexLockTestThread::DoStuff(&lock, &value); in TEST() 248 MutexLockTestThread::DoStuff(&lock, &value); in TEST()
|
/external/oss-fuzz/projects/example/my-api-repo/ |
D | README.md | 8 …i.cpp](my_api.cpp) implement the API we want to test/fuzz. The function `DoStuff()` inside [my_api… 9 * [do_stuff_unittest.cpp](do_stuff_unittest.cpp): is a unit test for `DoStuff()`. Unit tests are no… 10 ….cpp](do_stuff_fuzzer.cpp): is a [fuzz target](http://libfuzzer.info/#fuzz-target) for `DoStuff()`. 12 ….github.io/oss-fuzz/getting-started/new-project-guide#dictionaries) for `DoStuff()`. Optional, but…
|
D | my_api.h | 8 size_t DoStuff(const std::string &str);
|
D | do_stuff_fuzzer.cpp | 11 DoStuff(str); // Disregard the output. in LLVMFuzzerTestOneInput()
|
D | do_stuff_fuzzer.dict | 1 # A dictionary for more efficient fuzzing of DoStuff().
|
D | do_stuff_unittest.cpp | 13 size_t Result = DoStuff(str); in TestDoStuff()
|
D | my_api.cpp | 11 size_t DoStuff(const std::string &str) { in DoStuff() function
|
/external/libchrome/mojo/public/interfaces/bindings/tests/ |
D | sample_factory.mojom | 33 DoStuff(Request request, handle<message_pipe>? pipe) =>
|
/external/libchrome/base/containers/ |
D | README.md | 262 DoStuff(); // May call stack.push(), say if writing a parser.
|
/external/libchrome/mojo/public/tools/bindings/ |
D | README.md | 185 DoStuff();
|