Home
last modified time | relevance | path

Searched refs:get_ (Results 1 – 25 of 1609) sorted by relevance

12345678910>>...65

/dports/cad/cascade-compiler/cascade-f4f7ae8bd1dd379790c0e58c286df90b8d1cdcde/src/cascade/common/
H A Dcachestream.h59 std::vector<char_type> get_;
92 inline cachebuf::cachebuf(std::streambuf* backend, size_t n) : get_(n), put_(n) { in cachebuf()
94 setg(get_.data(), get_.data()+get_.size(), get_.data()+get_.size()); in cachebuf()
146 const auto n = backend_->sgetn(get_.data(), get_.size()); in underflow()
151 setg(get_.data(), get_.data(), get_.data()+n); in underflow()
152 return traits_type::to_int_type(get_[0]); in underflow()
157 const auto n = backend_->sgetn(get_.data(), get_.size()); in uflow()
162 setg(get_.data(), get_.data()+1, get_.data()+n); in uflow()
163 return traits_type::to_int_type(get_[0]); in uflow()
229 setg(get_.data(), get_.data()+get_.size(), get_.data()+get_.size()); in flush_get()
H A Dfdstream.h62 std::vector<char_type> get_; variable
122 setg(get_.data(), get_.data(), get_.data()); in fdbuf()
175 if (n > get_.size()) { in underflow()
176 get_.resize(n); in underflow()
178 if (recv((char_type*)get_.data(), n) == -1) { in underflow()
181 setg(get_.data(), get_.data(), get_.data()+n); in underflow()
182 return traits_type::to_int_type(get_[0]); in underflow()
190 if (n > get_.size()) { in uflow()
191 get_.resize(n); in uflow()
196 setg(get_.data(), get_.data()+1, get_.data()+n); in uflow()
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Dnetbox.py163 def get_(app, endpoint, id=None, **kwargs): function
213 nb_man = get_("dcim", "manufacturers", name=name)
242 nb_type = get_("dcim", "device-types", model=model)
275 nb_role = get_("dcim", "device-roles", name=role)
329 nb_site = get_("dcim", "sites", name=site)
373 nb_site = get_("dcim", "sites", name=site)
730 lag_interface = get_(
756 nb_interface = get_(
943 nb_interface = get_(
948 nb_addr = get_(
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/generate/templates/py3/types/
H A Dcython_union_getter.mustache23 }}if not deref(self._cpp_obj).get_{{field:py_name}}():
36 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
39 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
42 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
45 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
48 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
51 }}self.value = deref(self._cpp_obj).get_{{field:py_name}}(){{!
59 }}deref(self._cpp_obj).get_{{field:py_name}}().clone()){{!
68 }}<int>deref(self._cpp_obj).get_{{field:py_name}}()){{!
73 }}deref(self._cpp_obj).get_{{field:py_name}}())){{!
[all …]
/dports/graphics/openvkl/openvkl-1.1.0/openvkl/common/
H A DData.ih184 inline varying retT get_##T##_compact(const uniform Data1D *varying data, \
191 inline varying retT get_##T##_strided(const uniform Data1D *varying data, \
199 inline varying retT get_##T(const uniform Data1D *varying data, \
202 return data->compact ? get_##T##_compact(data, index32) \
203 : get_##T##_strided(data, index32); \
206 inline varying retT get_##T##_compact(const uniform Data1D *varying data, \
213 inline varying retT get_##T##_strided(const uniform Data1D *varying data, \
221 inline varying retT get_##T(const uniform Data1D *varying data, \
224 return data->compact ? get_##T##_compact(data, index64) \
225 : get_##T##_strided(data, index64); \
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/generate/templates/cpp2/module_types_h/
H A Dgetters_setters.mustache22 const <%type:cpp_type%>* get_<%field:cpp_name%>() const& {
26 <%type:cpp_type%>* get_<%field:cpp_name%>() & {
29 <%type:cpp_type%>* get_<%field:cpp_name%>() && = delete;
33 <%type:cpp_type%> get_<%field:cpp_name%>() const {
46 const <%type:cpp_type%>* get_<%field:cpp_name%>() const& {
50 <%type:cpp_type%>* get_<%field:cpp_name%>() & {
53 <%type:cpp_type%>* get_<%field:cpp_name%>() && = delete;
60 <%type:cpp_type%> get_<%field:cpp_name%>() && {
76 <%type:cpp_type%>* get_<%field:cpp_name%>() &;
77 <%type:cpp_type%>* get_<%field:cpp_name%>() && = delete;
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gdc.test/compilable/
H A Dtest21543.d24 inout(T) get_() inout in Nullable()
29 alias get_ this; in Nullable()
78 inout(Nullable3) get_() inout in get_() function
83 alias get_ this;
100 inout(C) get_() inout in get_() function
105 alias get_ this;
/dports/devel/hyperscan/boost_1_75_0/boost/detail/
H A Dnamed_template_params.hpp140 struct get_##TYPE##_from_named { \
156 struct get_##TYPE##_dispatch { }; \
157 template <> struct get_##TYPE##_dispatch<1> { \
158 typedef get_##TYPE##_from_named type; \
160 template <> struct get_##TYPE##_dispatch<0> { \
164 class get_##TYPE { \
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/detail/
H A Dnamed_template_params.hpp140 struct get_##TYPE##_from_named { \
156 struct get_##TYPE##_dispatch { }; \
157 template <> struct get_##TYPE##_dispatch<1> { \
158 typedef get_##TYPE##_from_named type; \
160 template <> struct get_##TYPE##_dispatch<0> { \
164 class get_##TYPE { \
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/devel/R-cran-BH/BH/inst/include/boost/detail/
H A Dnamed_template_params.hpp140 struct get_##TYPE##_from_named { \
156 struct get_##TYPE##_dispatch { }; \
157 template <> struct get_##TYPE##_dispatch<1> { \
158 typedef get_##TYPE##_from_named type; \
160 template <> struct get_##TYPE##_dispatch<0> { \
164 class get_##TYPE { \
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/detail/
H A Dnamed_template_params.hpp140 struct get_##TYPE##_from_named { \
156 struct get_##TYPE##_dispatch { }; \
157 template <> struct get_##TYPE##_dispatch<1> { \
158 typedef get_##TYPE##_from_named type; \
160 template <> struct get_##TYPE##_dispatch<0> { \
164 class get_##TYPE { \
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/xtrabackup/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/percona57-server/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/percona57-client/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/devel/boost-libs/boost_1_72_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/devel/boost-python-libs/boost_1_72_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/devel/wxformbuilder/source/src/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/textproc/clucene/clucene-core-2.3.3.4/src/ext/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/dports/databases/mysql57-client/mysql-5.7.36/boost/boost_1_59_0/boost/detail/
H A Dnamed_template_params.hpp139 struct get_##TYPE##_from_named { \
155 struct get_##TYPE##_dispatch { }; \
156 template <> struct get_##TYPE##_dispatch<1> { \
157 typedef get_##TYPE##_from_named type; \
159 template <> struct get_##TYPE##_dispatch<0> { \
163 class get_##TYPE { \
165 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \

12345678910>>...65