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

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_void.hpp 19 //* is a type T void - is_void<T>
21 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_void,T,__is_void(T))
23 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_void,T,false)
24 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void,true)
27 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void const,true)
28 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void volatile,true)
29 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void const volatile,true)
add_rvalue_reference.hpp 15 #include <boost/type_traits/is_void.hpp>
54 <T, (!is_void<T>::value && !is_reference<T>::value) >::type type;
is_pod.hpp 13 #include <boost/type_traits/is_void.hpp>
44 ::boost::is_void<T>::value,
68 ::boost::is_void<T>::value,
is_class.hpp 26 # include <boost/type_traits/is_void.hpp>
103 ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value,
113 ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value
  /external/chromium_org/chrome/browser/devtools/
adb_client_socket.h 43 bool is_void,
49 void ReadResponse(const CommandCallback& callback, bool is_void, int result);
52 bool is_void,
adb_client_socket.cc 247 bool is_void = current_query_ < queries_.size() - 1; local
248 SendCommand(query, is_void,
355 bool is_void,
364 is_void));
366 ReadResponse(callback, is_void, result);
370 bool is_void,
383 is_void,
386 OnResponseHeader(callback, is_void, response_buffer, result);
391 bool is_void,
414 if (!is_void) {
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
adb_client_socket.h 46 bool is_void,
52 void ReadResponse(const CommandCallback& callback, bool is_void, int result);
55 bool is_void,
adb_client_socket.cc 268 bool is_void = current_query_ < queries_.size() - 1; local
269 SendCommand(query, is_void,
382 bool is_void,
391 is_void));
393 ReadResponse(callback, is_void, result);
397 bool is_void,
410 is_void,
413 OnResponseHeader(callback, is_void, response_buffer, result);
418 bool is_void,
441 if (!is_void) {
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.functions/
pointer_to.pass.cpp 33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
rvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
void.pass.cpp 19 static_assert( std::is_void<T>::value, "");
array.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
class.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
enum.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
floating_point.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
function.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
integral.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
member_function_pointer.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
member_object_pointer.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
pointer.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
union.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/
template_util.h 44 template <class T> struct is_void : false_type {}; struct in namespace:i18n::addressinput
45 template <> struct is_void<void> : true_type {}; struct in namespace:i18n::addressinput
  /external/chromium_org/third_party/libjingle/source/talk/base/
template_util.h 40 template <class T> struct is_void : false_type {}; struct in namespace:talk_base
41 template <> struct is_void<void> : true_type {}; struct in namespace:talk_base
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
template_util.h 41 template <class T> struct is_void : false_type {}; struct in namespace:i18n::phonenumbers
42 template <> struct is_void<void> : true_type {}; struct in namespace:i18n::phonenumbers

Completed in 260 milliseconds

1 2