Searched refs:EnableIf (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dalias-template.cpp156 template<typename T> using EnableIf = typename enable_if<T::value>::type; // expected-error {{undefined template}}
159 template<typename T> EnableIf<is_enum<T>> f();
169 template<typename T, typename U = EnableIf<is_enum<T>>> struct fail1 {}; // expected-note {{here}}
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h932 // EnableIf<condition>::type is void when 'Cond' is true, and
935 // "typename EnableIf<expression>::type* = 0" as the last parameter.
936 template<bool> struct EnableIf;
937 template<> struct EnableIf<true> { typedef void type; }; // NOLINT struct in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h939 // EnableIf<condition>::type is void when 'Cond' is true, and
942 // "typename EnableIf<expression>::type* = 0" as the last parameter.
943 template<bool> struct EnableIf;
944 template<> struct EnableIf<true> { typedef void type; }; // NOLINT struct in namespace:testing::internal
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h958 // EnableIf<condition>::type is void when 'Cond' is true, and
961 // "typename EnableIf<expression>::type* = 0" as the last parameter.
962 template<bool> struct EnableIf;
963 template<> struct EnableIf<true> { typedef void type; }; // NOLINT struct in namespace:testing::internal
/external/chromium/testing/gtest/include/gtest/
H A Dgtest.h1391 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
1404 // than the first overload even without the first overload's EnableIf.
/external/gtest/include/gtest/
H A Dgtest.h1391 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
1404 // than the first overload even without the first overload's EnableIf.
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h1393 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
1406 // than the first overload even without the first overload's EnableIf.

Completed in 97 milliseconds