HomeSort by relevance Sort by last modified time
    Searched defs:fooT (Results 1 - 2 of 2) sorted by null

  /external/clang/test/SemaCXX/
cxx1y-generic-lambdas.cpp 37 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) {
117 fooT(3);
118 fooT('a');
119 fooT(3.14);
120 fooT("abcdefg");
458 template<class T> int fooT(T t) {
476 int run = fooT('a') + fooT(3.14);
481 template<class T> auto fooT(T t) {
499 int run = fooT('a') + fooT(3.14)
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 493 typedef char(*fooT)();
494 fooT (*get_foo_addr)() = reinterpret_cast<fooT(*)()>(
496 fooT foo_addr = get_foo_addr();
510 fooT foo = reinterpret_cast<fooT>(

Completed in 138 milliseconds