/third_party/typescript/tests/baselines/reference/ |
D | narrowCommaOperatorNestedWithinLHS.types | 7 const value: { inner: number | string } = null as any; 8 >value : { inner: number | string; } 9 >inner : string | number 21 if (typeof (otherValue(), value).inner === 'number') { 22 >typeof (otherValue(), value).inner === 'number' : boolean 23 >typeof (otherValue(), value).inner : "string" | "number" | "bigint" | "boolean" | "symbol" | "unde… 24 >(otherValue(), value).inner : string | number 25 >(otherValue(), value) : { inner: string | number; } 26 >otherValue(), value : { inner: string | number; } 29 >value : { inner: string | number; } [all …]
|
D | narrowCommaOperatorNestedWithinLHS.symbols | 5 const value: { inner: number | string } = null as any; 7 >inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) 17 if (typeof (otherValue(), value).inner === 'number') { 18 >(otherValue(), value).inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) 21 >inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) 23 const a = value.inner; // number 25 >value.inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) 27 >inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) 29 const b: number = (otherValue(), value).inner; // string | number , but should be number 31 >(otherValue(), value).inner : Symbol(inner, Decl(narrowCommaOperatorNestedWithinLHS.ts, 1, 14)) [all …]
|
D | innerAliases.types | 20 import inner = A.B.C; 21 >inner : typeof inner 24 >C : typeof inner 26 var c1 = new inner.Class1(); 27 >c1 : inner.Class1 28 >new inner.Class1() : inner.Class1 29 >inner.Class1 : typeof inner.Class1 30 >inner : typeof inner 31 >Class1 : typeof inner.Class1 41 var c: D.inner.Class1; [all …]
|
D | asyncFunctionReturnExpressionErrorSpans.types | 4 >bar : { baz: { inner: { thing: string; };}; } 7 >baz : { inner: { thing: string;}; } 9 inner: { 10 >inner : { thing: string; } 23 … baz: { inner: { thing: 1 } } … 26 >bar : { baz: { inner: { thing: number; }; }; } 27 … baz: { inner: { thing: 1 } } … 30 >baz : { inner: { thing: number; }; } 31 >{ inner: { thing: 1 } } : { inner: { t… 33 inner: { [all …]
|
D | narrowCommaOperatorNestedWithinLHS.js | 3 const value: { inner: number | string } = null as any; 9 if (typeof (otherValue(), value).inner === 'number') { 10 const a = value.inner; // number 11 const b: number = (otherValue(), value).inner; // string | number , but should be number 14 if (isNumber((otherValue(), value).inner)) { 15 const a = value.inner; // number 16 const b: number = (otherValue(), value).inner; // string | number , but should be number 25 if (typeof (otherValue(), value).inner === 'number') { 26 var a = value.inner; // number 27 var b = (otherValue(), value).inner; // string | number , but should be number [all …]
|
D | typeFromPropertyAssignment11.symbols | 29 var inner = new Inner() 30 >inner : Symbol(inner, Decl(module.js, 9, 3)) 33 inner.m() 34 >inner.m : Symbol(m, Decl(module.js, 1, 19)) 35 >inner : Symbol(inner, Decl(module.js, 9, 3)) 38 inner.i 39 >inner.i : Symbol(i, Decl(module.js, 2, 12)) 40 >inner : Symbol(inner, Decl(module.js, 9, 3)) 43 inner.j 44 >inner.j : Symbol(Inner.j, Decl(module.js, 4, 1)) [all …]
|
D | typeFromPropertyAssignment11.types | 38 var inner = new Inner() 39 >inner : Inner 43 inner.m() 44 >inner.m() : void 45 >inner.m : () => void 46 >inner : Inner 49 inner.i 50 >inner.i : number 51 >inner : Inner 54 inner.j [all …]
|
D | typeFromPropertyAssignment13.types | 51 var inner = new Outer.Inner() 52 >inner : Inner 58 inner.m() 59 >inner.m() : void 60 >inner.m : () => void 61 >inner : Inner 64 inner.i 65 >inner.i : number 66 >inner : Inner 69 inner.j [all …]
|
D | innerOverloads.symbols | 5 function inner(x:number); // should work 6 >inner : Symbol(inner, Decl(innerOverloads.ts, 0, 18), Decl(innerOverloads.ts, 1, 29), Decl(innerOv… 9 function inner(x:string); 10 >inner : Symbol(inner, Decl(innerOverloads.ts, 0, 18), Decl(innerOverloads.ts, 1, 29), Decl(innerOv… 13 function inner(a:any) { return a; } 14 >inner : Symbol(inner, Decl(innerOverloads.ts, 0, 18), Decl(innerOverloads.ts, 1, 29), Decl(innerOv… 18 return inner(0); 19 >inner : Symbol(inner, Decl(innerOverloads.ts, 0, 18), Decl(innerOverloads.ts, 1, 29), Decl(innerOv…
|
D | innerAliases.symbols | 20 import inner = A.B.C; 21 >inner : Symbol(inner, Decl(innerAliases.ts, 8, 10)) 24 >C : Symbol(inner, Decl(innerAliases.ts, 1, 21)) 26 var c1 = new inner.Class1(); 28 >inner.Class1 : Symbol(inner.Class1, Decl(innerAliases.ts, 2, 25)) 29 >inner : Symbol(inner, Decl(innerAliases.ts, 8, 10)) 30 >Class1 : Symbol(inner.Class1, Decl(innerAliases.ts, 2, 25)) 40 var c: D.inner.Class1; 44 c = new D.inner.Class1();
|
D | typeFromPropertyAssignment13.symbols | 40 var inner = new Outer.Inner() 41 >inner : Symbol(inner, Decl(module.js, 10, 3)) 46 inner.m() 47 >inner.m : Symbol(m, Decl(module.js, 2, 25)) 48 >inner : Symbol(inner, Decl(module.js, 10, 3)) 51 inner.i 52 >inner.i : Symbol(i, Decl(module.js, 3, 12)) 53 >inner : Symbol(inner, Decl(module.js, 10, 3)) 56 inner.j 57 >inner.j : Symbol(Outer.Inner.j, Decl(module.js, 5, 1)) [all …]
|
D | innerOverloads.types | 5 function inner(x:number); // should work 6 >inner : { (x: number): any; (x: string): any; } 9 function inner(x:string); 10 >inner : { (x: number): any; (x: string): any; } 13 function inner(a:any) { return a; } 14 >inner : { (x: number): any; (x: string): any; } 18 return inner(0); 19 >inner(0) : any 20 >inner : { (x: number): any; (x: string): any; }
|
D | emitThisInSuperMethodCall.symbols | 18 function inner() { 19 >inner : Symbol(inner, Decl(emitThisInSuperMethodCall.ts, 7, 15)) 28 function inner() { 29 >inner : Symbol(inner, Decl(emitThisInSuperMethodCall.ts, 13, 9)) 39 function inner() { 40 >inner : Symbol(inner, Decl(emitThisInSuperMethodCall.ts, 20, 9))
|
D | moduleScopingBug.symbols | 13 var inner = outer; // Ok 14 >inner : Symbol(inner, Decl(moduleScopingBug.ts, 8, 11)) 23 var inner = outer; // Ok 24 >inner : Symbol(inner, Decl(moduleScopingBug.ts, 15, 15)) 33 var inner = outer; // Error: outer not visible 34 >inner : Symbol(inner, Decl(moduleScopingBug.ts, 22, 11))
|
/third_party/boost/libs/histogram/doc/ |
D | iteration_performance.dat | 38 "name": "Naive/(tuple, 1, inner)/2", 45 "name": "Naive/(tuple, 1, inner)/4", 52 "name": "Naive/(tuple, 1, inner)/16", 59 "name": "Naive/(tuple, 1, inner)/64", 66 "name": "Naive/(tuple, 1, inner)/256", 73 "name": "Indexed/(tuple, 1, inner)/2", 80 "name": "Indexed/(tuple, 1, inner)/4", 87 "name": "Indexed/(tuple, 1, inner)/16", 94 "name": "Indexed/(tuple, 1, inner)/64", 101 "name": "Indexed/(tuple, 1, inner)/256", [all …]
|
/third_party/flutter/flutter/packages/flutter/test/rendering/ |
D | transform_test.dart | 18 RenderBox inner; 22 child: inner = RenderSizedBox(const Size(100.0, 100.0)), 25 expect(inner.globalToLocal(const Offset(0.0, 0.0)), equals(const Offset(0.0, 0.0))); 26 expect(inner.globalToLocal(const Offset(100.0, 100.0)), equals(const Offset(100.0, 100.0))); 27 expect(inner.globalToLocal(const Offset(25.0, 75.0)), equals(const Offset(25.0, 75.0))); 28 expect(inner.globalToLocal(const Offset(50.0, 50.0)), equals(const Offset(50.0, 50.0))); 29 expect(inner.localToGlobal(const Offset(0.0, 0.0)), equals(const Offset(0.0, 0.0))); 30 expect(inner.localToGlobal(const Offset(100.0, 100.0)), equals(const Offset(100.0, 100.0))); 31 expect(inner.localToGlobal(const Offset(25.0, 75.0)), equals(const Offset(25.0, 75.0))); 32 expect(inner.localToGlobal(const Offset(50.0, 50.0)), equals(const Offset(50.0, 50.0))); [all …]
|
/third_party/skia/tests/ |
D | PathOpsBuilderTest.cpp | 212 SkPath inner; in DEF_TEST() local 215 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 216 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 217 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 218 inner.addRect(10, 30, 10+32668, 30+0); // <rect x="10" y="30" width="32668" /> in DEF_TEST() 219 …inner.addRect(10, 30, 10+100, 30+18446744073709551615.f); // <rect x="10" y="30" width="100" heigh… in DEF_TEST() 220 inner.addRect(10, 255, 10+100, 255+60); // <rect x="10" y="255" width="100" height="60" /> in DEF_TEST() 221 inner.addRect(0, 0, 0+100, 0+60); // <rect width="100" height="60" /> in DEF_TEST() 222 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 223 …inner.addRect(10, 30, 10+100, 30+4294967236.f); // <rect x="10" y="30" width="100" height="4294967… in DEF_TEST() [all …]
|
D | PathOpsLineParametetersTest.cpp | 52 size_t inner; in DEF_TEST() local 53 for (inner = 0; inner < 2; ++inner) { in DEF_TEST() 54 double distSq = denormalizedDistance[inner]; in DEF_TEST() 56 double answersSq = answers[index][inner]; in DEF_TEST() 63 __FUNCTION__, static_cast<int>(index), (int)inner, in DEF_TEST() 64 denormalizedDistance[inner], answers[index][inner], in DEF_TEST() 71 for (inner = 0; inner < 2; ++inner) { in DEF_TEST() 72 if (AlmostEqualUlps(fabs(normalizedDistance[inner]), answers[index][inner])) { in DEF_TEST() 76 __FUNCTION__, static_cast<int>(index), (int)inner, in DEF_TEST() 77 normalizedDistance[inner], answers[index][inner]); in DEF_TEST()
|
/third_party/flutter/skia/tests/ |
D | PathOpsBuilderTest.cpp | 212 SkPath inner; in DEF_TEST() local 215 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 216 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 217 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 218 inner.addRect(10, 30, 10+32668, 30+0); // <rect x="10" y="30" width="32668" /> in DEF_TEST() 219 …inner.addRect(10, 30, 10+100, 30+18446744073709551615.f); // <rect x="10" y="30" width="100" heigh… in DEF_TEST() 220 inner.addRect(10, 255, 10+100, 255+60); // <rect x="10" y="255" width="100" height="60" /> in DEF_TEST() 221 inner.addRect(0, 0, 0+100, 0+60); // <rect width="100" height="60" /> in DEF_TEST() 222 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 223 …inner.addRect(10, 30, 10+100, 30+4294967236.f); // <rect x="10" y="30" width="100" height="4294967… in DEF_TEST() [all …]
|
D | PathOpsLineParametetersTest.cpp | 52 size_t inner; in DEF_TEST() local 53 for (inner = 0; inner < 2; ++inner) { in DEF_TEST() 54 double distSq = denormalizedDistance[inner]; in DEF_TEST() 56 double answersSq = answers[index][inner]; in DEF_TEST() 63 __FUNCTION__, static_cast<int>(index), (int)inner, in DEF_TEST() 64 denormalizedDistance[inner], answers[index][inner], in DEF_TEST() 71 for (inner = 0; inner < 2; ++inner) { in DEF_TEST() 72 if (AlmostEqualUlps(fabs(normalizedDistance[inner]), answers[index][inner])) { in DEF_TEST() 76 __FUNCTION__, static_cast<int>(index), (int)inner, in DEF_TEST() 77 normalizedDistance[inner], answers[index][inner]); in DEF_TEST()
|
/third_party/skia/third_party/externals/tint/src/ |
D | program_builder_test.cc | 34 Program inner([] { in TEST_F() local 41 ASSERT_EQ(inner.AST().Functions().size(), 1u); in TEST_F() 42 ASSERT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F() 43 ASSERT_FALSE(inner.Symbols().Get("b").IsValid()); in TEST_F() 45 ProgramBuilder outer = ProgramBuilder::Wrap(&inner); in TEST_F() 47 ASSERT_EQ(inner.AST().Functions().size(), 1u); in TEST_F() 49 EXPECT_EQ(inner.AST().Functions()[0], outer.AST().Functions()[0]); in TEST_F() 50 EXPECT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F() 51 EXPECT_EQ(inner.Symbols().Get("a"), outer.Symbols().Get("a")); in TEST_F() 52 EXPECT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F() [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | x-elisp.c | 649 struct object inner; in read_object() local 660 read_object (&inner, arg == 0, new_backquote_flag, in read_object() 664 if (inner.type == t_listclose) in read_object() 678 if (inner.type == t_eof) in read_object() 684 if (inner.type == t_symbol) in read_object() 686 char *symbol_name = string_of_object (&inner); in read_object() 711 if (argparser != NULL && inner.type == t_string) in read_object() 713 char *s = string_of_object (&inner); in read_object() 717 inner.line_number_at_start); in read_object() 722 inner.line_number_at_start, in read_object() [all …]
|
/third_party/boost/boost/spirit/home/classic/iterator/ |
D | multi_pass.hpp | 245 class inner class in boost::spirit::multi_pass_policies::std_deque 254 inner() in inner() function in boost::spirit::multi_pass_policies::std_deque::inner 259 inner(inner const& x) in inner() function in boost::spirit::multi_pass_policies::std_deque::inner 272 void swap(inner& x) in swap() 352 bool equal_to(inner const& x) const in equal_to() 358 bool less_than(inner const& x) const in less_than() 384 class inner class in boost::spirit::multi_pass_policies::fixed_size_queue 393 inner() in inner() function in boost::spirit::multi_pass_policies::fixed_size_queue::inner 398 inner(inner const& x) in inner() function in boost::spirit::multi_pass_policies::fixed_size_queue::inner 411 void swap(inner& x) in swap() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | narrowCommaOperatorNestedWithinLHS.ts | 2 const value: { inner: number | string } = null as any; 8 if (typeof (otherValue(), value).inner === 'number') { 9 const a = value.inner; // number 10 const b: number = (otherValue(), value).inner; // string | number , but should be number 13 if (isNumber((otherValue(), value).inner)) { 14 const a = value.inner; // number 15 const b: number = (otherValue(), value).inner; // string | number , but should be number
|
/third_party/flutter/skia/gm/ |
D | localmatrixshader.cpp | 47 const SkMatrix& inner, 51 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) { in __anon8c92f03e0102() 52 return img->makeShader(&inner)->makeWithLocalMatrix(outer); in __anon8c92f03e0102() 56 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) { in __anon8c92f03e0202() 57 return img->makeShader()->makeWithLocalMatrix(inner)->makeWithLocalMatrix(outer); in __anon8c92f03e0202() 61 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) { in __anon8c92f03e0302() 64 img->makeShader(&inner)) in __anon8c92f03e0302() 69 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) { in __anon8c92f03e0402() 72 img->makeShader()->makeWithLocalMatrix(inner)) in __anon8c92f03e0402() 77 static const auto inner = SkMatrix::MakeScale(2, 2), variable [all …]
|