Home
last modified time | relevance | path

Searched refs:infix (Results 1 – 25 of 62) sorted by relevance

123

/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dspace-infix-ops.md1 # This rule is aimed at ensuring there are spaces around infix operators. (`space-infix-ops`)
3 This rule extends the base [`eslint/space-infix-ops`](https://eslint.org/docs/rules/space-infix-ops…
17 "space-infix-ops": "off",
18 "@typescript-eslint/space-infix-ops": ["error", { "int32Hint": false }]
24 See [`eslint/space-infix-ops` options](https://eslint.org/docs/rules/space-infix-ops#options).
26 …from ESLint core](https://github.com/eslint/eslint/blob/master/docs/rules/space-infix-ops.md)</sup>
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/
Dinfix.hpp.txt3 infix.h
11 /// infix
17 /// The `infix` function adaptor allows the function to be used as an infix
25 /// constexpr infix_adaptor<F> infix(F f);
30 /// assert(x <infix(f)> y == f(x, y));
46 /// assert((x + y <infix(f)> z) == ((x + y) <infix(f)> z));
47 /// assert((x * y <infix(f)> z) == ((x * y) <infix(f)> z));
51 /// assert((x | y <infix(f)> z) == (x | (y <infix(f)> z)));
52 /// assert((x == y <infix(f)> z) == (x == (y <infix(f)> z)));
54 /// Also, infix operators have left-to-right associativity:
[all …]
/third_party/boost/libs/hof/test/
Dinfix.cpp42 BOOST_HOF_STATIC_FUNCTION(sum1) = boost::hof::infix(sum_f());
53 BOOST_HOF_STATIC_LAMBDA_FUNCTION(sum2) = boost::hof::infix([](int x, int y) { return x + y; }); in __anon4a41935b0102()
62 BOOST_HOF_STATIC_FUNCTION(sum3) = boost::hof::infix(boost::hof::_ + boost::hof::_);
74 BOOST_HOF_STATIC_LAMBDA_FUNCTION(sum4) = boost::hof::infix(boost::hof::infix([](int x, int y) { ret… in __anon4a41935b0202()
83 BOOST_HOF_STATIC_FUNCTION(sum5) = boost::hof::infix(boost::hof::infix(boost::hof::_ + boost::hof::_…
111 auto f = boost::hof::infix([](int, int) { return foo{}; }); in BOOST_HOF_TEST_CASE()
112 auto g = boost::hof::infix([](foo, foo) { return std::string("hello"); }); in BOOST_HOF_TEST_CASE()
Dlambda.cpp90 BOOST_HOF_STATIC_LAMBDA_FUNCTION(sum_infix) = boost::hof::infix([](int x, int y)
Dfunction.cpp95 BOOST_HOF_STATIC_FUNCTION(sum_infix) = boost::hof::infix(sum_f());
/third_party/mindspore/mindspore/lite/test/st/scripts/
Dbase_functions.sh129 …extra_info benchmark_mode infix mode model_file input_files output_file data_path threads acc_limi…
163 infix=""
165 infix="_${cfg_file##*_}"
166 infix=${infix%.*}
169 infix="_train"
177 model_file=$2"/${model_name}${infix}.ms"
/third_party/boost/libs/icl/doc/
Dimplementation.qbk171 [section Inplace and infix operators]
182 the *icl* provides corresponding ['*infix*] operators.
188 From this implementation of the infix `operator o`
196 /infix/ `operator o` requires ['*one extra copy*]
199 Use infix operators only, if
205 [h5 Time Complexity of infix `operators o`]
207 The time complexity of all infix operators of the *icl*
209 So all infix `operators o` are at least
212 infix operators can be determined
216 [endsect][/ Inplace and infix operators]
/third_party/boost/libs/hana/include/boost/hana/fwd/
Dcontains.hpp54 constexpr auto contains = hana::infix(contains_t{});
70 constexpr auto in = hana::infix(hana::flip(hana::contains));
Dis_subset.hpp75 constexpr auto is_subset = hana::infix(is_subset_t{});
/third_party/boost/boost/hana/fwd/
Dcontains.hpp54 constexpr auto contains = hana::infix(contains_t{});
70 constexpr auto in = hana::infix(hana::flip(hana::contains));
Dis_subset.hpp75 constexpr auto is_subset = hana::infix(is_subset_t{});
/third_party/boost/libs/hana/include/boost/hana/functional/
Don.hpp54 constexpr auto on = infix([](auto&& f, auto&& g) { in __anon4ef2c5dd0102()
79 constexpr auto on = infix(detail::create<on_t>{});
Dinfix.hpp79 constexpr auto infix = [](auto f) { in __anonccc7fdde0102() variable
181 constexpr infix_detail::make_infix<false, false> infix{};
/third_party/boost/boost/hana/functional/
Don.hpp54 constexpr auto on = infix([](auto&& f, auto&& g) { in __anon78f21f0a0102()
79 constexpr auto on = infix(detail::create<on_t>{});
Dinfix.hpp79 constexpr auto infix = [](auto f) { in __anon5b4d63eb0102() variable
181 constexpr infix_detail::make_infix<false, false> infix{};
/third_party/boost/libs/hof/example/
Din.cpp46 BOOST_HOF_STATIC_LAMBDA_FUNCTION(in) = infix(
54 BOOST_HOF_STATIC_LAMBDA_FUNCTION(not_in) = infix(compose(not _, in));
/third_party/boost/libs/hana/example/functional/
Dinfix.cpp13 BOOST_HANA_CONSTEXPR_LAMBDA auto divmod = hana::infix([](auto x, auto y) { in __anon6f863ce40102()
/third_party/node/deps/npm/node_modules/fs-vacuum/
D.eslintrc15 "space-infix-ops" : 0,
/third_party/boost/libs/hof/doc/html/_sources/doc/src/
Dadaptors.rst.txt21 ../../include/boost/hof/infix
/third_party/boost/libs/hof/doc/src/
Dadaptors.rst21 ../../include/boost/hof/infix
/third_party/boost/libs/hana/test/_include/laws/
Dbase.hpp75 constexpr auto implies = hana::infix(implies_t{});
83 constexpr auto iff = hana::infix(iff_t{});
/third_party/gn/src/gn/
Dparser.cc448 InfixFunc infix = expressions_[next_token.type()].infix; in ParseExpression() local
449 if (infix == nullptr) { in ParseExpression()
454 left = (this->*infix)(std::move(left), next_token); in ParseExpression()
/third_party/jsframework/mock-generate/
D.eslintrc86 "space-infix-ops": 2,
/third_party/jsframework/
D.eslintrc86 "space-infix-ops": 2,
/third_party/boost/boost/hof/
Dinfix.hpp196 BOOST_HOF_DECLARE_STATIC_VAR(infix, detail::make<infix_adaptor>);

123