/third_party/typescript/tests/baselines/reference/ |
D | controlFlowManyConsecutiveConditionsNoTimeout.types | 5 One, 6 >One : Choice.One 12 const choice: Choice = Choice.One; 14 >Choice.One : Choice.One 16 >One : Choice.One 18 const choiceOne = Choice.One; 19 >choiceOne : Choice.One 20 >Choice.One : Choice.One 22 >One : Choice.One 26 >choice : Choice.One [all …]
|
D | augmentedTypesEnum.types | 3 enum e1111 { One } // error 5 >One : e1111.One 12 enum e2 { One } // error 14 >One : e2.One 19 enum e3 { One } // error 21 >One : e3.One 28 enum e4 { One } // error 30 >One : e4.One 37 enum e5 { One } 39 >One : e5.One [all …]
|
D | augmentedTypesEnum.symbols | 3 enum e1111 { One } // error 5 >One : Symbol(e1111.One, Decl(augmentedTypesEnum.ts, 1, 12)) 11 enum e2 { One } // error 13 >One : Symbol(e2.One, Decl(augmentedTypesEnum.ts, 5, 9)) 18 enum e3 { One } // error 20 >One : Symbol(e3.One, Decl(augmentedTypesEnum.ts, 8, 9)) 26 enum e4 { One } // error 28 >One : Symbol(e4.One, Decl(augmentedTypesEnum.ts, 12, 9)) 35 enum e5 { One } 37 >One : Symbol(e5.One, Decl(augmentedTypesEnum.ts, 16, 9)) [all …]
|
D | prototypePropertyAssignmentMergeAcrossFiles2.types | 6 Ns.One = function() {}; 7 >Ns.One = function() {} : typeof One 8 >Ns.One : typeof One 10 >One : typeof One 11 >function() {} : typeof One 20 Ns.One.prototype = { 21 >Ns.One.prototype = { ok() {},} : { ok(): void; } 22 >Ns.One.prototype : { ok(): void; } 23 >Ns.One : typeof One 25 >One : typeof One [all …]
|
D | augmentedTypesModules4.types | 13 enum m4a { One } 15 >One : m4a.One 22 enum m4b { One } 24 >One : m4b.One 29 enum m4c { One } 31 >One : m4c.One 38 enum m4d { One } 40 >One : m4d.One
|
D | nonExportedElementsOfMergedModules.js | 2 module One { 9 module One { 20 var One; variable 21 (function (One) { argument 29 })(One || (One = {})); 30 (function (One) { argument 40 })(One || (One = {}));
|
D | augmentedTypesEnum.js | 3 enum e1111 { One } // error 7 enum e2 { One } // error 10 enum e3 { One } // error 14 enum e4 { One } // error 18 enum e5 { One } 21 enum e5a { One } // error 22 enum e5a { One } // error 25 enum e6 { One } 28 enum e6a { One } 31 enum e6b { One }
|
D | prototypePropertyAssignmentMergeAcrossFiles2.symbols | 5 Ns.One = function() {}; 6 >Ns.One : Symbol(Ns.One, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, 0, 11), Decl(prototy… 8 >One : Symbol(Ns.One, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, 0, 11), Decl(prototypeP… 15 Ns.One.prototype = { 16 >Ns.One.prototype : Symbol(Ns.One.prototype, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, … 17 >Ns.One : Symbol(Ns.One, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, 0, 11), Decl(prototy… 19 >One : Symbol(Ns.One, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, 0, 11), Decl(prototypeP… 20 >prototype : Symbol(Ns.One.prototype, Decl(prototypePropertyAssignmentMergeAcrossFiles2.js, 2, 23)) 36 * @type {Ns.One}
|
D | augmentedTypesModules4.symbols | 14 enum m4a { One } 16 >One : Symbol(m4a.One, Decl(augmentedTypesModules4.ts, 6, 10)) 22 enum m4b { One } 24 >One : Symbol(m4b.One, Decl(augmentedTypesModules4.ts, 9, 10)) 31 enum m4c { One } 33 >One : Symbol(m4c.One, Decl(augmentedTypesModules4.ts, 12, 10)) 40 enum m4d { One } 42 >One : Symbol(m4d.One, Decl(augmentedTypesModules4.ts, 15, 10))
|
D | importsNotUsedAsValues_error.types | 9 export const enum C { One, Two } 11 >One : C.One 86 C.One; 87 >C.One : C.One 89 >One : C.One 157 const enum K { One, Two } 159 >One : K.One 169 K.One; 170 >K.One : K.One 172 >One : K.One
|
D | augmentedTypesEnum.errors.txt | 10 tests/cases/compiler/augmentedTypesEnum.ts(20,12): error TS2300: Duplicate identifier 'One'. 11 tests/cases/compiler/augmentedTypesEnum.ts(21,12): error TS2300: Duplicate identifier 'One'. 17 enum e1111 { One } // error 25 enum e2 { One } // error 32 enum e3 { One } // error 40 enum e4 { One } // error 48 enum e5 { One } 53 enum e5a { One } // error 55 !!! error TS2300: Duplicate identifier 'One'. 56 enum e5a { One } // error [all …]
|
D | augmentedTypesEnum2.types | 3 enum e1 { One } // error 5 >One : e1.One 15 enum e2 { One }; // error 17 >One : e2.One
|
D | nonExportedElementsOfMergedModules.types | 2 module One { 3 >One : typeof One 17 module One { 18 >One : typeof One
|
D | augmentedTypesEnum2.symbols | 3 enum e1 { One } // error 5 >One : Symbol(e1.One, Decl(augmentedTypesEnum2.ts, 1, 9)) 17 enum e2 { One }; // error 19 >One : Symbol(e2.One, Decl(augmentedTypesEnum2.ts, 10, 9))
|
D | simplifyingConditionalWithInteriorConditionalIsRelated.symbols | 54 type One = T extends string ? string : string; 55 >One : Symbol(One, Decl(simplifyingConditionalWithInteriorConditionalIsRelated.ts, 23, 17)) 58 type A = T extends number ? One : never; 61 >One : Symbol(One, Decl(simplifyingConditionalWithInteriorConditionalIsRelated.ts, 23, 17)) 63 const x: One = null as any as A; 65 >One : Symbol(One, Decl(simplifyingConditionalWithInteriorConditionalIsRelated.ts, 23, 17))
|
D | augmentedTypesModules.types | 175 enum m4a { One } 177 >One : m4a.One 184 enum m4b { One } 186 >One : m4b.One 191 enum m4c { One } 193 >One : m4c.One 200 enum m4d { One } 202 >One : m4d.One
|
D | nonExportedElementsOfMergedModules.symbols | 2 module One { 3 >One : Symbol(One, Decl(nonExportedElementsOfMergedModules.ts, 0, 0), Decl(nonExportedElementsOfMer… 17 module One { 18 >One : Symbol(One, Decl(nonExportedElementsOfMergedModules.ts, 0, 0), Decl(nonExportedElementsOfMer…
|
D | importsNotUsedAsValues_error.symbols | 9 export const enum C { One, Two } 11 >One : Symbol(C.One, Decl(a.ts, 3, 21)) 88 C.One; 89 >C.One : Symbol(C.One, Decl(a.ts, 3, 21)) 91 >One : Symbol(C.One, Decl(a.ts, 3, 21)) 160 const enum K { One, Two } 162 >One : Symbol(K.One, Decl(k.ts, 0, 14)) 172 K.One; 173 >K.One : Symbol(K.One, Decl(k.ts, 0, 14)) 175 >One : Symbol(K.One, Decl(k.ts, 0, 14))
|
D | prototypePropertyAssignmentMergeAcrossFiles2.errors.txt | 1 …s/cases/conformance/salsa/other.js(5,5): error TS2339: Property 'wat' does not exist on type 'One'. 7 Ns.One = function() {}; 10 Ns.One.prototype = { 18 * @type {Ns.One} 23 !!! error TS2339: Property 'wat' does not exist on type 'One'.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | KnownBits.h | 24 APInt One; member 28 KnownBits(APInt Zero, APInt One) in KnownBits() 29 : Zero(std::move(Zero)), One(std::move(One)) {} in KnownBits() 36 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {} in KnownBits() 40 assert(Zero.getBitWidth() == One.getBitWidth() && in getBitWidth() 46 bool hasConflict() const { return Zero.intersects(One); } in hasConflict() 51 return Zero.countPopulation() + One.countPopulation() == getBitWidth(); in isConstant() 58 return One; in getConstant() 62 bool isUnknown() const { return Zero.isNullValue() && One.isNullValue(); } in isUnknown() 67 One.clearAllBits(); in resetAll() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | augmentedTypesEnum.ts | 2 enum e1111 { One } // error enumerator 6 enum e2 { One } // error enumerator 9 enum e3 { One } // error enumerator 13 enum e4 { One } // error enumerator 17 enum e5 { One } enumerator 20 enum e5a { One } // error enumerator 21 enum e5a { One } // error enumerator 24 enum e6 { One } enumerator 27 enum e6a { One } enumerator 30 enum e6b { One } enumerator
|
D | augmentedTypesModules4.ts | 7 enum m4a { One } enumerator 10 enum m4b { One } enumerator 13 enum m4c { One } enumerator 16 enum m4d { One } enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | GISelKnownBits.cpp | 88 APInt GISelKnownBits::getKnownOnes(Register R) { return getKnownBits(R).One; } in getKnownOnes() 146 Known.One = *CstVal; in computeKnownBitsImpl() 147 Known.Zero = ~Known.One; in computeKnownBitsImpl() 176 APInt KnownZeroOut = (Known.Zero & Known2.Zero) | (Known.One & Known2.One); in computeKnownBitsImpl() 178 Known.One = (Known.Zero & Known2.One) | (Known.One & Known2.Zero); in computeKnownBitsImpl() 218 Known.One &= Known2.One; in computeKnownBitsImpl() 233 Known.One |= Known2.One; in computeKnownBitsImpl() 266 Known.One &= Known2.One; in computeKnownBitsImpl() 329 Known.One = Known.One.ashr(Shift); in computeKnownBitsImpl() 333 Known.One = Known.One.lshr(Shift); in computeKnownBitsImpl() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | KnownBits.cpp | 29 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One; in computeForAddCarry() 32 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry() 33 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry() 43 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry() 51 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry() 63 std::swap(RHS.Zero, RHS.One); in computeForAddSub()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 179 APInt IKnownOne = RHSKnown.One & LHSKnown.One; in SimplifyDemandedUseBits() 188 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) in SimplifyDemandedUseBits() 190 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) in SimplifyDemandedUseBits() 198 Known.One = std::move(IKnownOne); in SimplifyDemandedUseBits() 204 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.One, LHSKnown, in SimplifyDemandedUseBits() 213 APInt IKnownOne = RHSKnown.One | LHSKnown.One; in SimplifyDemandedUseBits() 222 if (DemandedMask.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) in SimplifyDemandedUseBits() 224 if (DemandedMask.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) in SimplifyDemandedUseBits() 232 Known.One = std::move(IKnownOne); in SimplifyDemandedUseBits() 244 (RHSKnown.One & LHSKnown.One); in SimplifyDemandedUseBits() [all …]
|