Home
last modified time | relevance | path

Searched refs:compose (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/third_party/typescript/tests/baselines/reference/
DinferrenceInfiniteLoopWithSubtyping.symbols1 === tests/cases/compiler/graphql-compose.d.ts ===
3 >ObjMapReadOnly : Symbol(ObjMapReadOnly, Decl(graphql-compose.d.ts, 0, 0))
4 >T : Symbol(T, Decl(graphql-compose.d.ts, 0, 27))
6 >key : Symbol(key, Decl(graphql-compose.d.ts, 0, 44))
8 >T : Symbol(T, Decl(graphql-compose.d.ts, 0, 27))
11 >Thunk : Symbol(Thunk, Decl(graphql-compose.d.ts, 0, 73))
12 >T : Symbol(T, Decl(graphql-compose.d.ts, 1, 18))
13 >T : Symbol(T, Decl(graphql-compose.d.ts, 1, 18))
14 >T : Symbol(T, Decl(graphql-compose.d.ts, 1, 18))
17 >ComposeOutputTypeDefinition : Symbol(ComposeOutputTypeDefinition, Decl(graphql-compose.d.ts, 1, 37…
[all …]
DgenericTypeParameterEquivalence2.js3 function compose<A, B, C>(f: (b: B) => C, g: (a:A) => B): (a:A) => C {
53 return compose(length2, cfilter(pred));
58 return compose(length2, where);
63 function compose(f, g) {
105 return compose(length2, cfilter(pred));
109 return compose(length2, where);
DinferFromGenericFunctionReturnTypes1.js21 function compose<A, B, C, D, E>(
28 function compose<T>(...fns: ((x: T) => T)[]): (x: T) => T {
56 compose(
65 compose(
92 function compose() {
120 testSet.transform(compose(filter(function (x) { return x % 1 === 0; }), map(function (x) { return x…
121 testSet.transform(compose(filter(function (x) { return x % 1 === 0; }), map(function (x) { return x…
DgenericContextualTypes1.js6 declare function compose<A, B, C>(f: (a: A) => B, g: (b: B) => C): (a: A) => C;
29 const f10: <T>(x: T) => Box<T[]> = compose(a => list(a), b => box(b));
30 const f11: <T>(x: T) => Box<T[]> = compose(list, box);
31 const f12: <T>(x: Box<T[]>) => T = compose(a => unbox(a), b => unlist(b));
32 const f13: <T>(x: Box<T[]>) => T = compose(unbox, unlist);
59 var f10 = compose(function (a) { return list(a); }, function (b) { return box(b); });
60 var f11 = compose(list, box);
61 var f12 = compose(function (a) { return unbox(a); }, function (b) { return unlist(b); });
62 var f13 = compose(unbox, unlist);
80 declare function compose<A, B, C>(f: (a: A) => B, g: (b: B) => C): (a: A) => C;
DreturnTypeParameterWithModules.js9 export function compose() { function
30 function compose() { function
33 M2.compose = compose;
DinferrenceInfiniteLoopWithSubtyping.types1 === tests/cases/compiler/graphql-compose.d.ts ===
56 import { ObjectTypeComposer } from './graphql-compose';
64 …{ type?: import("tests/cases/compiler/graphql-compose").Thunk<import("tests/cases/compiler/graphql…
66 …{ type?: import("tests/cases/compiler/graphql-compose").Thunk<import("tests/cases/compiler/graphql…
DgenericTypeParameterEquivalence2.types2 // compose :: (b->c) -> (a->b) -> (a->c)
3 function compose<A, B, C>(f: (b: B) => C, g: (a:A) => B): (a:A) => C {
4 >compose : <A, B, C>(f: (b: B) => C, g: (a: A) => B) => (a: A) => C
137 // compose :: (b->c) -> (a->b) -> (a->c)
151 return compose(length2, cfilter(pred));
152 >compose(length2, cfilter(pred)) : (a: A[]) => number
153 >compose : <A, B, C>(f: (b: B) => C, g: (a: A) => B) => (a: A) => C
172 return compose(length2, where);
173 >compose(length2, where) : (a: A[]) => number
174 >compose : <A, B, C>(f: (b: B) => C, g: (a: A) => B) => (a: A) => C
/third_party/boost/libs/hof/test/
Dcompose.cpp71 …static_assert(noexcept(boost::hof::compose(increment(), decrement(), increment())(3)), "noexcept c… in BOOST_HOF_TEST_CASE()
77 BOOST_HOF_TEST_CHECK(boost::hof::compose(boost::hof::identity)(3) == 3); in BOOST_HOF_TEST_CASE()
78 BOOST_HOF_TEST_CHECK(boost::hof::compose(boost::hof::identity, boost::hof::identity)(3) == 3); in BOOST_HOF_TEST_CASE()
79 …BOOST_HOF_TEST_CHECK(boost::hof::compose(boost::hof::identity, boost::hof::identity, boost::hof::i… in BOOST_HOF_TEST_CASE()
81 BOOST_HOF_STATIC_TEST_CHECK(boost::hof::compose(boost::hof::identity)(3) == 3); in BOOST_HOF_TEST_CASE()
82 …BOOST_HOF_STATIC_TEST_CHECK(boost::hof::compose(boost::hof::identity, boost::hof::identity)(3) == … in BOOST_HOF_TEST_CASE()
83 …BOOST_HOF_STATIC_TEST_CHECK(boost::hof::compose(boost::hof::identity, boost::hof::identity, boost:… in BOOST_HOF_TEST_CASE()
88 int r = boost::hof::compose(increment(), decrement(), increment())(3); in BOOST_HOF_TEST_CASE()
90 BOOST_HOF_STATIC_TEST_CHECK(boost::hof::compose(increment(), decrement(), increment())(3) == 4); in BOOST_HOF_TEST_CASE()
95 int r = boost::hof::compose(increment(), negate(), decrement(), decrement())(3); in BOOST_HOF_TEST_CASE()
[all …]
/third_party/typescript_eslint/tests/integration/
Drun-all-tests.sh8 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit typescr…
11 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-sfc
14 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-jsx
17 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit recomme…
20 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit markdown
23 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit eslint-…
/third_party/boost/libs/iostreams/test/
Dcompose_test.cpp38 second.push( compose( toupper_filter(), in read_composite()
39 compose( padding_filter('a'), in read_composite()
52 second.push( compose( compose( toupper_filter(), in read_composite()
70 out2.push( compose( tolower_filter(), in write_composite()
71 compose( padding_filter('a'), in write_composite()
91 out2.push( compose( compose( tolower_filter(), in write_composite()
116 io::compose( in close_composite_device()
130 io::compose( in close_composite_device()
147 io::compose( in close_composite_device()
162 io::compose( in close_composite_device()
[all …]
/third_party/boost/boost/wave/grammars/
Dcpp_chlit_grammar.hpp120 phoenix::function<compose_character_literal> const compose; variable
176 impl::compose(self.value, self.long_lit, in definition()
181 impl::compose(self.value, self.long_lit, in definition()
186 impl::compose(self.value, self.long_lit, in definition()
191 impl::compose(self.value, self.long_lit, in definition()
196 impl::compose(self.value, self.long_lit, in definition()
201 impl::compose(self.value, self.long_lit, in definition()
206 impl::compose(self.value, self.long_lit, in definition()
211 impl::compose(self.value, self.long_lit, in definition()
216 impl::compose(self.value, self.long_lit, in definition()
[all …]
/third_party/boost/boost/parameter/
Dcompose.hpp13 inline BOOST_CONSTEXPR ::boost::parameter::aux::empty_arg_list compose() in compose() function
64 struct compose struct
73 struct compose<> struct
83 ::compose<TaggedArg0,TaggedArgs...>::type
84 compose(TaggedArg0 const& arg0, TaggedArgs const&... args) in compose() function
129 compose(BOOST_PP_ENUM_BINARY_PARAMS_Z(z, n, prefix, const& a)) \
154 struct compose;
157 struct compose<> struct
166 struct compose<BOOST_PP_ENUM_PARAMS_Z(z, n, prefix)> \
178 ::compose<BOOST_PP_ENUM_PARAMS_Z(z, n, prefix)>::type \
[all …]
/third_party/boost/libs/phoenix/test/function/
Dlazy_compose_tests.cpp30 BOOST_TEST(compose(id,id)(arg1)(1) == 1); in main()
31 BOOST_TEST(compose(id,id)(1)() == 1); in main()
32 BOOST_TEST(compose(inc,inc)(arg1)(1) == 3); in main()
33 BOOST_TEST(compose(inc,plus)(arg1,arg2)(2,3) == 6); in main()
34 BOOST_TEST(compose(plus,inc,dec)(arg1)(1) == 2); in main()
35 BOOST_TEST(compose(plus,plus,minus)(arg1,arg2)(3,1) == 6); in main()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DNormalizerData.java52 return compose.get(((long)first << 32) | second); in getPairwiseComposition()
86 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in NormalizerData() argument
89 this.compose = compose; in NormalizerData()
129 private LongHashtable compose; field in NormalizerData
DNormalizerBuilder.java57 LongHashtable compose = new LongHashtable(NormalizerData.NOT_COMPOSITE); in build() local
64 buildDecompositionTables(canonicalClass, decompose, compose, in build()
68 setMinimalDecomp(canonicalClass, decompose, compose, in build()
71 return new NormalizerData(canonicalClass, decompose, compose, in build()
117 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) in buildDecompositionTables() argument
215 compose.put(pair, value); in buildDecompositionTables()
243 compose.put(pair, value); in buildDecompositionTables()
261 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in setMinimalDecomp() argument
432 compose.put(pair, value); in setMinimalDecomp()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizerData.java49 return compose.get(((long)first << 32) | second); in getPairwiseComposition()
83 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in NormalizerData() argument
86 this.compose = compose; in NormalizerData()
126 private LongHashtable compose; field in NormalizerData
DNormalizerBuilder.java56 LongHashtable compose = new LongHashtable(NormalizerData.NOT_COMPOSITE); in build() local
63 buildDecompositionTables(canonicalClass, decompose, compose, in build()
67 setMinimalDecomp(canonicalClass, decompose, compose, in build()
70 return new NormalizerData(canonicalClass, decompose, compose, in build()
116 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) in buildDecompositionTables() argument
214 compose.put(pair, value); in buildDecompositionTables()
242 compose.put(pair, value); in buildDecompositionTables()
260 LongHashtable compose, BitSet isCompatibility, BitSet isExcluded) { in setMinimalDecomp() argument
431 compose.put(pair, value); in setMinimalDecomp()
/third_party/boost/boost/parameter/aux_/preprocessor/impl/
Dno_spec_overloads.hpp63 ::boost::parameter::compose(arg0, args...) \
83 func(::boost::parameter::compose(arg0, args...)); \
112 , ::boost::parameter::compose(arg0, args...) \
156 ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, arg)) \
172 ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, a)) \
203 , ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, arg)) \
228 ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, arg)) \
250 ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, a)) \
283 , ::boost::parameter::compose(BOOST_PP_ENUM_PARAMS_Z(z, n, arg)) \
/third_party/boost/boost/iostreams/filter/
Dtest.hpp153 iostreams::copy(compose(filter, src), iostreams::back_inserter(dest)); in test_input_filter()
197 iostreams::copy(src, compose(filter, non_blocking_sink(dest, inc))); in test_output_filter()
243 iostreams::copy(src, compose(out, non_blocking_sink(temp, inc))); in test_filter_pair()
245 compose(in, non_blocking_source(temp, inc)), in test_filter_pair()
255 iostreams::copy(src, compose(out, non_blocking_sink(temp, inc))); in test_filter_pair()
261 compose(in, non_blocking_source(temp, inc)), in test_filter_pair()
270 iostreams::copy(compose(out, src), non_blocking_sink(temp, inc)); in test_filter_pair()
273 compose(in, iostreams::back_inserter(dest)) in test_filter_pair()
282 iostreams::copy(compose(out, src), non_blocking_sink(temp, inc)); in test_filter_pair()
289 compose(in, iostreams::back_inserter(dest)) in test_filter_pair()
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/
Dcompose.hpp.txt3 compose.h
11 /// compose
17 /// The `compose` function adaptor provides function composition. It produces
19 /// function becomes the input of the second function. So, `compose(f, g)(0)`
27 /// constexpr compose_adaptor<Fs...> compose(Fs... fs);
32 /// assert(compose(f, g)(xs...) == f(g(xs...)));
68 /// int r = compose(increment(), decrement(), increment())(3);
165 BOOST_HOF_DECLARE_STATIC_VAR(compose, detail::make<compose_adaptor>);
/third_party/boost/boost/iostreams/
Dcompose.hpp308 compose( const Filter& filter, const FilterOrDevice& fod in compose() function
314 compose(const Filter& filter, std::basic_streambuf<Ch, Tr>& sb) in compose() function
319 compose(const Filter& filter, std::basic_istream<Ch, Tr>& is) in compose() function
324 compose(const Filter& filter, std::basic_ostream<Ch, Tr>& os) in compose() function
329 compose(const Filter& filter, std::basic_iostream<Ch, Tr>& io) in compose() function
336 compose( const Filter& filter, const FilterOrDevice& fod in compose() function
342 compose(const Filter& filter, std::streambuf& sb) in compose() function
347 compose(const Filter& filter, std::istream& is) in compose() function
352 compose(const Filter& filter, std::ostream& os) in compose() function
357 compose(const Filter& filter, std::iostream& io) in compose() function
[all …]
/third_party/grpc/src/ruby/end2end/
Dcall_credentials_returning_bad_metadata_doesnt_kill_background_thread_test.rb110 create_channel_creds.compose(GRPC::Core::CallCredentials.new(empty_header_proc)),
114 create_channel_creds.compose(GRPC::Core::CallCredentials.new(bad_type_proc)),
118 create_channel_creds.compose(GRPC::Core::CallCredentials.new(nil_proc)),
122 create_channel_creds.compose(GRPC::Core::CallCredentials.new(raising_proc)),
126 create_channel_creds.compose(GRPC::Core::CallCredentials.new(good_header_proc)),
Dcall_credentials_returning_bad_metadata_doesnt_kill_background_thread_driver.rb119 create_channel_creds.compose(GRPC::Core::CallCredentials.new(empty_header_proc)),
123 create_channel_creds.compose(GRPC::Core::CallCredentials.new(bad_type_proc)),
127 create_channel_creds.compose(GRPC::Core::CallCredentials.new(nil_proc)),
131 create_channel_creds.compose(GRPC::Core::CallCredentials.new(raising_proc)),
135 create_channel_creds.compose(GRPC::Core::CallCredentials.new(good_header_proc)),
/third_party/boost/libs/poly_collection/test/
Dtest_algorithm_impl.hpp383 auto acc1=compose(to_int,[&](int x){res1+=x;}); in test_for_each_n_algorithm()
384 auto acc2=compose(to_int,[&](int x){res2+=x;}); in test_for_each_n_algorithm()
419 auto insert1=compose(to_int,[&](int x){v1.push_back(x);}); in test_copy_algorithm()
420 auto insert2=compose(to_int,[&](int x){v2.push_back(x);}); in test_copy_algorithm()
491 auto insert1=compose(to_int,[&](int x){v1.push_back(x);}); in test_copy_n_algorithm()
492 auto insert2=compose(to_int,[&](int x){v2.push_back(x);}); in test_copy_n_algorithm()
571 auto insert1=compose(to_int,[&](int x){v1.push_back(x);}); in test_rotate_copy_algorithm()
572 auto insert2=compose(to_int,[&](int x){v2.push_back(x);}); in test_rotate_copy_algorithm()
614 auto insert11=compose(to_int,[&](int x){v11.push_back(x);}); in test_partition_copy_algorithm()
615 auto insert12=compose(to_int,[&](int x){v12.push_back(x);}); in test_partition_copy_algorithm()
[all …]
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DgenericContextualTypes1.ts8 declare function compose<A, B, C>(f: (a: A) => B, g: (b: B) => C): (a: A) => C;
31 const f10: <T>(x: T) => Box<T[]> = compose(a => list(a), b => box(b));
32 const f11: <T>(x: T) => Box<T[]> = compose(list, box);
33 const f12: <T>(x: Box<T[]>) => T = compose(a => unbox(a), b => unlist(b));
34 const f13: <T>(x: Box<T[]>) => T = compose(unbox, unlist);

12345678910>>...15