/third_party/typescript/tests/baselines/reference/ |
H A D | mappedTypeErrors2.js | 4 type AB = { 9 type T1<K extends keyof AB> = { [key in AB[K]]: true }; 12 type R = AB[keyof AB]; // "a" 16 type T5<S extends 'a'|'b'|'extra'> = {[key in AB[S]]: true}[S]; // Error 18 type T6<S extends 'a'|'b', L extends 'a'|'b'> = {[key in AB[S]]: true}[L]; // Error 20 type T7<S extends 'a'|'b', L extends 'a'> = {[key in AB[S]]: true}[L]; 28 type AB = {
32 type T1<K extends keyof AB> [all...] |
H A D | mixinPrivateAndProtected.js | 26 AB = mixB(A), 38 ABC = mixC(AB); 42 ab = new AB(), 140 var AB = mixB(A), AB2 = mixB2(A);
153 var AB2C = mixC(AB2), ABC = mixC(AB);
154 var a = new A(), ab = new AB(), abc = new ABC(), ab2c = new AB2C();
|
H A D | crashInGetTextOfComputedPropertyName.js | 5 export type AB = A | B 10 const items: { [id: string]: AB } = {} 16 items: {[s: string]: AB}
|
H A D | partiallyDiscriminantedUnions.js | 19 type AB = A1 | A2 | B; 21 const ab: AB = <AB>{};
|
H A D | unionPropertyExistence.js | 19 type AB = A | B; 20 type ABC = C | AB; 22 var ab: AB;
|
H A D | unionTypeEquivalence.js | 12 // AB | C is equivalent to A | BC, where AB is A | B and BC is B | C. 16 var AB : string | number; variable 18 var z1: typeof AB | boolean; 57 // AB | C is equivalent to A | BC, where AB is A | B and BC is B | C.
61 var AB;
variable
|
H A D | unionAndIntersectionInference3.js | 82 type AB<T> = { a: T } | { b: T }; 84 // T & AB<U> normalizes to T & { a: U } | T & { b: U } below 85 declare function foo<T, U>(obj: T & AB<U>): [T, U]; 86 declare let ab: AB<string>; 88 let z = foo(ab); // [AB<string>, string] 107 let z = foo(ab); // [AB<string>, string]
|
H A D | excessPropertyCheckWithUnions.js | 62 type AB = { kind: "A", n: AN } | { kind: "B", n: BN } 63 const abab: AB = { 70 const abac: AB = {
|
H A D | genericTypeAliases.js | 43 interface AB<A, B> { 48 type Pair<T> = AB<T, T>;
|
H A D | controlFlowGenericTypes.js | 63 export function bounceAndTakeIfA<AB extends 'A' | 'B'>(value: AB): AB {
|
H A D | stringLiteralTypesWithTemplateStrings02.js | 2 let abc: "AB\r\nC" = `AB 7 var abc = "AB\nC";
12 declare let abc: "AB\r\nC";
|
H A D | dependentDestructuredVariables.js | 152 type AB<T> = A<T> | B<T>; 158 function unrefined1<T>(ab: AB<T>): void { 737 type AB<T> = A<T> | B<T>;
740 declare function unrefined1<T>(ab: AB<T>): void;
|
H A D | unknownControlFlow.js | 425 type AB = "A" | "B"; 427 function x<T_AB extends AB>(x: T_AB & undefined, y: any) { 881 type AB = "A" | "B";
882 declare function x<T_AB extends AB>(x: T_AB & undefined, y: any): void;
|
H A D | genericDefaults.js | 6 interface AB { a: number; b: number; } 13 declare const ab: AB; 177 f09<A, AB>(); 178 f09<A, AB>(a); 179 f09<A, AB>(a, ab); 198 f10<A, AB>(); 199 f10<A, AB>(a); 200 f10<A, AB>(a, ab); 879 interface AB {
891 declare const ab: AB;
[all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DemandedBits.cpp | 88 const APInt &AOut, APInt &AB, KnownBits &Known, KnownBits &Known2, in determineLiveOperandBits() 90 unsigned BitWidth = AB.getBitWidth(); in determineLiveOperandBits() 124 AB = AOut.byteSwap(); in determineLiveOperandBits() 129 AB = AOut.reverseBits(); in determineLiveOperandBits() 137 AB = APInt::getHighBitsSet(BitWidth, in determineLiveOperandBits() 147 AB = APInt::getLowBitsSet(BitWidth, in determineLiveOperandBits() 158 AB = BitWidth - 1; in determineLiveOperandBits() 167 AB = AOut.lshr(ShiftAmt); in determineLiveOperandBits() 169 AB = AOut.shl(BitWidth - ShiftAmt); in determineLiveOperandBits() 181 AB in determineLiveOperandBits() 86 determineLiveOperandBits( const Instruction *UserI, const Value *Val, unsigned OperandNo, const APInt &AOut, APInt &AB, KnownBits &Known, KnownBits &Known2, bool &KnownBitsComputed) determineLiveOperandBits() argument 387 APInt AB = APInt::getAllOnesValue(BitWidth); performAnalysis() local [all...] |
H A D | ScalarEvolutionAliasAnalysis.cpp | 68 const SCEV *AB = SE.getMinusSCEV(AS, BS); in alias() local 73 if (BSizeInt.ule(SE.getUnsignedRange(AB).getUnsignedMin()) && in alias() 74 (-ASizeInt).uge(SE.getUnsignedRange(AB).getUnsignedMax())) in alias()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | issue-1435.hpp | 4 enum class AB { A, B }; class 6 using AB = ns::AB; 7 static const AB kA = AB::A;
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | issue-1435.rs | 15 pub const AB_A: root::ns::AB = 0; 16 pub const AB_B: root::ns::AB = 1; 17 pub type AB = ::std::os::raw::c_int; types 19 pub use self::super::root::ns::AB; 22 pub static kA: root::AB;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86WinCOFFStreamer.cpp | 23 X86WinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> AB, in X86WinCOFFStreamer() argument 26 : MCWinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)) {} in X86WinCOFFStreamer() 64 std::unique_ptr<MCAsmBackend> &&AB, in createX86WinCOFFStreamer() 70 new X86WinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)); in createX86WinCOFFStreamer() 63 createX86WinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> &&AB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&CE, bool RelaxAll, bool IncrementalLinkerCompatible) createX86WinCOFFStreamer() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
H A D | CodeEmitter.h | 58 CodeEmitter(const MCSubtargetInfo &ST, const MCAsmBackend &AB, in CodeEmitter() argument 60 : STI(ST), MAB(AB), MCE(CE), VecOS(Code), Sequence(S), in CodeEmitter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMWinCOFFStreamer.cpp | 20 ARMWinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> AB, in ARMWinCOFFStreamer() argument 23 : MCWinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)) {} in ARMWinCOFFStreamer()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | rescaler_msa.c | 181 const v4i32 AB = __msa_ilvr_w(A1, B1); in ExportRowExpand_1() local 190 CALC_MULT_FIX2_16(frow0, frow1, irow0, irow1, AB, scale, shift, t0, t1); in ExportRowExpand_1() 191 CALC_MULT_FIX2_16(frow2, frow3, irow2, irow3, AB, scale, shift, t2, t3); in ExportRowExpand_1() 207 CALC_MULT_FIX2_4(frow0, irow0, AB, scale, shift, val0_m); in ExportRowExpand_1() 208 CALC_MULT_FIX2_4(frow1, irow1, AB, scale, shift, val1_m); in ExportRowExpand_1() 209 CALC_MULT_FIX2_4(frow2, irow2, AB, scale, shift, val2_m); in ExportRowExpand_1() 220 CALC_MULT_FIX2_4(frow0, irow0, AB, scale, shift, val0_m); in ExportRowExpand_1() 221 CALC_MULT_FIX2_4(frow1, irow1, AB, scale, shift, val1_m); in ExportRowExpand_1() 231 CALC_MULT_FIX2_4(frow0, irow0, AB, scale, shift, val0_m); in ExportRowExpand_1()
|
/third_party/node/deps/openssl/openssl/crypto/md5/asm/ |
H A D | md5-sparcv9.pl | 39 ($AB,$CD)=("%g4","%g5"); 332 sllx $A,32,$AB ! pack A,B 336 or $B,$AB,$AB 357 srlx $AB,32,$t1 ! unpack A,B,C,D and accumulate 362 add $AB,$B,$B
|
/third_party/openssl/crypto/md5/asm/ |
H A D | md5-sparcv9.pl | 39 ($AB,$CD)=("%g4","%g5"); 332 sllx $A,32,$AB ! pack A,B 336 or $B,$AB,$AB 357 srlx $AB,32,$t1 ! unpack A,B,C,D and accumulate 362 add $AB,$B,$B
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64WinCOFFStreamer.cpp | 24 AArch64WinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> AB, in AArch64WinCOFFStreamer() argument 27 : MCWinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)) {} in AArch64WinCOFFStreamer()
|