Home
last modified time | relevance | path

Searched refs:cons (Results 1 – 25 of 214) sorted by relevance

123456789

/third_party/boost/boost/fusion/container/list/
Dcons.hpp44 struct cons : sequence_base<cons<Car, Cdr> > struct
55 cons() in cons() function
59 explicit cons(typename detail::call_param<Car>::type in_car) in cons() function
63 cons( in cons() argument
70 cons(cons<Car2, Cdr2> const& rhs) in cons() function
78 cons(cons const& rhs) in cons() argument
83 cons( in cons() argument
88 , mpl::not_<is_base_of<cons, Sequence> > in cons()
98 cons(Iterator const& iter, mpl::true_ /*this_is_an_iterator*/) in cons() argument
104 cons& operator=(cons<Car2, Cdr2> const& rhs) in operator =() argument
[all …]
/third_party/boost/boost/xpressive/detail/utility/
Dcons.hpp51 struct cons;
75 return detail::ref(i.cons.car); in call()
96 return type(detail::ref(i.cons.cdr)); in call()
196 : cons(cons_) {} in cons_iterator()
198 cons_type& cons; member
227 struct cons : sequence_base<cons<Car,Cdr> > struct
233 cons() in cons() function
236 explicit cons( in cons() function
246 inline cons<Car>
249 return cons<Car>(car); in make_cons()
[all …]
/third_party/boost/boost/tuple/
Dtuple_comparison.hpp111 inline bool operator==(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator ==()
122 inline bool operator!=(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator !=()
133 inline bool operator<(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator <()
143 inline bool operator>(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator >()
153 inline bool operator<=(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator <=()
163 inline bool operator>=(const cons<T1, T2>& lhs, const cons<S1, S2>& rhs) in operator >=()
Dtuple.hpp46 typename tuples::element<N, tuples::cons<HT, TT> >::type
48 get(tuples::cons<HT, TT>& c) { in get()
56 typename tuples::element<N, tuples::cons<HT, TT> >::type
58 get(const tuples::cons<HT, TT>& c) { in get()
87 template<class H, class T> class tuple_size< boost::tuples::cons<H, T> >:
88 public boost::tuples::length< boost::tuples::cons<H, T> >
105 template<std::size_t I, class H, class T> class tuple_element< I, boost::tuples::cons<H, T> >:
106 public boost::tuples::element< I, boost::tuples::cons<H, T> >
/third_party/boost/boost/fusion/container/list/detail/
Dreverse_cons.hpp20 struct reverse_cons<cons<Car, Cdr>, State>
22 typedef reverse_cons<Cdr, cons<Car, State> > impl;
26 static type call(cons<Car, Cdr> const &cons, State const &state = State()) in call()
28 typedef fusion::cons<Car, State> cdr_type; in call()
29 return impl::call(cons.cdr, cdr_type(cons.car, state)); in call()
/third_party/boost/boost/fusion/view/flatten_view/
Dflatten_view_iterator.hpp54 typedef cons<Iterator> type;
78 typedef cons<Iterator, typename make_descent_cons<sub_begin>::type> type;
92 struct build_flatten_view_iterator<cons<Car>, Base>
97 static inline type apply(cons<Car> const& cons, Base const& base) in apply()
99 return type(cons.car, base); in apply()
104 struct build_flatten_view_iterator<cons<Car, Cdr>, Base>
111 static inline type apply(cons<Car, Cdr> const& cons, Base const& base) in apply()
113 return next::apply(cons.cdr, next_base(cons.car, base)); in apply()
/third_party/gettext/gnulib-local/m4/
DChangeLog.0403 2001-11-18 Bruno Haible <haible@clisp.cons.org>
410 2001-11-11 Bruno Haible <haible@clisp.cons.org>
415 2001-11-11 Bruno Haible <haible@clisp.cons.org>
420 2001-11-05 Bruno Haible <haible@clisp.cons.org>
430 2001-11-01 Bruno Haible <haible@clisp.cons.org>
438 2001-10-30 Bruno Haible <haible@clisp.cons.org>
443 2001-10-21 Bruno Haible <haible@clisp.cons.org>
447 2001-10-21 Bruno Haible <haible@clisp.cons.org>
454 2001-10-09 Bruno Haible <haible@clisp.cons.org>
458 2001-09-29 Bruno Haible <haible@clisp.cons.org>
[all …]
/third_party/boost/boost/spirit/home/support/detail/
Dmake_cons.hpp46 … as_meta_element<Car>::type car_type; typedef typename fusion::cons<car_type, Cdr> type;
51 fusion::cons<typename as_meta_element<Car>::type, Cdr>
55 typedef typename fusion::cons<car_type, Cdr> result; in make_cons()
60 fusion::cons<typename as_meta_element<Car>::type>
64 typedef typename fusion::cons<car_type> result; in make_cons()
73 fusion::cons<typename as_meta_element<Car>::type>
77 typedef typename fusion::cons<car_type> result; in make_cons()
/third_party/boost/libs/fusion/test/sequence/
Dcons.cpp40 cons<int, cons<std::string> > ns = in main()
71 cons<int, cons<float> > nf = in main()
83 cons<int&> tie(cons_tie(i)); in main()
89 cons<cons<int> > xs; in main()
/third_party/boost/libs/tuple/doc/
Dtuple_advanced_interface.qbk46 Tuples are internally represented as /cons lists/. For example, the tuple
52 cons<A, cons<B, cons<C, cons<D, null_type> > > >
54 The tuple template provides the typedef inherited to access the cons list
55 representation. E.g.: `tuple<A>::inherited` is the type `cons<A, null_type>`.
65 Both tuple template and the cons templates provide the typedefs `head_type`
67 of the tuple (or the cons list). The `tail_type` typedef gives the remaining
68 cons list after removing the first element. The head element is stored in the
71 head of a cons list, and `get_tail()` for getting a reference to the tail.
80 Treating tuples as cons lists gives a convenient means to define generic
88 inline void set_to_zero(cons<H, T>& x) { x.get_head() = 0; set_to_zero(x.get_tail()); }
[all …]
/third_party/boost/boost/fusion/container/generation/
Dcons_tie.hpp22 typedef cons<Car&, Cdr> type;
29 inline cons<Car&>
32 return cons<Car&>(car); in cons_tie()
38 inline cons<Car&, Cdr>
41 return cons<Car&, Cdr>(car, cdr); in cons_tie()
Dmake_cons.hpp24 typedef cons<typename detail::as_fusion_element<Car>::type, Cdr> type;
30 inline cons<typename detail::as_fusion_element<Car>::type>
33 return cons<typename detail::as_fusion_element<Car>::type>(car); in make_cons()
38 inline cons<typename detail::as_fusion_element<Car>::type, Cdr>
41 return cons<typename detail::as_fusion_element<Car>::type, Cdr>(car, cdr); in make_cons()
/third_party/boost/boost/tuple/detail/
Dtuple_basic.hpp73 template <class HT, class TT> struct cons;
215 typename element<N, cons<HT, TT> >::type
217 get(cons<HT, TT>& c) { in get()
219 apply<cons<HT, TT> > impl; in get()
229 typename element<N, cons<HT, TT> >::type
231 get(const cons<HT, TT>& c) { in get()
233 apply<cons<HT, TT> > impl; in get()
262 struct cons { struct
285 cons() : head(), tail() {} in cons() argument
293 cons(typename access_traits<stored_head_type>::parameter_type h, in cons() argument
[all …]
/third_party/boost/libs/phoenix/test/function/
Dlazy_list_tests.cpp32 using phx::cons; in main()
38 list<int> l1 = cons(1,l0); in main()
39 list<int> l2 = cons(2,l1); in main()
40 list<int> l3 = cons(3,l2); in main()
41 list<int> l4 = cons(4,l3); in main()
42 list<int> l5 = cons(5,NIL); in main()
44 list<int> l7 = cons(7,take(2,l4)); in main()
/third_party/node/test/js-native-api/6_object_wrap/
D6_object_wrap.cc26 napi_value cons; in Init() local
30 properties, &cons)); in Init()
32 NAPI_CALL_RETURN_VOID(env, napi_create_reference(env, cons, 1, &constructor)); in Init()
35 napi_set_named_property(env, exports, "MyObject", cons)); in Init()
76 napi_value cons; in New() local
77 NAPI_CALL(env, napi_get_reference_value(env, constructor, &cons)); in New()
80 NAPI_CALL(env, napi_new_instance(env, cons, argc, argv, &instance)); in New()
143 napi_value cons; in Multiply() local
144 NAPI_CALL(env, napi_get_reference_value(env, constructor, &cons)); in Multiply()
151 NAPI_CALL(env, napi_new_instance(env, cons, kArgCount, argv, &instance)); in Multiply()
/third_party/python/Lib/test/
Dtest_asdl_parser.py82 cons = ehandler.types[0]
83 self.assertIsInstance(cons, self.asdl.Constructor)
84 self.assertEqual(len(cons.fields), 3)
86 f0 = cons.fields[0]
91 f1 = cons.fields[1]
96 f2 = cons.fields[2]
119 def visitConstructor(self, cons): argument
120 for f in cons.fields:
122 self.names_with_seq.append(cons.name)
/third_party/node/test/js-native-api/8_passing_wrapped/
Dmyobject.cc24 napi_value cons; in Init() local
26 env, "MyObject", -1, New, nullptr, 0, nullptr, &cons); in Init()
29 status = napi_create_reference(env, cons, 1, &constructor); in Init()
75 napi_value cons; in NewInstance() local
76 status = napi_get_reference_value(env, constructor, &cons); in NewInstance()
79 status = napi_new_instance(env, cons, argc, argv, instance); in NewInstance()
/third_party/boost/libs/tuple/test/
Dtuple_test_bench.cpp406 using tuples::cons; in cons_test()
409 cons<volatile float, null_type> a(1, null_type()); in cons_test()
410 cons<const int, cons<volatile float, null_type> > b(2,a); in cons_test()
412 cons<int&, cons<const int, cons<volatile float, null_type> > > c(i, b); in cons_test()
415 cons<char, cons<int, cons<float, null_type> > > x; in cons_test()
435 using tuples::cons; in tuple_length_test()
436 typedef cons<int, cons< float, cons <double, tuples::null_type> > > t1_cons; in tuple_length_test()
/third_party/boost/boost/geometry/index/
Dpredicates.hpp399 boost::tuples::cons<
401 boost::tuples::cons<Pred2, boost::tuples::null_type>
410 bt::cons< Pred1, bt::cons<Pred2, bt::null_type> > in operator &&()
411 ( p1, bt::cons<Pred2, bt::null_type>(p2, bt::null_type()) ); in operator &&()
416 boost::tuples::cons<Head, Tail>, Pred
418 operator&&(boost::tuples::cons<Head, Tail> const& t, Pred const& p) in operator &&()
425 bt::cons<Head, Tail>, Pred in operator &&()
/third_party/gettext/
DChangeLog.060 2002-10-28 Bruno Haible <haible@clisp.cons.org>
111 2002-07-16 Bruno Haible <haible@clisp.cons.org>
306 2002-01-04 Bruno Haible <haible@clisp.cons.org>
349 2001-11-18 Bruno Haible <haible@clisp.cons.org>
353 2001-11-10 Bruno Haible <haible@clisp.cons.org>
361 2001-11-03 Bruno Haible <haible@clisp.cons.org>
366 2001-10-30 Bruno Haible <haible@clisp.cons.org>
371 2001-10-21 Bruno Haible <haible@clisp.cons.org>
375 2001-10-19 Bruno Haible <haible@clisp.cons.org>
379 2001-10-09 Bruno Haible <haible@clisp.cons.org>
[all …]
/third_party/node/test/js-native-api/7_factory_wrap/
Dmyobject.cc32 napi_value cons; in Init() local
34 env, "MyObject", -1, New, nullptr, 1, properties, &cons); in Init()
37 status = napi_create_reference(env, cons, 1, &constructor); in Init()
79 napi_value cons; in NewInstance() local
80 status = napi_get_reference_value(env, constructor, &cons); in NewInstance()
83 status = napi_new_instance(env, cons, argc, argv, instance); in NewInstance()
/third_party/node/src/api/
Dexceptions.cc37 Local<String> cons = in ErrnoException() local
39 cons = String::Concat(isolate, cons, message); in ErrnoException()
48 cons = String::Concat(isolate, cons, FIXED_ONE_BYTE_STRING(isolate, " '")); in ErrnoException()
49 cons = String::Concat(isolate, cons, path_string); in ErrnoException()
50 cons = String::Concat(isolate, cons, FIXED_ONE_BYTE_STRING(isolate, "'")); in ErrnoException()
52 e = Exception::Error(cons); in ErrnoException()
/third_party/gettext/gettext-tools/doc/
DChangeLog.0191 2002-03-07 Bruno Haible <haible@clisp.cons.org>
198 2002-03-05 Bruno Haible <haible@clisp.cons.org>
203 2002-03-04 Bruno Haible <haible@clisp.cons.org>
306 2002-01-03 Bruno Haible <haible@clisp.cons.org>
356 2001-12-05 Bruno Haible <haible@clisp.cons.org>
391 2001-11-18 Bruno Haible <haible@clisp.cons.org>
399 2001-11-17 Bruno Haible <haible@clisp.cons.org>
403 2001-11-11 Bruno Haible <haible@clisp.cons.org>
407 2001-11-11 Bruno Haible <haible@clisp.cons.org>
421 2001-11-07 Bruno Haible <haible@clisp.cons.org>
[all …]
/third_party/gettext/gettext-tools/man/
DChangeLog.045 2001-10-08 Bruno Haible <haible@clisp.cons.org>
54 2001-09-08 Bruno Haible <haible@clisp.cons.org>
63 2001-07-28 Bruno Haible <haible@clisp.cons.org>
84 2001-07-21 Bruno Haible <haible@clisp.cons.org>
92 2001-07-12 Bruno Haible <haible@clisp.cons.org>
102 2001-06-10 Bruno Haible <haible@clisp.cons.org>
132 2001-09-13 Bruno Haible <haible@clisp.cons.org>
136 2001-07-24 Bruno Haible <haible@clisp.cons.org>
140 2001-05-23 Bruno Haible <haible@clisp.cons.org>
144 2001-05-20 Bruno Haible <haible@clisp.cons.org>
/third_party/gstreamer/gstreamer/tests/benchmarks/
Dcomplexity.scm40 (lp (cons x lines))))))
49 (format #t "; running test: ~a\n" (cons program args))
51 cons
57 (string-join (map object->string (cons program args)) " "))))))
63 (lp (+ n step) (cons n out)))))

123456789