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

1 2 3

  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_const.pass.cpp 12 // is_const
19 static_assert(!std::is_const<T>::value, "");
20 static_assert( std::is_const<const T>::value, "");
21 static_assert(!std::is_const<volatile T>::value, "");
22 static_assert( std::is_const<const volatile T>::value, "");
35 static_assert(!std::is_const<int&>::value, "");
36 static_assert(!std::is_const<const int&>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_const.pass.cpp 12 // is_const
19 static_assert(!std::is_const<T>::value, "");
20 static_assert( std::is_const<const T>::value, "");
21 static_assert(!std::is_const<volatile T>::value, "");
22 static_assert( std::is_const<const volatile T>::value, "");
35 static_assert(!std::is_const<int&>::value, "");
36 static_assert(!std::is_const<const int&>::value, "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_const.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
49 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_const,T,__is_const(T))
62 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<typename boost::remove_bounds<T>::type*>::is_const);
64 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<T*>::is_const);
76 //* is a type T declared const - is_const<T>
77 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_const,T,::boost::detail::is_const_rvalue_filter<T>::value)
78 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T&,false)
85 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T& const,false)
86 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T& volatile,false)
87 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T& const volatile,false
    [all...]
cv_traits.hpp 10 // is_const, is_volatile, remove_const, remove_volatile, remove_cv.
18 #include <boost/type_traits/is_const.hpp>
remove_volatile.hpp 14 #include <boost/type_traits/is_const.hpp>
35 template <typename T, bool is_const>
52 , ::boost::is_const<T>::value
make_unsigned.hpp 19 #include <boost/type_traits/is_const.hpp>
114 is_const<T>,
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
type_traits.hpp 23 using std::is_const;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
cv_traits_impl.hpp 37 BOOST_STATIC_CONSTANT(bool, is_const = false);
45 BOOST_STATIC_CONSTANT(bool, is_const = true);
53 BOOST_STATIC_CONSTANT(bool, is_const = false);
61 BOOST_STATIC_CONSTANT(bool, is_const = true);
85 BOOST_STATIC_CONSTANT(bool, is_const = false);
  /external/llvm/unittests/Support/
ThreadLocalTest.cpp 30 std::is_const<std::remove_pointer<decltype(x.get())>::type>::value,
45 !std::is_const<std::remove_pointer<decltype(y.get())>::type>::value,
  /external/mesa3d/src/glsl/
loop_analysis.h 202 const bool is_const = (this->num_assignments == 0) local
216 assert(!this->var->read_only || (this->var->read_only && is_const));
218 return is_const;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
iterator.hpp 21 #include <boost/type_traits/is_const.hpp>
36 mpl::eval_if_c< is_const<C>::value,
61 mpl::eval_if_c< is_const<C>::value,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
type_utils.hpp 56 using std::tr1::is_const;
81 value = is_const<T>::value && is_pointer<T>::value
90 value = is_const<T>::value && is_reference<T>::value
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
type_utils.hpp 56 using std::tr1::is_const;
81 value = is_const<T>::value && is_pointer<T>::value
90 value = is_const<T>::value && is_reference<T>::value
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
type_utils.hpp 56 using std::tr1::is_const;
81 value = is_const<T>::value && is_pointer<T>::value
90 value = is_const<T>::value && is_reference<T>::value
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
type_utils.hpp 56 using std::tr1::is_const;
81 value = is_const<T>::value && is_pointer<T>::value
90 value = is_const<T>::value && is_reference<T>::value
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
facade_iterator_category.hpp 17 # include <boost/type_traits/is_const.hpp>
62 is_const<Reference>
64 , is_const<ValueParam>
67 : is_const<ValueParam>
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 35 struct is_const { struct
40 struct is_const<const T> { struct
44 int is_const0[is_const<int>::value? -1 : 1];
45 int is_const1[is_const<const int>::value? 1 : -1];
46 int is_const2[is_const<const volatile int>::value? 1 : -1];
47 int is_const3[is_const<const int [3]>::value? 1 : -1];
48 int is_const4[is_const<const volatile int[3]>::value? 1 : -1];
49 int is_const5[is_const<volatile int[3]>::value? -1 : 1];
  /external/libchrome/base/
template_util.h 53 template <class T> struct is_const : false_type {}; struct in namespace:base
54 template <class T> struct is_const<const T> : true_type {}; struct in namespace:base
callback_internal.h 115 !is_const<T>::value;
  /external/dbus-binding-generator/chromeos-dbus-bindings/
xml_interface_parser_unittest.cc 89 EXPECT_FALSE(interface.methods[0].is_const);
102 EXPECT_TRUE(interface.methods[1].is_const);
interface.h 43 bool is_const{false};
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
foreach.hpp 31 #include <boost/type_traits/is_const.hpp>
78 // ************** is_const ************** //
82 inline is_const<C>
85 return is_const<C>();
  /external/v8/src/runtime/
runtime-scopes.cc 37 bool is_const, bool is_function) {
54 if (is_const) return ThrowRedeclarationError(isolate, name);
108 bool is_const = initial_value->IsTheHole(); local
111 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
131 if (is_const) attr |= READ_ONLY;
133 if (!is_const && !is_eval) attr |= DONT_DELETE;
137 is_var, is_const, is_function);
220 bool is_const = initial_value->IsTheHole(); local
223 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
258 value, attr, is_var, is_const, is_function)
    [all...]
  /external/libweave/third_party/chromium/base/
callback_internal.h 114 !std::is_const<T>::value;
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
type_traits.hpp 136 enum { is_const = type_traits_detail::UnConst<T>::value }; enumerator in enum:cv::cudev::TypeTraits::__anon21591

Completed in 773 milliseconds

1 2 3