Home
last modified time | relevance | path

Searched refs:arg_ (Results 1 – 25 of 42) sorted by relevance

12

/third_party/boost/boost/spirit/home/classic/utility/
Dchset.hpp44 chset(chset const& arg_);
45 explicit chset(CharT arg_);
46 explicit chset(anychar_parser arg_);
47 explicit chset(nothing_parser arg_);
48 explicit chset(chlit<CharT> const& arg_);
49 explicit chset(range<CharT> const& arg_);
50 explicit chset(negated_char_parser<chlit<CharT> > const& arg_);
51 explicit chset(negated_char_parser<range<CharT> > const& arg_);
70 void set(range<CharT> const& arg_);
71 void set(negated_char_parser<chlit<CharT> > const& arg_);
[all …]
/third_party/boost/boost/spirit/home/classic/utility/impl/
Dchset.ipp81 inline chset<CharT>::chset(chset const& arg_)
82 : ptr(new basic_chset<CharT>(*arg_.ptr)) {}
85 inline chset<CharT>::chset(CharT arg_)
87 { ptr->set(arg_); }
100 inline chset<CharT>::chset(nothing_parser /*arg_*/)
104 inline chset<CharT>::chset(chlit<CharT> const& arg_)
106 { ptr->set(arg_.ch); }
109 inline chset<CharT>::chset(range<CharT> const& arg_)
111 { ptr->set(arg_.first, arg_.last); }
114 inline chset<CharT>::chset(negated_char_parser<chlit<CharT> > const& arg_)
[all …]
/third_party/python/Modules/clinic/
Dspwdmodule.c.h22 spwd_getspnam(PyObject *module, PyObject *arg_) in spwd_getspnam() argument
27 if (!PyUnicode_Check(arg_)) { in spwd_getspnam()
28 _PyArg_BadArgument("getspnam", "argument", "str", arg_); in spwd_getspnam()
31 if (PyUnicode_READY(arg_) == -1) { in spwd_getspnam()
34 arg = arg_; in spwd_getspnam()
/third_party/skia/third_party/externals/tint/test/intrinsics/
Dintrinsics.wgsl.tmpl82 [[group(1), binding({{$i}})]] var arg_{{$i}}: {{$el_type}};
83 {{ $args.Put $i (printf "&arg_%v" $i) -}}
85 var<workgroup> arg_{{$i}}: {{$el_type}};
86 {{ $args.Put $i (printf "&arg_%v" $i) -}}
88 var<private> arg_{{$i}}: {{$el_type}};
89 {{ $args.Put $i (printf "&arg_%v" $i) -}}
94 [[group(1), binding({{$i}})]] var arg_{{$i}}: {{$type}};
95 {{ $args.Put $i (printf "arg_%v" $i) -}}
97 var<workgroup> arg_{{$i}}: {{$type}};
98 {{ $args.Put $i (printf "arg_%v" $i) -}}
[all …]
/third_party/boost/libs/python/src/
Dlong.cpp9 new_non_null_reference long_base::call(object const& arg_) in call() argument
13 arg_.ptr()); in call()
16 new_non_null_reference long_base::call(object const& arg_, object const& base) in call() argument
20 arg_.ptr(), base.ptr()); in call()
Dtuple.cpp9 detail::new_reference tuple_base::call(object const& arg_) in call() argument
13 arg_.ptr()); in call()
Dlist.cpp11 detail::new_non_null_reference list_base::call(object const& arg_) in call() argument
17 arg_.ptr())); in call()
Ddict.cpp29 detail::new_reference dict_base::call(object const& arg_) in call() argument
33 arg_.ptr()); in call()
/third_party/weston/tests/
Dweston-test-runner.h172 fixture_setup_run_(struct weston_test_harness *harness, const void *arg_);
199 const void *arg_) \
242 const void *arg_) \
244 typeof(array_[0]) *arg = arg_; \
/third_party/boost/libs/python/test/
Dinjected.cpp34 , ( arg_("a"), arg_("b"), arg_("c")) in BOOST_PYTHON_MODULE()
/third_party/boost/libs/fusion/test/compile_time/
Dsfinae_friendly.hpp24 template <typename> struct arg_;
25 template <typename R, typename T> struct arg_<R(T)> { typedef T type; }; struct
43 … BOOST_MPL_ASSERT((::sfinae_friendly::check<typename ::sfinae_friendly::arg_<void Traits>::type>)) argument
/third_party/re2/util/
Dbenchmark.h64 : iters_(iters), arg_(0), has_arg_(false) {} in State()
67 : iters_(iters), arg_(arg), has_arg_(true) {} in State()
83 int64_t range(int pos) const { CHECK(has_arg_); return arg_; } in range()
87 int64_t arg_; variable
Dpcre.h580 Arg(type* p) : arg_(p), parser_(name) {} \
581 Arg(type* p, Parser parser) : arg_(p), parser_(parser) {}
606 : arg_(p), parser_(_PCRE_MatchObject<T>::Parse) { in Arg()
613 void* arg_;
649 inline PCRE::Arg::Arg() : arg_(NULL), parser_(parse_null) { } in Arg()
650 inline PCRE::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } in Arg()
653 return (*parser_)(str, n, arg_); in Parse()
/third_party/boost/boost/spirit/home/support/char_set/
Dbasic_chset.hpp32 basic_chset(basic_chset const& arg_) in basic_chset()
33 : rr(arg_.rr) {} in basic_chset()
145 basic_chset_8bit(basic_chset_8bit const& arg_) in basic_chset_8bit()
146 : bset(arg_.bset) {} in basic_chset_8bit()
/third_party/re2/re2/
Dre2.h799 Arg(type* p) : arg_(p), parser_(name) {} \
800 Arg(type* p, Parser parser) : arg_(p), parser_(parser) {}
823 : arg_(p), parser_(_RE2_MatchObject<T>::Parse) { } in MAKE_PARSER()
825 : arg_(p), parser_(parser) { } in Arg()
831 void* arg_;
867 inline RE2::Arg::Arg() : arg_(NULL), parser_(parse_null) { } in Arg()
868 inline RE2::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } in Arg()
869 inline RE2::Arg::Arg(std::nullptr_t p) : arg_(p), parser_(parse_null) { } in Arg()
872 return (*parser_)(str, n, arg_); in Parse()
/third_party/boost/libs/beast/include/boost/beast/_experimental/unit_test/
Drunner.hpp30 std::string arg_; member in boost::beast::unit_test::runner
52 arg_ = s; in arg()
59 return arg_; in arg()
/third_party/boost/boost/beast/_experimental/unit_test/
Drunner.hpp30 std::string arg_; member in boost::beast::unit_test::runner
52 arg_ = s; in arg()
59 return arg_; in arg()
/third_party/abseil-cpp/absl/synchronization/
Dmutex.h730 void *arg_; // arg of function_ or object of method_ variable
930 T *x = static_cast<T *>(c->arg_); in CastAndCallMethod()
939 T *x = static_cast<T *>(c->arg_); in CastAndCallFunction()
948 arg_(const_cast<void *>(static_cast<const void *>(arg))) {} in Condition()
956 arg_(object) {} in Condition()
965 arg_(reinterpret_cast<void *>(const_cast<T *>(object))) {} in Condition()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex.h746 void *arg_; // arg of function_ or object of method_ variable
947 T *x = static_cast<T *>(c->arg_); in CastAndCallMethod()
956 T *x = static_cast<T *>(c->arg_); in CastAndCallFunction()
965 arg_(const_cast<void *>(static_cast<const void *>(arg))) {} in Condition()
973 arg_(object) {} in Condition()
982 arg_(reinterpret_cast<void *>(const_cast<T *>(object))) {} in Condition()
/third_party/boost/boost/spirit/home/classic/utility/impl/chset/
Dbasic_chset.hpp32 basic_chset(basic_chset const& arg_);
64 basic_chset_8bit(basic_chset_8bit const& arg_);
Dbasic_chset.ipp32 inline basic_chset<CharT>::basic_chset(basic_chset const& arg_)
33 : rr(arg_.rr) {}
146 inline basic_chset_8bit<CharT>::basic_chset_8bit(basic_chset_8bit const& arg_)
147 : bset(arg_.bset) {}
/third_party/abseil-cpp/absl/strings/internal/str_format/
Dbind.h24 const FormatArgImpl* arg() const { return arg_; } in arg()
25 void set_arg(const FormatArgImpl* a) { arg_ = a; } in set_arg()
28 const FormatArgImpl* arg_;
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dbind.h38 const FormatArgImpl* arg() const { return arg_; } in arg()
39 void set_arg(const FormatArgImpl* a) { arg_ = a; } in set_arg()
42 const FormatArgImpl* arg_;
/third_party/ltp/testcases/kernel/sched/clisrv/
Dpthserv.c167 void *new_thread(void *arg_) in new_thread() argument
169 int arg = (uintptr_t) arg_; in new_thread()
/third_party/grpc/src/core/lib/iomgr/
Dbuffer_list.h120 : seq_no_(seq_no), arg_(arg), next_(nullptr) {} in TracedBuffer()
142 void* arg_; /* The arg to pass to timestamps_callback */ variable

12