Home
last modified time | relevance | path

Searched refs:AB (Results 1 - 25 of 96) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
H A DmappedTypeErrors2.js4 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 DmixinPrivateAndProtected.js26 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 DcrashInGetTextOfComputedPropertyName.js5 export type AB = A | B
10 const items: { [id: string]: AB } = {}
16 items: {[s: string]: AB}
H A DpartiallyDiscriminantedUnions.js19 type AB = A1 | A2 | B;
21 const ab: AB = <AB>{};
H A DunionPropertyExistence.js19 type AB = A | B;
20 type ABC = C | AB;
22 var ab: AB;
H A DunionTypeEquivalence.js12 // 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 DunionAndIntersectionInference3.js82 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 DexcessPropertyCheckWithUnions.js62 type AB = { kind: "A", n: AN } | { kind: "B", n: BN }
63 const abab: AB = {
70 const abac: AB = {
H A DgenericTypeAliases.js43 interface AB<A, B> {
48 type Pair<T> = AB<T, T>;
H A DcontrolFlowGenericTypes.js63 export function bounceAndTakeIfA<AB extends 'A' | 'B'>(value: AB): AB {
H A DstringLiteralTypesWithTemplateStrings02.js2 let abc: "AB\r\nC" = `AB
7 var abc = "AB\nC";
12 declare let abc: "AB\r\nC";
H A DdependentDestructuredVariables.js152 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 DunknownControlFlow.js425 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 DgenericDefaults.js6 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 DDemandedBits.cpp88 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 DScalarEvolutionAliasAnalysis.cpp68 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 Dissue-1435.hpp4 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 Dissue-1435.rs15 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 DX86WinCOFFStreamer.cpp23 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 DCodeEmitter.h58 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 DARMWinCOFFStreamer.cpp20 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 Drescaler_msa.c181 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 Dmd5-sparcv9.pl39 ($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 Dmd5-sparcv9.pl39 ($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 DAArch64WinCOFFStreamer.cpp24 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()

Completed in 12 milliseconds

1234