Home
last modified time | relevance | path

Searched refs:fooT (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/SemaCXX/
Dcxx1y-generic-lambdas.cpp37 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) { in __anon1bbc39950402() function
117 fooT(3); in test()
118 fooT('a'); in test()
119 fooT(3.14); in test()
120 fooT("abcdefg"); in test()
458 template<class T> int fooT(T t) { in fooT() function
476 int run = fooT('a') + fooT(3.14);
481 template<class T> auto fooT(T t) { in fooT() function
499 int run = fooT('a') + fooT(3.14);
Dcxx1y-generic-lambdas-capturing.cpp779 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) { in __anon0221a3cf5e02() function
859 fooT(3); in test()
860 fooT('a'); in test()
861 fooT(3.14); in test()
862 fooT("abcdefg"); in test()
Dwarn-thread-safety-analysis.cpp1854 void barND(Foo1 *foo, T *fooT) EXCLUSIVE_LOCKS_REQUIRED(foo->mu_) { in barND() argument
1860 void barD(Foo1 *foo, T *fooT) EXCLUSIVE_LOCKS_REQUIRED(fooT->mu_) { in barD() argument
1861 fooT->a = 0; in barD()
1884 void barTD(T2 *fooT) EXCLUSIVE_LOCKS_REQUIRED(fooBaseT.mu_, fooT->mu_) { in barTD() argument
1886 fooT->a = 0; in barTD()
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DJITTest.cpp522 typedef char(*fooT)(); in TEST_F() typedef
523 fooT (*get_foo_addr)() = reinterpret_cast<fooT(*)()>( in TEST_F()
525 fooT foo_addr = get_foo_addr(); in TEST_F()
539 fooT foo = reinterpret_cast<fooT>( in TEST_F()