Home
last modified time | relevance | path

Searched refs:is_fundamental (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/
DBinaryStream.h128 META_ASSERT(std::is_fundamental<T>::value); in read()
194 META_ASSERT(std::is_fundamental<T>::value); in write()
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
Dlvalue_ref.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_lvalue_ref()
Drvalue_ref.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_rvalue_ref()
Dvoid.pass.cpp21 static_assert( std::is_fundamental<T>::value, ""); in test_void_imp()
Dfloating_point.pass.cpp21 static_assert( std::is_fundamental<T>::value, ""); in test_floating_point_imp()
Dmember_object_pointer.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_member_object_pointer_imp()
Denum.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_enum_imp()
Dunion.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_union_imp()
Dpointer.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_pointer_imp()
Dclass.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_class_imp()
Dfunction.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_function_imp()
Dmember_function_pointer.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_member_function_pointer_imp()
Darray.pass.cpp21 static_assert(!std::is_fundamental<T>::value, ""); in test_array_imp()
Dintegral.pass.cpp21 static_assert( std::is_fundamental<T>::value, ""); in test_integral_imp()
/external/chromium_org/tools/json_schema_compiler/
Dmodel.py455 def __init__(self, is_fundamental, name): argument
457 self.is_fundamental = is_fundamental
Dcc_generator.py562 elif underlying_type.property_type.is_fundamental:
681 if underlying_type.property_type.is_fundamental:
/external/stlport/stlport/
Dtype_traits368 struct is_fundamental :
376 public integral_constant<bool, !(is_fundamental<_Tp>::value
398 // is_fundamental (above)
419 public integral_constant<bool, !is_fundamental<_Tp>::value>
/external/libcxx/include/
Dtype_traits48 template <class T> struct is_fundamental;
514 // is_fundamental
516 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_fundamental
543 : public integral_constant<bool, !is_fundamental<_Tp>::value> {};
/external/clang/test/SemaCXX/
Dtype-traits.cpp626 void is_fundamental() in is_fundamental() function