Searched refs:fooT (Results 1 – 4 of 4) sorted by relevance
37 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) { in __anon1bbc39950402() function117 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() function476 int run = fooT('a') + fooT(3.14);481 template<class T> auto fooT(T t) { in fooT() function499 int run = fooT('a') + fooT(3.14);
779 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) { in __anon0221a3cf5e02() function859 fooT(3); in test()860 fooT('a'); in test()861 fooT(3.14); in test()862 fooT("abcdefg"); in test()
1854 void barND(Foo1 *foo, T *fooT) EXCLUSIVE_LOCKS_REQUIRED(foo->mu_) { in barND() argument1860 void barD(Foo1 *foo, T *fooT) EXCLUSIVE_LOCKS_REQUIRED(fooT->mu_) { in barD() argument1861 fooT->a = 0; in barD()1884 void barTD(T2 *fooT) EXCLUSIVE_LOCKS_REQUIRED(fooBaseT.mu_, fooT->mu_) { in barTD() argument1886 fooT->a = 0; in barTD()
522 typedef char(*fooT)(); in TEST_F() typedef523 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()