HomeSort by relevance Sort by last modified time
    Searched refs:false_type (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 27 static_assert (!std::conjunction<std::false_type>::value, "" );
31 static_assert (!std::conjunction_v<std::false_type>, "" );
34 static_assert (!std::conjunction<std::true_type, std::false_type>::value, "" );
35 static_assert (!std::conjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::conjunction<std::false_type, std::false_type>::value, "" );
39 static_assert (!std::conjunction_v<std::true_type, std::false_type>, "" );
40 static_assert (!std::conjunction_v<std::false_type, std::true_type >, "" );
41 static_assert (!std::conjunction_v<std::false_type, std::false_type>, "" );
    [all...]
disjunction.pass.cpp 27 static_assert (!std::disjunction<std::false_type>::value, "" );
31 static_assert (!std::disjunction_v<std::false_type>, "" );
34 static_assert ( std::disjunction<std::true_type, std::false_type>::value, "" );
35 static_assert ( std::disjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::disjunction<std::false_type, std::false_type>::value, "" );
39 static_assert ( std::disjunction_v<std::true_type, std::false_type>, "" );
40 static_assert ( std::disjunction_v<std::false_type, std::true_type >, "" );
41 static_assert (!std::disjunction_v<std::false_type, std::false_type>, "" );
    [all...]
negation.pass.cpp 26 static_assert ( std::negation<std::false_type>::value, "" );
29 static_assert ( std::negation_v<std::false_type>, "" );
38 static_assert (!std::negation<std::negation<std::false_type>>::value, "" );
  /external/protobuf/src/google/protobuf/
generated_enum_util.h 41 template <typename T> struct is_proto_enum : ::google::protobuf::internal::false_type {};
  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
propagate_on_container_copy_assignment.pass.cpp 28 std::false_type>::value), "");
32 std::false_type>::value), "");
propagate_on_container_swap.pass.cpp 28 std::false_type>::value), "");
32 std::false_type>::value), "");
propagate_on_container_move_assignment.pass.cpp 28 std::false_type>::value), "");
  /external/libcxx/test/std/utilities/meta/meta.help/
integral_constant.pass.cpp 36 static_assert(std::false_type::value == false, "");
37 static_assert((std::is_same<std::false_type::value_type, bool>::value), "");
38 static_assert((std::is_same<std::false_type::type, std::false_type>::value), "");
44 std::false_type f1;
45 std::false_type f2 = f1;
  /external/webrtc/webrtc/base/
template_util.h 32 typedef integral_constant<bool, false> false_type; typedef in namespace:rtc
34 template <class T> struct is_pointer : false_type {};
37 template <class T, class U> struct is_same : public false_type {};
40 template<class> struct is_array : public false_type {};
44 template <class T> struct is_non_const_reference : false_type {};
46 template <class T> struct is_non_const_reference<const T&> : false_type {};
48 template <class T> struct is_void : false_type {};
106 // Inherits from true_type if From is convertible to To, false_type otherwise.
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
propagate_on_container_copy_assignment.pass.cpp 16 // | false_type propagate_on_container_copy_assignment;
50 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
52 static_assert((std::is_same<std::allocator_traits<C<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
propagate_on_container_move_assignment.pass.cpp 16 // | false_type propagate_on_container_move_assignment;
51 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
53 static_assert((std::is_same<std::allocator_traits<C<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
propagate_on_container_swap.pass.cpp 16 // | false_type propagate_on_container_swap;
49 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_swap, std::false_type>::value), "");
51 static_assert((std::is_same<std::allocator_traits<C<char> >::propagate_on_container_swap, std::false_type>::value), "");
is_always_equal.pass.cpp 47 static_assert((std::is_same<std::allocator_traits<C<char> >::is_always_equal, std::false_type>::value), "");
51 static_assert((std::is_same<std::allocator_traits<C<const char> >::is_always_equal, std::false_type>::value), "");
  /external/libchrome/base/
template_util.h 41 template <class T> struct is_non_const_reference : std::false_type {};
43 template <class T> struct is_non_const_reference<const T&> : std::false_type {};
68 struct SupportsOstreamOperator : std::false_type {};
79 struct is_iterator : std::false_type {};
141 struct is_trivially_copy_constructible<std::vector<T...>> : std::false_type {};
  /external/libcxx/test/support/test.workarounds/
c1xx_broken_za_ctor_check.pass.cpp 33 auto test(long) -> std::false_type; member in class:std
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
move_assign_noexcept.pass.cpp 43 typedef std::false_type propagate_on_container_move_assignment;
56 typedef std::false_type propagate_on_container_move_assignment;
57 typedef std::false_type is_always_equal;
  /external/libcxx/test/std/containers/sequences/vector.bool/
move_assign_noexcept.pass.cpp 43 typedef std::false_type propagate_on_container_move_assignment;
56 typedef std::false_type propagate_on_container_move_assignment;
57 typedef std::false_type is_always_equal;
  /external/libcxx/test/std/strings/basic.string/string.cons/
move_assign_noexcept.pass.cpp 48 typedef std::false_type propagate_on_container_move_assignment;
62 typedef std::false_type propagate_on_container_move_assignment;
63 typedef std::false_type is_always_equal;
  /external/pdfium/third_party/base/
template_util.h 51 struct is_non_const_reference : std::false_type {};
55 struct is_non_const_reference<const T&> : std::false_type {};
78 // False case: Otherwise the return value is a false_type.
80 std::false_type IsAssignableTest(internal::Any, Rvalue&&);
93 // is false_type.
95 struct IsAssignableImpl<Lvalue, Rvalue, true> : public std::false_type {};
99 struct SupportsOstreamOperator : std::false_type {};
  /external/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 57 EXPECT_FALSE(false_type::value);
64 typedef if_<true, true_type, false_type>::type if_true;
67 typedef if_<false, true_type, false_type>::type if_false;
  /external/tensorflow/tensorflow/core/framework/
type_traits.h 31 struct false_type { struct in namespace:tensorflow
37 struct is_quantized : false_type {};
53 struct is_complex : false_type {};
  /device/generic/goldfish-opengl/android-emu/android/base/
TypeTraits.h 59 struct is_callable_as : std::false_type {};
81 struct is_callable_with_args : std::false_type {};
103 struct is_template_instantiation_of : std::false_type {};
132 struct is_range : std::false_type {};
  /external/libchrome/base/memory/
raw_scoped_refptr_mismatch_checker.h 26 struct IsRefCountedType : std::false_type {};
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.resumption/
resume.pass.cpp 36 auto has_resume_imp(H&&, long) -> std::false_type; member in class:std
47 auto has_call_operator_imp(H&&, long) -> std::false_type; member in class:std
  /external/libcxx/test/support/
charconv_test_helpers.h 25 using std::false_type;
37 is_non_narrowing(...) -> false_type
51 _fits_in(T v, false_type, true_type /* T signed*/, true_type /* X signed */)
58 _fits_in(T v, false_type, true_type /* T signed */, false_type /* X unsigned*/)
65 _fits_in(T v, false_type, false_type /* T unsigned */, ...)
132 static auto fromchars(char const* p, char const* ep, int base, false_type)

Completed in 325 milliseconds

1 2 3 4 5 6 7