Searched refs:is_void (Results 1 - 25 of 28) sorted by relevance

12

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Dis_void.pass.cpp12 // is_void
21 static_assert( std::is_void<T>::value, "");
22 static_assert( std::is_void<const T>::value, "");
23 static_assert( std::is_void<volatile T>::value, "");
24 static_assert( std::is_void<const volatile T>::value, "");
36 static_assert(!std::is_void<T>::value, "");
37 static_assert(!std::is_void<const T>::value, "");
38 static_assert(!std::is_void<volatile T>::value, "");
39 static_assert(!std::is_void<const volatile T>::value, "");
H A Dvoid.pass.cpp20 static_assert( std::is_void<T>::value, "");
54 static_assert(!std::is_void<incomplete_type>::value, "");
H A Darray.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dclass.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Denum.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dfloating_point.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dintegral.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dlvalue_ref.pass.cpp21 static_assert(!std::is_void<T>::value, "");
H A Dmember_object_pointer.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dnullptr.pass.cpp23 static_assert(!std::is_void<T>::value, "");
H A Dpointer.pass.cpp21 static_assert(!std::is_void<T>::value, "");
H A Drvalue_ref.pass.cpp22 static_assert(!std::is_void<T>::value, "");
H A Dunion.pass.cpp20 static_assert(!std::is_void<T>::value, "");
H A Dfunction.pass.cpp31 static_assert(!std::is_void<T>::value, "");
H A Dmember_function_pointer_no_variadics.pass.cpp22 static_assert(!std::is_void<T>::value, "");
H A Dmember_function_pointer.pass.cpp20 static_assert(!std::is_void<T>::value, "");
/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.functions/
H A Dpointer_to.pass.cpp33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
/external/libchrome/base/
H A Dtemplate_util.h61 bool = std::is_void<Lvalue>::value || std::is_void<Rvalue>::value>
H A Dbind_internal.h293 static_assert(std::is_void<ReturnType>::value,
/external/webrtc/webrtc/base/
H A Dtemplate_util.h48 template <class T> struct is_void : false_type {}; struct in namespace:rtc
49 template <> struct is_void<void> : true_type {}; struct in namespace:rtc
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
H A Dmeta.unary.cat.pass.cpp27 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
32 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp239 assert(!this->signature->return_type->is_void());
314 if(!this->function.signature->return_type->is_void()) {
574 else if(jump_strengths[0] == strength_return && this->function.signature->return_type->is_void())
975 if (ir->return_type->is_void() &&
H A Dglsl_types.h399 bool is_void() const function in struct:glsl_type
H A Dast.h580 bool is_void; member in class:ast_parameter_declarator
H A Dast_to_hir.cpp2579 if ((decl_type == NULL) || decl_type->is_void()) {
3017 if (type->is_void()) {
3022 is_void = true;
3044 is_void = false;
3106 if (param->is_void)
3269 if (! return_type->is_void()) {
3343 if (!signature->return_type->is_void() && !state->found_return) {

Completed in 415 milliseconds

12