/third_party/boost/boost/spirit/home/classic/utility/ |
D | chset.hpp | 44 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/ |
D | chset.ipp | 81 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/ |
D | spwdmodule.c.h | 22 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/ |
D | intrinsics.wgsl.tmpl | 82 [[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/ |
D | long.cpp | 9 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()
|
D | tuple.cpp | 9 detail::new_reference tuple_base::call(object const& arg_) in call() argument 13 arg_.ptr()); in call()
|
D | list.cpp | 11 detail::new_non_null_reference list_base::call(object const& arg_) in call() argument 17 arg_.ptr())); in call()
|
D | dict.cpp | 29 detail::new_reference dict_base::call(object const& arg_) in call() argument 33 arg_.ptr()); in call()
|
/third_party/weston/tests/ |
D | weston-test-runner.h | 172 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/ |
D | injected.cpp | 34 , ( arg_("a"), arg_("b"), arg_("c")) in BOOST_PYTHON_MODULE()
|
/third_party/boost/libs/fusion/test/compile_time/ |
D | sfinae_friendly.hpp | 24 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/ |
D | benchmark.h | 64 : 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
|
D | pcre.h | 580 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/ |
D | basic_chset.hpp | 32 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/ |
D | re2.h | 799 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/ |
D | runner.hpp | 30 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/ |
D | runner.hpp | 30 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/ |
D | mutex.h | 730 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/ |
D | mutex.h | 746 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/ |
D | basic_chset.hpp | 32 basic_chset(basic_chset const& arg_); 64 basic_chset_8bit(basic_chset_8bit const& arg_);
|
D | basic_chset.ipp | 32 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/ |
D | bind.h | 24 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/ |
D | bind.h | 38 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/ |
D | pthserv.c | 167 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/ |
D | buffer_list.h | 120 : seq_no_(seq_no), arg_(arg), next_(nullptr) {} in TracedBuffer() 142 void* arg_; /* The arg to pass to timestamps_callback */ variable
|