HomeSort by relevance Sort by last modified time
    Searched refs:int_ (Results 1 - 24 of 24) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
Emplaceable.h 11 int int_; member in class:Emplaceable
14 Emplaceable() : int_(0), double_(0) {}
15 Emplaceable(int i, double d) : int_(i), double_(d) {}
17 : int_(x.int_), double_(x.double_)
18 {x.int_ = 0; x.double_ = 0;}
20 {int_ = x.int_; x.int_ = 0;
25 {return int_ == x.int_ && double_ == x.double_;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iterator_tags.hpp 21 struct forward_iterator_tag : int_<0> { typedef forward_iterator_tag type; };
22 struct bidirectional_iterator_tag : int_<1> { typedef bidirectional_iterator_tag type; };
23 struct random_access_iterator_tag : int_<2> { typedef random_access_iterator_tag type; };
int_fwd.hpp 22 template< BOOST_MPL_AUX_NTTP_DECL(int, N) > struct int_;
25 BOOST_MPL_AUX_ADL_BARRIER_DECL(int_)
lambda_fwd.hpp 33 typename Arity = int_< aux::template_arity<T>::value >
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
largest_int.hpp 26 template<> struct integral_rank<bool> : int_<1> {};
27 template<> struct integral_rank<signed char> : int_<2> {};
28 template<> struct integral_rank<char> : int_<3> {};
29 template<> struct integral_rank<unsigned char> : int_<4> {};
31 template<> struct integral_rank<wchar_t> : int_<5> {};
33 template<> struct integral_rank<short> : int_<6> {};
34 template<> struct integral_rank<unsigned short> : int_<7> {};
35 template<> struct integral_rank<int> : int_<8> {};
36 template<> struct integral_rank<unsigned int> : int_<9> {};
37 template<> struct integral_rank<long> : int_<10> {}
    [all...]
value_wknd.hpp 35 : int_<1>
37 using int_<1>::value;
lambda_spec.hpp 34 BOOST_MPL_AUX_LAMBDA_ARITY_PARAM(int_<i>) \
na_spec.hpp 50 : int_< BOOST_MPL_LIMIT_METAFUNCTION_ARITY > \
103 BOOST_MPL_AUX_LAMBDA_ARITY_PARAM(int_<-1>) \
122 : int_<j> \
130 : int_<-1> \
lambda_support.hpp 47 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
73 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
102 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
template_arity.hpp 120 typedef mpl::int_<value> type;
140 : mpl::int_<-1>
164 : mpl::int_<-1>
full_lambda.hpp 126 struct lambda< arg<N>,Tag AUX778076_ARITY_PARAM(int_<-1>) >
140 struct lambda< mpl::protect<T>,Tag AUX778076_ARITY_PARAM(int_<1>) >
155 AUX778076_ARITY_PARAM(int_<BOOST_PP_INC(BOOST_MPL_LIMIT_METAFUNCTION_ARITY)>)
175 , int_<3>
308 AUX778076_ARITY_PARAM(int_<i_>)
340 AUX778076_ARITY_PARAM(int_<BOOST_PP_INC(i_)>)
arity_spec.hpp 57 : int_<i> \
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared.pass.cpp 29 A(int i, char c) : int_(i), char_(c) {++count;}
31 : int_(a.int_), char_(a.char_)
35 int get_int() const {return int_;}
38 int int_; member in struct:A
make_shared.pass.cpp 38 A(int i, char c) : int_(i), char_(c) {++count;}
40 : int_(a.int_), char_(a.char_)
44 int get_int() const {return int_;}
47 int int_; member in struct:A
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
common.hpp 47 typedef mpl::int_<1>::type std_container_;
48 typedef mpl::int_<2>::type std_pair_;
49 typedef mpl::int_<3>::type const_std_pair_;
50 typedef mpl::int_<4>::type array_;
51 typedef mpl::int_<5>::type const_array_;
52 typedef mpl::int_<6>::type char_array_;
53 typedef mpl::int_<7>::type wchar_t_array_;
54 typedef mpl::int_<8>::type char_ptr_;
55 typedef mpl::int_<9>::type const_char_ptr_;
56 typedef mpl::int_<10>::type wchar_t_ptr_
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
template_arity_spec.hpp 24 : int_<i> \
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
is_subranged.hpp 62 typedef mpl::int_< ::std::numeric_limits<S>::digits > S_digits ;
63 typedef mpl::int_< ::std::numeric_limits<T>::digits > T_digits ;
68 typedef mpl::int_<2> Two ;
81 typedef mpl::int_< ::std::numeric_limits<S>::digits > S_digits ;
82 typedef mpl::int_< ::std::numeric_limits<T>::digits > T_digits ;
108 typedef mpl::int_< ::std::numeric_limits<S>::digits > S_mantisa ;
109 typedef mpl::int_< ::std::numeric_limits<T>::digits > T_mantisa ;
111 typedef mpl::int_< ::std::numeric_limits<S>::max_exponent > S_exponent ;
112 typedef mpl::int_< ::std::numeric_limits<T>::max_exponent > T_exponent ;
  /external/clang/test/SemaTemplate/
deduction-crash.cpp 9 struct int_;
39 struct In<a::int_<aaa::a>,my>;
44 In<a::int_<0> > a;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
full_lambda.hpp 54 struct lambda< arg<N>,Tag, int_< -1 > >
68 , int_<1>
120 , int_<1>
144 , int_<2>
197 , int_<2>
226 , int_<3>
279 , int_<3>
310 , int_<4>
365 , int_<4>
398 , int_<5
    [all...]
template_arity.hpp 94 typedef mpl::int_<value> type;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
policy.hpp 100 template <type N = Default> struct name : public boost::mpl::int_<N>{};\
130 template <Type N = Default> struct name : public boost::mpl::int_<N>{};\
575 typename mpl::at<result_type, mpl::int_<0> >::type,
576 typename mpl::at<result_type, mpl::int_<1> >::type,
577 typename mpl::at<result_type, mpl::int_<2> >::type,
578 typename mpl::at<result_type, mpl::int_<3> >::type,
579 typename mpl::at<result_type, mpl::int_<4> >::type,
580 typename mpl::at<result_type, mpl::int_<5> >::type,
581 typename mpl::at<result_type, mpl::int_<6> >::type,
582 typename mpl::at<result_type, mpl::int_<7> >::type
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 288 value_.int_ = 0;
337 value_.int_ = value;
350 value_.int_ = value;
592 return value_.int_ < other.value_.int_;
658 return value_.int_ == other.value_.int_;
713 return valueToString( value_.int_ );
739 return Int(value_.int_);
764 return UInt(value_.int_);
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 486 LargestInt int_; member in union:Json::Value::ValueHolder
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
math_fwd.hpp 553 typedef mpl::int_<0> bessel_no_int_tag; // No integer optimisation possible.
554 typedef mpl::int_<1> bessel_maybe_int_tag; // Maybe integer optimisation.
555 typedef mpl::int_<2> bessel_int_tag; // Definite integer optimistaion.
568 mpl::less_equal<precision_type, mpl::int_<0> >,
569 mpl::greater<precision_type, mpl::int_<64> > >,
    [all...]

Completed in 490 milliseconds