Home
last modified time | relevance | path

Searched refs:Selector (Results 1 – 25 of 71) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DreverseMappedTypeContextualTypeNotCircular.types2 type Selector<S, R> = (state: S) => R;
3 >Selector : Selector<S, R>
7 >createStructuredSelector : <S, T>(selectors: { [K in keyof T]: Selector<S, T[K]>; }) => Selector<S…
9 selectors: {[K in keyof T]: Selector<S, T[K]>},
10 >selectors : { [K in keyof T]: Selector<S, T[K]>; }
12 ): Selector<S, T>;
21 >mapStateToProps : Selector<unknown, { editable: {}; }>
22 …rops: any) => {}' is not assignable to type 'Selector<unknown, {}>'", _not_ a circularity error}) …
23 >createStructuredSelector : <S, T>(selectors: { [K in keyof T]: Selector<S, T[K]>; }) => Selector<S…
24 …xpect "Type '(state: any, props: any) => {}' is not assignable to type 'Selector<unknown, {}>'", _…
[all …]
DreverseMappedTypeContextualTypeNotCircular.symbols2 type Selector<S, R> = (state: S) => R;
3 >Selector : Symbol(Selector, Decl(reverseMappedTypeContextualTypeNotCircular.ts, 0, 0))
15 selectors: {[K in keyof T]: Selector<S, T[K]>},
19 >Selector : Symbol(Selector, Decl(reverseMappedTypeContextualTypeNotCircular.ts, 0, 0))
24 ): Selector<S, T>;
25 >Selector : Symbol(Selector, Decl(reverseMappedTypeContextualTypeNotCircular.ts, 0, 0))
36 …xpect "Type '(state: any, props: any) => {}' is not assignable to type 'Selector<unknown, {}>'", _…
DreverseMappedTypeContextualTypeNotCircular.errors.txt1 …or TS2322: Type '(state: any, props: any) => {}' is not assignable to type 'Selector<unknown, {}>'.
5 type Selector<S, R> = (state: S) => R;
8 selectors: {[K in keyof T]: Selector<S, T[K]>},
9 ): Selector<S, T>;
14 …xpect "Type '(state: any, props: any) => {}' is not assignable to type 'Selector<unknown, {}>'", _…
16 !!! error TS2322: Type '(state: any, props: any) => {}' is not assignable to type 'Selector<unknown…
17 …omes from property 'editable' which is declared here on type '{ editable: Selector<unknown, {}>; }'
DtypeAliasDoesntMakeModuleInstantiated.types4 type Selector = string| string[] |Function;
5 >Selector : Selector
8 (selector: any /* Selector */): IInstance;
DtypeAliasDoesntMakeModuleInstantiated.symbols6 type Selector = string| string[] |Function;
7 >Selector : Symbol(Selector, Decl(typeAliasDoesntMakeModuleInstantiated.ts, 0, 18))
13 (selector: any /* Selector */): IInstance;
DreverseMappedTypeContextualTypeNotCircular.js2 type Selector<S, R> = (state: S) => R;
5 selectors: {[K in keyof T]: Selector<S, T[K]>},
6 ): Selector<S, T>;
DtypeAliasDoesntMakeModuleInstantiated.js4 type Selector = string| string[] |Function;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.h120 static bool isFilterEHSelector(int Selector) { return Selector < 0; } in isFilterEHSelector() argument
121 static bool isCleanupEHSelector(int Selector) { return Selector == 0; } in isCleanupEHSelector() argument
122 static bool isCatchEHSelector(int Selector) { return Selector > 0; } in isCatchEHSelector() argument
/third_party/skia/modules/skottie/src/effects/
DDisplacementMapEffect.cpp97 enum class Selector : unsigned { enum in skottie::internal::__anon2bcf4cae0111::DisplacementNode
116 SG_ATTRIBUTE(XSelector , Selector , fXSelector )
117 SG_ATTRIBUTE(YSelector , Selector , fYSelector )
136 static SelectorCoeffs Coeffs(Selector sel) { in Coeffs()
160 static bool IsConst(Selector s) { in IsConst()
161 return s == Selector::kFull in IsConst()
162 || s == Selector::kHalf in IsConst()
163 || s == Selector::kOff; in IsConst()
305 Selector fXSelector = Selector::kR,
306 fYSelector = Selector::kR;
[all …]
/third_party/boost/boost/detail/
Dnamed_template_params.hpp80 typedef typename choose_arg_or_default<typename is_default<Arg>::type>::type Selector; typedef in boost::detail::resolve_default
85 typedef typename choose_arg_or_default<is_def>::type Selector;
88 typedef typename Selector
124 typedef typename choose_default_dispatch<is_named>::type Selector; typedef
125 typedef typename Selector::template select<PreviousArg>::type type;
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
168 typedef typename Selector::template select<Base, X, Traits>::type type; \
/third_party/grpc/third_party/upb/upb/
Dsink.h302 bool PutInt32(HandlersPtr::Selector s, int32_t val) { in PutInt32()
306 bool PutInt64(HandlersPtr::Selector s, int64_t val) { in PutInt64()
310 bool PutUInt32(HandlersPtr::Selector s, uint32_t val) { in PutUInt32()
314 bool PutUInt64(HandlersPtr::Selector s, uint64_t val) { in PutUInt64()
318 bool PutFloat(HandlersPtr::Selector s, float val) { in PutFloat()
322 bool PutDouble(HandlersPtr::Selector s, double val) { in PutDouble()
326 bool PutBool(HandlersPtr::Selector s, bool val) { in PutBool()
335 bool StartString(HandlersPtr::Selector s, size_t size_hint, Sink* sub) { in StartString()
342 size_t PutStringBuffer(HandlersPtr::Selector s, const char *buf, size_t len, in PutStringBuffer()
347 bool EndString(HandlersPtr::Selector s) { in EndString()
[all …]
/third_party/typescript/tests/cases/compiler/
DreverseMappedTypeContextualTypeNotCircular.ts1 type Selector<S, R> = (state: S) => R; alias
4 selectors: {[K in keyof T]: Selector<S, T[K]>},
5 ): Selector<S, T>;
DtypeAliasDoesntMakeModuleInstantiated.ts3 type Selector = string| string[] |Function; alias
/third_party/boost/boost/graph/
Dlabeled_graph.hpp38 template < typename Selector >
39 struct is_default : mpl::bool_< is_same< Selector, defaultS >::value >
62 template < typename Selector, typename Label, typename Vertex >
97 template < typename Selector, typename Label, typename Vertex >
101 typename generate_label_map< Selector, Label, Vertex >::type type;
109 template < typename Selector, typename Label, typename Vertex >
112 typedef typename mpl::eval_if< is_default< Selector >,
114 choose_custom_map< Selector, Label, Vertex > >::type type;
273 template < typename Graph, typename Label, typename Selector >
280 typedef typename graph_detail::choose_map< Selector, Label,
[all …]
/third_party/css-what/src/
Dstringify.ts1 import { Selector, SelectorType, AttributeAction } from "./types";
35 export function stringify(selector: Selector[][]): string {
42 token: Selector,
44 arr: Selector[]
Dparse.ts2 Selector,
77 export function isTraversal(selector: Selector): selector is Traversal {
134 export function parse(selector: string): Selector[][] {
135 const subselects: Selector[][] = [];
147 subselects: Selector[][],
151 let tokens: Selector[] = [];
Dtypes.ts1 export type Selector = alias
48 export type DataType = Selector[][] | null | string;
/third_party/boost/libs/container/test/
Dpropagate_allocator_test.hpp23 template<class Selector>
26 template<class T, class Allocator, class Selector>
28 : public alloc_propagate_base<Selector>::template apply<T, Allocator>::type
34 <Selector>::template apply<T, Allocator>::type Base;
109 template<class Selector>
114 typedef alloc_propagate_wrapper<char, AlwaysPropagate, Selector> PropagateCont; in test_propagate_allocator()
217 typedef alloc_propagate_wrapper<char, NeverPropagate, Selector> NoPropagateCont; in test_propagate_allocator()
291 typedef alloc_propagate_wrapper<char, NeverPropagate, Selector> NoPropagateCont; in test_propagate_allocator()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ShuffleDecodeConstantPool.cpp217 uint64_t Selector = RawMask[i]; in DecodeVPERMIL2PMask() local
218 unsigned MatchBit = (Selector >> 3) & 0x1; in DecodeVPERMIL2PMask()
233 Index += (Selector >> 1) & 0x1; in DecodeVPERMIL2PMask()
235 Index += Selector & 0x3; in DecodeVPERMIL2PMask()
237 int Src = (Selector >> 2) & 0x1; in DecodeVPERMIL2PMask()
DX86ExpandPseudo.cpp86 MachineOperand Selector = JTInst->getOperand(0); in INITIALIZE_PASS() local
90 if (Selector.isReg()) in INITIALIZE_PASS()
91 MBB->addLiveIn(Selector.getReg()); in INITIALIZE_PASS()
100 .add(Selector) in INITIALIZE_PASS()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetPassConfig.cpp766 SelectorType Selector; in addCoreISelPasses() local
769 Selector = SelectorType::FastISel; in addCoreISelPasses()
773 Selector = SelectorType::GlobalISel; in addCoreISelPasses()
775 Selector = SelectorType::FastISel; in addCoreISelPasses()
777 Selector = SelectorType::SelectionDAG; in addCoreISelPasses()
780 if (Selector == SelectorType::FastISel) { in addCoreISelPasses()
783 } else if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
789 if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Utils/
DX86ShuffleDecode.cpp534 uint64_t Selector = RawMask[i]; in DecodeVPERMIL2PMask() local
535 unsigned MatchBit = (Selector >> 3) & 0x1; in DecodeVPERMIL2PMask()
550 Index += (Selector >> 1) & 0x1; in DecodeVPERMIL2PMask()
552 Index += Selector & 0x3; in DecodeVPERMIL2PMask()
554 int Src = (Selector >> 2) & 0x1; in DecodeVPERMIL2PMask()
/third_party/boost/boost/geometry/algorithms/detail/overlay/
Ddo_reverse.hpp24 template <order_selector Selector, bool Reverse = false>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCVSXSwapRemoval.cpp867 unsigned Selector = MI->getOperand(3).getImm(); in handleSpecialSwappables() local
868 if (Selector == 0 || Selector == 3) in handleSpecialSwappables()
869 Selector = 3 - Selector; in handleSpecialSwappables()
870 MI->getOperand(3).setImm(Selector); in handleSpecialSwappables()
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dnaming-convention.test.ts6 Selector,
101 options: Selector,
205 options: Selector,

123