/third_party/typescript/tests/baselines/reference/ |
D | reverseMappedTypeContextualTypeNotCircular.types | 2 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 …]
|
D | reverseMappedTypeContextualTypeNotCircular.symbols | 2 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, {}>'", _…
|
D | reverseMappedTypeContextualTypeNotCircular.errors.txt | 1 …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, {}>; }'
|
D | typeAliasDoesntMakeModuleInstantiated.symbols | 6 type Selector = string| string[] |Function; 7 >Selector : Symbol(Selector, Decl(typeAliasDoesntMakeModuleInstantiated.ts, 0, 18)) 13 (selector: any /* Selector */): IInstance;
|
D | reverseMappedTypeContextualTypeNotCircular.js | 2 type Selector<S, R> = (state: S) => R; 5 selectors: {[K in keyof T]: Selector<S, T[K]>}, 6 ): Selector<S, T>;
|
D | typeAliasDoesntMakeModuleInstantiated.types | 4 type Selector = string| string[] |Function; 5 >Selector : string | Function | string[] 8 (selector: any /* Selector */): IInstance;
|
D | typeAliasDoesntMakeModuleInstantiated.js | 4 type Selector = string| string[] |Function;
|
/third_party/skia/modules/skottie/src/effects/ |
D | DisplacementMapEffect.cpp | 97 enum class Selector : unsigned { enum in skottie::internal::__anon8b5f217b0111::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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | EHStreamer.h | 120 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/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
D | selector.js | 10 var Selector = /*#__PURE__*/function (_Container) { class 11 _inheritsLoose(Selector, _Container); 12 function Selector(opts) { class in Selector 18 return Selector; 20 exports["default"] = Selector;
|
/third_party/typescript/tests/cases/compiler/ |
D | reverseMappedTypeContextualTypeNotCircular.ts | 1 type Selector<S, R> = (state: S) => R; alias 4 selectors: {[K in keyof T]: Selector<S, T[K]>}, 5 ): Selector<S, T>;
|
D | typeAliasDoesntMakeModuleInstantiated.ts | 3 type Selector = string| string[] |Function; alias
|
/third_party/css-what/src/ |
D | stringify.ts | 1 import { Selector, SelectorType, AttributeAction } from "./types"; 35 export function stringify(selector: Selector[][]): string { 42 token: Selector, 44 arr: Selector[]
|
D | parse.ts | 2 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[] = [];
|
D | types.ts | 1 export type Selector = alias 48 export type DataType = Selector[][] | null | string;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ShuffleDecodeConstantPool.cpp | 217 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()
|
D | X86ExpandPseudo.cpp | 86 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/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
D | TextSelectorFactory.java | 20 public Selector createSelector(Locale locale, Map<String, Object> fixedOptions) { in createSelector() 24 private static class TextSelector implements Selector {
|
D | PluralSelectorFactory.java | 42 public Selector createSelector(Locale locale, Map<String, Object> fixedOptions) { in createSelector() 47 private static class PluralSelectorImpl implements Selector {
|
D | Selector.java | 20 public interface Selector { interface
|
D | SelectorFactory.java | 31 Selector createSelector(Locale locale, Map<String, Object> fixedOptions); in createSelector()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetPassConfig.cpp | 766 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/ |
D | X86ShuffleDecode.cpp | 534 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCVSXSwapRemoval.cpp | 867 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/curl/tests/data/ |
D | test1200 | 14 0Selector /bar bar.foo.invalid 70
|