Home
last modified time | relevance | path

Searched refs:long_ (Results 1 – 25 of 135) sorted by relevance

123456

/third_party/boost/libs/python/test/
Dlong.cpp17 return long_(); in new_long()
20 long_ longify(object x) in longify()
22 return long_(x); in longify()
27 return long_(s); in longify_string()
30 char const* is_long1(long_& x) in is_long1()
32 long_ y = x; in is_long1()
48 Y(boost::python::long_) {} in Y()
59 class_< Y >("Y", init< boost::python::long_ >()) in BOOST_PYTHON_MODULE()
/third_party/boost/libs/python/doc/reference/
Dlong.qbk5 [section Class `long_`]
6 … `long_` is publicly derived from [link object_wrappers.boost_python_object_hpp.class_object `obje…
10 class long_ : public object
13 long_(); // new long_
16 explicit long_(T const& rhs);
19 long_(T const& rhs, U const& base);
29 python::long_ fact(long n)
32 return python::long_(1);
/third_party/boost/boost/mpl/list/aux_/preprocessed/plain/
Dlist10.hpp19 long_<1>
32 long_<2>
45 long_<3>
58 long_<4>
71 long_<5>
85 long_<6>
99 long_<7>
113 long_<8>
127 long_<9>
141 long_<10>
Dlist10_c.hpp20 long_<1>
35 long_<2>
50 long_<3>
65 long_<4>
80 long_<5>
95 long_<6>
110 long_<7>
125 long_<8>
140 long_<9>
155 long_<10>
Dlist20.hpp21 long_<11>
36 long_<12>
51 long_<13>
66 long_<14>
81 long_<15>
97 long_<16>
113 long_<17>
129 long_<18>
145 long_<19>
161 long_<20>
Dlist30.hpp23 long_<21>
40 long_<22>
57 long_<23>
74 long_<24>
91 long_<25>
109 long_<26>
127 long_<27>
145 long_<28>
163 long_<29>
181 long_<30>
Dlist20_c.hpp20 long_<11>
36 long_<12>
52 long_<13>
68 long_<14>
84 long_<15>
100 long_<16>
116 long_<17>
132 long_<18>
148 long_<19>
164 long_<20>
Dlist40.hpp25 long_<31>
44 long_<32>
63 long_<33>
82 long_<34>
101 long_<35>
121 long_<36>
141 long_<37>
161 long_<38>
181 long_<39>
201 long_<40>
Dlist30_c.hpp21 long_<21>
38 long_<22>
55 long_<23>
72 long_<24>
89 long_<25>
106 long_<26>
123 long_<27>
140 long_<28>
157 long_<29>
174 long_<30>
Dlist50.hpp27 long_<41>
48 long_<42>
69 long_<43>
90 long_<44>
111 long_<45>
133 long_<46>
155 long_<47>
177 long_<48>
199 long_<49>
221 long_<50>
/third_party/boost/boost/python/
Dlong.hpp32 class long_ : public detail::long_base class
36 long_() {} // new long_ in long_() function in boost::python::long_
39 explicit long_(T const& rhs) in long_() function in boost::python::long_
45 explicit long_(T const& rhs, U const& base) in long_() function in boost::python::long_
51 BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS(long_, base)
60 struct object_manager_traits<long_>
61 : pytype_object_manager_traits<&PyLong_Type,long_>
/third_party/boost/boost/phoenix/core/detail/cpp03/preprocessed/
Dfunction_equal_10.hpp9long_< 1 > ) const { return function_equal_()( proto::child_c<0>(e1) , proto::child_c<0>(e2) ) ; }… in evaluate()
Dfunction_equal_20.hpp9long_< 1 > ) const { return function_equal_()( proto::child_c<0>(e1) , proto::child_c<0>(e2) ) ; }… in evaluate()
/third_party/boost/boost/parameter/
Dpython.hpp178 , mpl::bitand_<bits, mpl::long_<1> >
190 , typename mpl::shift_right<bits, mpl::long_<1> >::type
314 , mpl::long_<Bits::value + 1>() in def_combinations()
475 typedef typename mpl::shift_left<mpl::long_<1>, optional_arity>::type upper; in def()
480 , mpl::long_<0>() in def()
481 , mpl::long_<upper::value>() in def()
509 typedef typename mpl::shift_left<mpl::long_<1>, optional_arity>::type upper; in def()
514 , mpl::long_<0>() in def()
515 , mpl::long_<upper::value>() in def()
616 typedef typename mpl::shift_left<mpl::long_<1>, optional_arity>::type upper; in visit_aux()
[all …]
/third_party/boost/boost/mpl/aux_/
DO1_size_impl.hpp50 , long_<-1>
58 , long_<-1>
65 , long_<-1>
78 : long_<-1>
/third_party/boost/libs/mpl/doc/src/refmanual/
Dlong_.rst1 .. Data Types/Numeric//long_ |30
60 | ``long_<c>`` | An |Integral Constant| ``x`` such that ``x::value == c`` |
70 typedef long_<8> eight;
74 BOOST_MPL_ASSERT(( is_same< next< eight >::type, long_<9> > ));
75 BOOST_MPL_ASSERT(( is_same< prior< eight >::type, long_<7> > ));
/third_party/boost/libs/spirit/test/qi/
Dregression_numeric_alternatives.cpp20 using boost::spirit::qi::long_; in main()
44 BOOST_TEST(test("-123456789", long_(0) | long_(-123456789L))); in main()
45 BOOST_TEST(test("-123456789", long_(-123456789L) | long_(0))); in main()
Dint3.cpp101 using boost::spirit::long_; in main()
110 BOOST_TEST(test("1234567890", long_(1234567890L))); in main()
111 BOOST_TEST(!test("1234567890", long_(987654321L))); in main()
112 BOOST_TEST(test_attr("1234567890", long_(1234567890L), i)); in main()
114 BOOST_TEST(!test_attr("1234567890", long_(987654321L), i)); in main()
/third_party/boost/libs/functional/forward/test/
Dforward_adapter.cpp70 enum { int_, long_, char_ }; enumerator
73 int type_of(long) { return long_; } in type_of()
116 BOOST_TEST( type_of( func(x,1) ) == long_ ); in main()
117 BOOST_TEST( type_of( func_ref(x,1) ) == long_ ); in main()
118 BOOST_TEST( type_of( func_ref_c(x,1) ) == long_ ); in main()
Dlightweight_forward_adapter.cpp70 enum { int_, long_, char_ }; enumerator
73 int type_of(long) { return long_; } in type_of()
117 BOOST_TEST( type_of( func(x,1) ) == long_ ); in main()
118 BOOST_TEST( type_of( func_ref(x,1) ) == long_ ); in main()
119 BOOST_TEST( type_of( func_ref_c(x,1) ) == long_ ); in main()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/
Dencodable_value.h74 explicit EncodableValue(int64_t value) : long_(value), type_(Type::kLong) {} in EncodableValue()
133 long_ = 0; in EncodableValue()
178 long_ = other.long_; in EncodableValue()
236 long_ = other.long_;
295 return long_ < other.long_;
340 return long_; in LongValue()
552 int64_t long_; member
/third_party/boost/boost/mpl/map/aux_/
Diterator.hpp43 , long_<order>
53 : long_<max_order>
105 , long_<order>
119 , long_<order>
Dmap0.hpp59 typedef long_<1> order;
60 typedef long_<0> size;
64 BOOST_MPL_AUX_MAP0_OVERLOAD( aux::type_wrapper<void_>, ITEM_BY_ORDER, map0<>, long_<1>* );
/third_party/boost/boost/mpl/
Ddistance.hpp40 , mpl::long_<0>
48 , mpl::long_<0>
55 , mpl::long_<0>
/third_party/boost/boost/proto/detail/preprocessed/
Dbasic_expr.hpp41 typedef mpl::long_<0 > proto_arity;
119 typedef mpl::long_<1 > proto_arity;
203 typedef mpl::long_<2 > proto_arity;
274 typedef mpl::long_<3 > proto_arity;
345 typedef mpl::long_<4 > proto_arity;
416 typedef mpl::long_<5 > proto_arity;
487 typedef mpl::long_<6 > proto_arity;
558 typedef mpl::long_<7 > proto_arity;
629 typedef mpl::long_<8 > proto_arity;
700 typedef mpl::long_<9 > proto_arity;
[all …]

123456