Searched refs:arg_pos (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/python/ |
D | return_arg.hpp | 60 std::size_t arg_pos=1 66 BOOST_STATIC_CONSTANT(bool, legal = arg_pos > 0); 72 , detail::return_arg_pos_argument_must_be_positive<arg_pos> 84 BOOST_STATIC_ASSERT(arg_pos > 0); in postcall() 90 return incref( detail::get(mpl::int_<arg_pos-1>(),args) ); in postcall() 94 struct extract_return_type : mpl::at_c<Sig, arg_pos>
|
/third_party/boost/libs/python/doc/reference/ |
D | return_arg.qbk | 8 …[[arg_pos][A positive compile-time constant of type `std::size_t`.][the position of the argument t… 14 template <size_t arg_pos=1, class Base = default_call_policies> 19 template <class Sig> struct extract_return_type : mpl::at_c<Sig, arg_pos>{}; 29 [[Returns][PyTuple_GetItem(args,arg_pos-1)]]
|
/third_party/boost/libs/python/src/object/ |
D | function.cpp | 175 … for (std::size_t arg_pos = n_unnamed_actual; arg_pos < max_arity ; ++arg_pos) in call() local 178 PyObject* kv = PyTuple_GET_ITEM(f->m_arg_names.ptr(), arg_pos); in call() 206 PyTuple_SET_ITEM(inner_args.get(), arg_pos, incref(value)); in call()
|
/third_party/ltp/scripts/ |
D | checkpatch.pl | 7342 my $arg_pos = $entry->[1]; 7349 if ($arg_pos > 1) { 7350 $arg_pos--; 7351 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
|