Home
last modified time | relevance | path

Searched refs:AB (Results 1 – 25 of 617) sorted by relevance

12345678910>>...25

/third_party/libphonenumber/resources/carrier/en/
D46.txt16 467010|SPINBOX AB
18 467012|SPINBOX AB
19 46701332|EU Tel AB
20 46701334|EU Tel AB
21 46701335|EU Tel AB
22 46701336|EU Tel AB
23 46701338|EU Tel AB
24 46701339|EU Tel AB
25 46701341|EU Tel AB
26 46701342|EU Tel AB
[all …]
/third_party/typescript/tests/baselines/reference/
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 declare type AB = {
32 declare type T1<K extends keyof AB> = {
33 [key in AB[K]]: true;
36 declare type R = AB[keyof AB];
[all …]
DmappedTypeErrors2.symbols4 type AB = {
5 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
15 type T1<K extends keyof AB> = { [key in AB[K]]: true };
18 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
20 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
30 type R = AB[keyof AB]; // "a"
32 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
33 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
46 type T5<S extends 'a'|'b'|'extra'> = {[key in AB[S]]: true}[S]; // Error
50 >AB : Symbol(AB, Decl(mappedTypeErrors2.ts, 0, 0))
[all …]
DcrashInGetTextOfComputedPropertyName.types9 export type AB = A | B
10 >AB : AB
17 const items: { [id: string]: AB } = {}
18 >items : { [id: string]: AB; }
24 >itemOk1 : AB
25 >items : { [id: string]: AB; }
29 >itemOk1 : AB
33 items: {[s: string]: AB}
34 >items : { [s: string]: AB; }
44 >itemOk2 : AB
[all …]
DmappedTypeErrors2.errors.txt3 …Errors2.ts(15,38): error TS2536: Type 'S' cannot be used to index type '{ [key in AB[S]]: true; }'.
4 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(15,47): error TS2322: Type 'AB[S]' is not…
5 Type 'AB[S]' is not assignable to type 'symbol'.
6 …types/mapped/mappedTypeErrors2.ts(15,47): error TS2536: Type 'S' cannot be used to index type 'AB'.
7 …Errors2.ts(17,49): error TS2536: Type 'L' cannot be used to index type '{ [key in AB[S]]: true; }'.
13 type AB = {
18 type T1<K extends keyof AB> = { [key in AB[K]]: true };
23 type R = AB[keyof AB]; // "a"
29 type T5<S extends 'a'|'b'|'extra'> = {[key in AB[S]]: true}[S]; // Error
31 !!! error TS2536: Type 'S' cannot be used to index type '{ [key in AB[S]]: true; }'.
[all …]
DmappedTypeErrors2.types4 type AB = {
5 >AB : AB
15 type T1<K extends keyof AB> = { [key in AB[K]]: true };
22 type R = AB[keyof AB]; // "a"
32 type T5<S extends 'a'|'b'|'extra'> = {[key in AB[S]]: true}[S]; // Error
36 type T6<S extends 'a'|'b', L extends 'a'|'b'> = {[key in AB[S]]: true}[L]; // Error
40 type T7<S extends 'a'|'b', L extends 'a'> = {[key in AB[S]]: true}[L];
DunionPropertyExistence.types32 type AB = A | B;
33 >AB : AB
35 type ABC = C | AB;
38 var ab: AB;
39 >ab : AB
73 >ab : AB
78 >ab : AB
88 >ab : AB
DpartiallyDiscriminantedUnions.types28 type AB = A1 | A2 | B;
29 >AB : AB
31 const ab: AB = <AB>{};
32 >ab : AB
33 ><AB>{} : AB
39 >ab : AB
DforOfStringConstituents.types16 type AB = A | B;
17 >AB : AB
22 declare let x: AB, y: CD;
23 >x : AB
29 >x : AB
DstringLiteralTypesWithTemplateStrings02.errors.txt1 …TypesWithTemplateStrings02.ts(1,5): error TS2322: Type '"AB\nC"' is not assignable to type '"AB\r\…
6 let abc: "AB\r\nC" = `AB
8 !!! error TS2322: Type '"AB\nC"' is not assignable to type '"AB\r\nC"'.
DcrashInGetTextOfComputedPropertyName.symbols11 export type AB = A | B
12 >AB : Symbol(AB, Decl(crashInGetTextOfComputedPropertyName.ts, 2, 32))
20 const items: { [id: string]: AB } = {}
23 >AB : Symbol(AB, Decl(crashInGetTextOfComputedPropertyName.ts, 2, 32))
37 items: {[s: string]: AB}
40 >AB : Symbol(AB, Decl(crashInGetTextOfComputedPropertyName.ts, 2, 32))
DunionTypeEquivalence.symbols27 // AB | C is equivalent to A | BC, where AB is A | B and BC is B | C.
37 var AB : string | number;
38 >AB : Symbol(AB, Decl(unionTypeEquivalence.ts, 14, 3))
43 var z1: typeof AB | boolean;
45 >AB : Symbol(AB, Decl(unionTypeEquivalence.ts, 14, 3))
DunionPropertyExistence.symbols38 type AB = A | B;
39 >AB : Symbol(AB, Decl(unionPropertyExistence.ts, 15, 1))
43 type ABC = C | AB;
46 >AB : Symbol(AB, Decl(unionPropertyExistence.ts, 15, 1))
48 var ab: AB;
50 >AB : Symbol(AB, Decl(unionPropertyExistence.ts, 15, 1))
DunionTypeEquivalence.types24 // AB | C is equivalent to A | BC, where AB is A | B and BC is B | C.
34 var AB : string | number;
35 >AB : string | number
40 var z1: typeof AB | boolean;
42 >AB : string | number
DstringLiteralTypesWithTemplateStrings02.types2 let abc: "AB\r\nC" = `AB
3 >abc : "AB\r\nC"
4 >`ABC` : "AB\nC"
DforOfStringConstituents.symbols22 type AB = A | B;
23 >AB : Symbol(AB, Decl(forOfStringConstituents.ts, 3, 21))
32 declare let x: AB, y: CD;
34 >AB : Symbol(AB, Decl(forOfStringConstituents.ts, 3, 21))
DpartiallyDiscriminantedUnions.symbols34 type AB = A1 | A2 | B;
35 >AB : Symbol(AB, Decl(partiallyDiscriminantedUnions.ts, 15, 1))
40 const ab: AB = <AB>{};
42 >AB : Symbol(AB, Decl(partiallyDiscriminantedUnions.ts, 15, 1))
43 >AB : Symbol(AB, Decl(partiallyDiscriminantedUnions.ts, 15, 1))
DunionAndIntersectionInference3.types183 type AB<T> = { a: T } | { b: T };
184 >AB : AB<T>
188 // T & AB<U> normalizes to T & { a: U } | T & { b: U } below
189 declare function foo<T, U>(obj: T & AB<U>): [T, U];
190 >foo : <T, U>(obj: T & AB<U>) => [T, U]
191 >obj : T & AB<U>
193 declare let ab: AB<string>;
194 >ab : AB<string>
196 let z = foo(ab); // [AB<string>, string]
199 >foo : <T, U>(obj: T & AB<U>) => [T, U]
[all …]
DunionPropertyExistence.errors.txt7 …iler/unionPropertyExistence.ts(32,4): error TS2339: Property 'onlyInB' does not exist on type 'AB'.
11 …xistence.ts(36,4): error TS2551: Property 'notInB' does not exist on type 'AB'. Did you mean 'notI…
37 type AB = A | B;
38 type ABC = C | AB;
40 var ab: AB;
62 !!! error TS2339: Property 'onlyInB' does not exist on type 'AB'.
72 !!! error TS2551: Property 'notInB' does not exist on type 'AB'. Did you mean 'notInC'?
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDemandedBits.cpp88 const APInt &AOut, APInt &AB, KnownBits &Known, KnownBits &Known2, in determineLiveOperandBits() argument
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 = APInt::getLowBitsSet(BitWidth, AOut.getActiveBits()); in determineLiveOperandBits()
[all …]
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeErrors2.ts6 type AB = { alias
11 type T1<K extends keyof AB> = { [key in AB[K]]: true };
14 type R = AB[keyof AB]; // "a"
18 type T5<S extends 'a'|'b'|'extra'> = {[key in AB[S]]: true}[S]; // Error
20 type T6<S extends 'a'|'b', L extends 'a'|'b'> = {[key in AB[S]]: true}[L]; // Error
22 type T7<S extends 'a'|'b', L extends 'a'> = {[key in AB[S]]: true}[L];
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dissue-1435.hpp4 enum class AB { A, B }; enum
6 using AB = ns::AB; typedef
7 static const AB kA = AB::A;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
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; typedef
19 pub use self::super::root::ns::AB;
22 pub static kA: root::AB;
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.3/union_enums_cannot_be_compared_to_arbitrary_numbers/
Dunion_enums_cannot_be_compared_to_arbitrary_numbers.ts29 enum AB { enum
34 function eFun01(x: AB | -1) {
41 Assert.equal(eFun01(AB.A), 1);
43 function eFun02(x: AB) {
49 Assert.equal(eFun02(AB.A), 1);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
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() argument
70 new X86WinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)); in createX86WinCOFFStreamer()

12345678910>>...25