Home
last modified time | relevance | path

Searched refs:identical (Results 1 – 25 of 1322) sorted by relevance

12345678910>>...53

/third_party/python/Lib/test/
Dtest_float.py1080 def identical(self, x, y): member in HexFloatTestCase
1091 self.identical(self.MIN, ldexp(1.0, -1022))
1092 self.identical(self.TINY, ldexp(1.0, -1074))
1093 self.identical(self.EPS, ldexp(1.0, -52))
1094 self.identical(self.MAX, 2.*(ldexp(1.0, 1023) - ldexp(1.0, 970)))
1183 self.identical(got, expected)
1193 self.identical(fromHex('inf'), INF)
1194 self.identical(fromHex('+Inf'), INF)
1195 self.identical(fromHex('-INF'), -INF)
1196 self.identical(fromHex('iNf'), INF)
[all …]
/third_party/typescript/tests/baselines/reference/
DinterfaceWithMultipleDeclarations.errors.txt1 …eDeclarations.ts(1,11): error TS2428: All declarations of 'I1' must have identical type parameters.
2 …eDeclarations.ts(3,11): error TS2428: All declarations of 'I1' must have identical type parameters.
3 …eDeclarations.ts(5,11): error TS2428: All declarations of 'I1' must have identical type parameters.
4 …eDeclarations.ts(7,11): error TS2428: All declarations of 'I1' must have identical type parameters.
5 …eDeclarations.ts(9,11): error TS2428: All declarations of 'I1' must have identical type parameters.
6 …Declarations.ts(11,11): error TS2428: All declarations of 'I1' must have identical type parameters.
7 …Declarations.ts(14,11): error TS2428: All declarations of 'I2' must have identical type parameters.
8 …Declarations.ts(16,11): error TS2428: All declarations of 'I2' must have identical type parameters.
9 …Declarations.ts(18,11): error TS2428: All declarations of 'I2' must have identical type parameters.
10 …Declarations.ts(20,11): error TS2428: All declarations of 'I2' must have identical type parameters.
[all …]
DtwoGenericInterfacesDifferingByTypeParameterName.errors.txt1 …eParameterName.ts(3,11): error TS2428: All declarations of 'A' must have identical type parameters.
2 …eParameterName.ts(7,11): error TS2428: All declarations of 'A' must have identical type parameters.
3 …ParameterName.ts(11,11): error TS2428: All declarations of 'B' must have identical type parameters.
4 …ParameterName.ts(15,11): error TS2428: All declarations of 'B' must have identical type parameters.
5 …ParameterName.ts(20,15): error TS2428: All declarations of 'A' must have identical type parameters.
6 …ParameterName.ts(24,15): error TS2428: All declarations of 'A' must have identical type parameters.
7 …ParameterName.ts(28,15): error TS2428: All declarations of 'B' must have identical type parameters.
8 …ParameterName.ts(32,15): error TS2428: All declarations of 'B' must have identical type parameters.
9 …ParameterName.ts(50,22): error TS2428: All declarations of 'B' must have identical type parameters.
10 …ParameterName.ts(56,22): error TS2428: All declarations of 'B' must have identical type parameters.
[all …]
DnonIdenticalTypeConstraints.errors.txt1 …peConstraints.ts(7,7): error TS2428: All declarations of 'Foo' must have identical type parameters.
2 …Constraints.ts(10,11): error TS2428: All declarations of 'Foo' must have identical type parameters.
3 …Constraints.ts(13,11): error TS2428: All declarations of 'Qux' must have identical type parameters.
4 …eConstraints.ts(16,7): error TS2428: All declarations of 'Qux' must have identical type parameters.
5 …Constraints.ts(33,7): error TS2428: All declarations of 'Quux' must have identical type parameters.
6 …onstraints.ts(36,11): error TS2428: All declarations of 'Quux' must have identical type parameters.
18 !!! error TS2428: All declarations of 'Foo' must have identical type parameters.
23 !!! error TS2428: All declarations of 'Foo' must have identical type parameters.
28 !!! error TS2428: All declarations of 'Qux' must have identical type parameters.
33 !!! error TS2428: All declarations of 'Qux' must have identical type parameters.
[all …]
DtwoGenericInterfacesWithTheSameNameButDifferentArity.errors.txt1 …DifferentArity.ts(1,11): error TS2428: All declarations of 'A' must have identical type parameters.
2 …DifferentArity.ts(5,11): error TS2428: All declarations of 'A' must have identical type parameters.
3 …ifferentArity.ts(10,15): error TS2428: All declarations of 'A' must have identical type parameters.
4 …ifferentArity.ts(14,15): error TS2428: All declarations of 'A' must have identical type parameters.
5 …ifferentArity.ts(32,22): error TS2428: All declarations of 'A' must have identical type parameters.
6 …ifferentArity.ts(38,22): error TS2428: All declarations of 'A' must have identical type parameters.
12 !!! error TS2428: All declarations of 'A' must have identical type parameters.
18 !!! error TS2428: All declarations of 'A' must have identical type parameters.
25 !!! error TS2428: All declarations of 'A' must have identical type parameters.
31 !!! error TS2428: All declarations of 'A' must have identical type parameters.
[all …]
DgenericAndNonGenericInterfaceWithTheSameName.errors.txt1 …ithTheSameName.ts(3,11): error TS2428: All declarations of 'A' must have identical type parameters.
2 …ithTheSameName.ts(7,11): error TS2428: All declarations of 'A' must have identical type parameters.
3 …thTheSameName.ts(12,15): error TS2428: All declarations of 'A' must have identical type parameters.
4 …thTheSameName.ts(16,15): error TS2428: All declarations of 'A' must have identical type parameters.
5 …thTheSameName.ts(34,22): error TS2428: All declarations of 'A' must have identical type parameters.
6 …thTheSameName.ts(40,22): error TS2428: All declarations of 'A' must have identical type parameters.
14 !!! error TS2428: All declarations of 'A' must have identical type parameters.
20 !!! error TS2428: All declarations of 'A' must have identical type parameters.
27 !!! error TS2428: All declarations of 'A' must have identical type parameters.
33 !!! error TS2428: All declarations of 'A' must have identical type parameters.
[all …]
DtwoGenericInterfacesWithDifferentConstraints.errors.txt1 …entConstraints.ts(1,11): error TS2428: All declarations of 'A' must have identical type parameters.
2 …entConstraints.ts(5,11): error TS2428: All declarations of 'A' must have identical type parameters.
3 …ntConstraints.ts(10,15): error TS2428: All declarations of 'B' must have identical type parameters.
4 …ntConstraints.ts(14,15): error TS2428: All declarations of 'B' must have identical type parameters.
5 …ntConstraints.ts(32,22): error TS2428: All declarations of 'A' must have identical type parameters.
6 …ntConstraints.ts(38,22): error TS2428: All declarations of 'A' must have identical type parameters.
12 !!! error TS2428: All declarations of 'A' must have identical type parameters.
18 !!! error TS2428: All declarations of 'A' must have identical type parameters.
25 !!! error TS2428: All declarations of 'B' must have identical type parameters.
31 !!! error TS2428: All declarations of 'B' must have identical type parameters.
[all …]
DtwoGenericInterfacesDifferingByTypeParameterName2.errors.txt1 …ParameterName2.ts(3,11): error TS2428: All declarations of 'B' must have identical type parameters.
2 …ParameterName2.ts(7,11): error TS2428: All declarations of 'B' must have identical type parameters.
4 …arameterName2.ts(12,15): error TS2428: All declarations of 'B' must have identical type parameters.
5 …arameterName2.ts(16,15): error TS2428: All declarations of 'B' must have identical type parameters.
6 …arameterName2.ts(34,22): error TS2428: All declarations of 'B' must have identical type parameters.
7 …arameterName2.ts(40,22): error TS2428: All declarations of 'B' must have identical type parameters.
15 !!! error TS2428: All declarations of 'B' must have identical type parameters.
21 !!! error TS2428: All declarations of 'B' must have identical type parameters.
30 !!! error TS2428: All declarations of 'B' must have identical type parameters.
36 !!! error TS2428: All declarations of 'B' must have identical type parameters.
[all …]
DduplicateIdentifierDifferentModifiers.errors.txt1 …erDifferentModifiers.ts(2,15): error TS2687: All declarations of 'x' must have identical modifiers.
2 …erDifferentModifiers.ts(3,15): error TS2687: All declarations of 'x' must have identical modifiers.
3 …rDifferentModifiers.ts(16,11): error TS2687: All declarations of 'y' must have identical modifiers.
4 …erDifferentModifiers.ts(20,3): error TS2687: All declarations of 'y' must have identical modifiers.
11 !!! error TS2687: All declarations of 'x' must have identical modifiers.
14 !!! error TS2687: All declarations of 'x' must have identical modifiers.
29 !!! error TS2687: All declarations of 'y' must have identical modifiers.
35 !!! error TS2687: All declarations of 'y' must have identical modifiers.
DclassAndInterfaceMergeConflictingMembers.errors.txt1 …eConflictingMembers.ts(10,15): error TS2687: All declarations of 'x' must have identical modifiers.
2 …geConflictingMembers.ts(14,5): error TS2687: All declarations of 'x' must have identical modifiers.
3 …eConflictingMembers.ts(18,13): error TS2687: All declarations of 'x' must have identical modifiers.
4 …geConflictingMembers.ts(22,5): error TS2687: All declarations of 'x' must have identical modifiers.
19 !!! error TS2687: All declarations of 'x' must have identical modifiers.
25 !!! error TS2687: All declarations of 'x' must have identical modifiers.
31 !!! error TS2687: All declarations of 'x' must have identical modifiers.
37 !!! error TS2687: All declarations of 'x' must have identical modifiers.
DconstructorParameterProperties2.errors.txt2 …ParameterProperties2.ts(18,5): error TS2687: All declarations of 'y' must have identical modifiers.
4 …arameterProperties2.ts(19,25): error TS2687: All declarations of 'y' must have identical modifiers.
5 …ParameterProperties2.ts(26,5): error TS2687: All declarations of 'y' must have identical modifiers.
7 …arameterProperties2.ts(27,27): error TS2687: All declarations of 'y' must have identical modifiers.
32 !!! error TS2687: All declarations of 'y' must have identical modifiers.
37 !!! error TS2687: All declarations of 'y' must have identical modifiers.
46 !!! error TS2687: All declarations of 'y' must have identical modifiers.
51 !!! error TS2687: All declarations of 'y' must have identical modifiers.
DintersectionTypeReadonly.types32 let identical: Base & Identical;
33 >identical : Base & Identical
35 identical.value = 12; // error, lhs can't be a readonly property
36 >identical.value = 12 : 12
37 >identical.value : any
38 >identical : Base & Identical
DunionTypeReadonly.types32 let identical: Base | Identical;
33 >identical : Base | Identical
35 identical.value = 12; // error, lhs can't be a readonly property
36 >identical.value = 12 : 12
37 >identical.value : any
38 >identical : Base | Identical
DunionTypeReadonly.js19 let identical: Base | Identical; variable
20 identical.value = 12; // error, lhs can't be a readonly property
33 var identical; variable
34 identical.value = 12; // error, lhs can't be a readonly property
DintersectionTypeReadonly.js19 let identical: Base & Identical; variable
20 identical.value = 12; // error, lhs can't be a readonly property
32 var identical; variable
33 identical.value = 12; // error, lhs can't be a readonly property
DintersectionTypeReadonly.symbols41 let identical: Base & Identical;
42 >identical : Symbol(identical, Decl(intersectionTypeReadonly.ts, 17, 3))
46 identical.value = 12; // error, lhs can't be a readonly property
47 >identical.value : Symbol(value, Decl(intersectionTypeReadonly.ts, 0, 16), Decl(intersectionTypeRea…
48 >identical : Symbol(identical, Decl(intersectionTypeReadonly.ts, 17, 3))
DunionTypeReadonly.symbols41 let identical: Base | Identical;
42 >identical : Symbol(identical, Decl(unionTypeReadonly.ts, 17, 3))
46 identical.value = 12; // error, lhs can't be a readonly property
47 >identical.value : Symbol(value, Decl(unionTypeReadonly.ts, 0, 16), Decl(unionTypeReadonly.ts, 3, 2…
48 >identical : Symbol(identical, Decl(unionTypeReadonly.ts, 17, 3))
DextendedInterfacesWithDuplicateTypeParameters.errors.txt2 …): error TS2428: All declarations of 'InterfaceWithSomeTypars' must have identical type parameters.
3 …): error TS2428: All declarations of 'InterfaceWithSomeTypars' must have identical type parameters.
16 !!! error TS2428: All declarations of 'InterfaceWithSomeTypars' must have identical type parameters.
22 !!! error TS2428: All declarations of 'InterfaceWithSomeTypars' must have identical type parameters.
DinferTypesWithExtends2.errors.txt1 …rTypesWithExtends2.ts(3,26): error TS2838: All declarations of 'U' must have identical constraints.
2 …rTypesWithExtends2.ts(3,53): error TS2838: All declarations of 'U' must have identical constraints.
11 !!! error TS2838: All declarations of 'U' must have identical constraints.
13 !!! error TS2838: All declarations of 'U' must have identical constraints.
DinterfacePropertiesWithSameName3.errors.txt2 Named property 'a' of types 'E' and 'D' are not identical.
4 Named property 'a' of types 'E2' and 'D2' are not identical.
13 !!! error TS2320: Named property 'a' of types 'E' and 'D' are not identical.
20 !!! error TS2320: Named property 'a' of types 'E2' and 'D2' are not identical.
DconstructSignaturesWithOverloads2.errors.txt1 …ithOverloads2.ts(27,11): error TS2428: All declarations of 'I' must have identical type parameters.
2 …ithOverloads2.ts(32,11): error TS2428: All declarations of 'I' must have identical type parameters.
34 !!! error TS2428: All declarations of 'I' must have identical type parameters.
41 !!! error TS2428: All declarations of 'I' must have identical type parameters.
DmergedInterfacesWithInheritedPrivates3.errors.txt2 Named property 'x' of types 'C' and 'C2' are not identical.
4 Named property 'x' of types 'C' and 'C2' are not identical.
19 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
44 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
/third_party/node/lib/internal/assert/
Dassertion_error.js191 let identical = 0;
209 if (identical > 2) {
210 if (identical > 3) {
211 if (identical > 4) {
212 if (identical === 5) {
227 identical = 0;
265 if (identical > 2) {
266 if (identical > 3) {
267 if (identical > 4) {
268 if (identical === 5) {
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
Dinvariance.txt22 command, the resulting Vulkan and framebuffer state must: be identical
68 identical each time the command is executed on that initial Vulkan and
96 sequence, are pixel identical._
101 been created with identical SPIR-V binaries and identical state, which are
123 atomic operations must: be identical each time the command is executed on
143 fragment f' produced from p' is identical to a corresponding fragment f from
165 generated for two adjacent patches have identical vertices along shared
169 *Rule 1* _When processing two patches with identical outer and inner
171 identical set of point, line, or triangle primitives as long as the pipeline
175 Two sets of primitives are considered identical if and only if they contain
[all …]
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/
Dwhen-skipLibCheck-and-skipDefaultLibCheck-changes.js37 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
42 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
47 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
109 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
164 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
169 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
224 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
229 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
234 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
288 …m - error TS2687: All declarations of 'fullscreen' must have identical modifiers.
[all …]

12345678910>>...53