/third_party/typescript/tests/baselines/reference/ |
D | indexSignatureOfTypeUnknownStillRequiresIndexSignature.types | 8 >stooges : { name: string; age: number; }[] 9 >[ { name: "moe", age: 40 }, { name: "larry", age: 50 }, { name: "curly", age: 60 }] : { name: s… 11 { name: "moe", age: 40 }, 12 >{ name: "moe", age: 40 } : { name: string; age: number; } 15 >age : number 18 { name: "larry", age: 50 }, 19 >{ name: "larry", age: 50 } : { name: string; age: number; } 22 >age : number 25 { name: "curly", age: 60 } 26 >{ name: "curly", age: 60 } : { name: string; age: number; } [all …]
|
D | emitArrowFunctionThisCapturingES6.types | 4 >() => { this.age = 10} : () => void 6 this.age = 10 7 >this.age = 10 : 10 8 >this.age : any 10 >age : any 33 >foo(() => { this.age = 100; return true;}) : void 35 >() => { this.age = 100; return true;} : () => true 37 this.age = 100; 38 >this.age = 100 : 100 39 >this.age : any [all …]
|
D | emitArrowFunctionThisCapturing.types | 4 >() => { this.age = 10} : () => void 6 this.age = 10 7 >this.age = 10 : 10 8 >this.age : any 10 >age : any 33 >foo(() => { this.age = 100; return true;}) : void 35 >() => { this.age = 100; return true;} : () => true 37 this.age = 100; 38 >this.age = 100 : 100 39 >this.age : any [all …]
|
D | typeInferenceWithExcessProperties.types | 30 >parrot({ name: "TypeScript", age: 5,}) : { name: string; age: number; } 32 >{ name: "TypeScript", age: 5,} : { name: string; age: number; } 38 age: 5, 39 >age : number 45 >parrot({ name: "TypeScript", age: function () { },}) : { name: string; age: () => void; } 47 >{ name: "TypeScript", age: function () { },} : { name: string; age: () => void; } 53 age: function () { }, 54 >age : () => void
|
D | knockout.types | 24 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 25 >{ name: ko.observable("Bob"), age: ko.observable(37) } : { name: ko.Observable<string>; ag… 35 age: ko.observable(37) 36 >age : ko.Observable<number> 48 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 52 var age_v = o.age(); 54 >o.age() : number 55 >o.age : ko.Observable<number> 56 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 57 >age : ko.Observable<number> [all …]
|
D | genericInference2.types | 24 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 25 …{ name: ko.observable("Bob"), age: ko.observable(37) } : { name: ko.Observable<s… 35 age: ko.observable(37) 36 >age : ko.Observable<number> 49 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 53 var age_v = o.age(); // should be 'number' 55 >o.age() : number 56 >o.age : ko.Observable<number> 57 >o : { name: ko.Observable<string>; age: ko.Observable<number>; } 58 >age : ko.Observable<number> [all …]
|
D | indexSignatureOfTypeUnknownStillRequiresIndexSignature.symbols | 13 { name: "moe", age: 40 }, 15 >age : Symbol(age, Decl(indexSignatureOfTypeUnknownStillRequiresIndexSignature.ts, 3, 16)) 17 { name: "larry", age: 50 }, 19 >age : Symbol(age, Decl(indexSignatureOfTypeUnknownStillRequiresIndexSignature.ts, 4, 18)) 21 { name: "curly", age: 60 } 23 >age : Symbol(age, Decl(indexSignatureOfTypeUnknownStillRequiresIndexSignature.ts, 5, 18))
|
D | indexSignatureOfTypeUnknownStillRequiresIndexSignature.js | 5 { name: "moe", age: 40 }, property 6 { name: "larry", age: 50 }, property 7 { name: "curly", age: 60 } property 15 { name: "moe", age: 40 }, property 16 { name: "larry", age: 50 }, property 17 { name: "curly", age: 60 } property
|
D | indexSignatureOfTypeUnknownStillRequiresIndexSignature.errors.txt | 1 …resIndexSignature.ts(9,3): error TS2345: Argument of type '{ name: string; age: number; }[]' is no… 2 Index signature is missing in type '{ name: string; age: number; }[]'. 9 { name: "moe", age: 40 }, 10 { name: "larry", age: 50 }, 11 { name: "curly", age: 60 } 16 !!! error TS2345: Argument of type '{ name: string; age: number; }[]' is not assignable to paramete… 17 !!! error TS2345: Index signature is missing in type '{ name: string; age: number; }[]'.
|
/third_party/boost/libs/fusion/test/sequence/ |
D | adt_attribute_proxy.cpp | 23 Age age; member 37 age=a; in set_age() 52 return age; in get_age() 57 return age; in get_age() 64 struct age; 71 (Age&, Age const&, obj.get_age(), obj.template set_age<Val>(val), keys::age)) 81 fusion::at_key<keys::age>(e)=37; in main() 95 boost::fusion::result_of::value_at_key<et, keys::age>::type, in main() 100 boost::fusion::result_of::value_at_key<et, keys::age>::type, in main() 111 boost::fusion::result_of::at_key<et, keys::age>::type, in main() [all …]
|
/third_party/boost/libs/multi_index/test/ |
D | employee.hpp | 34 int age; member 38 id(id_),name(name_),age(age_),ssn(ssn_) in employee() 42 id(x.id),name(x.name),age(x.age),ssn(x.ssn) in employee() 46 id(x.id),name(boost::move(x.name)),age(x.age),ssn(x.ssn) in employee() 53 age=x.age; in operator =() 62 age=x.age; in operator =() 69 return id==x.id&&name==x.name&&age==x.age; in operator ==() 90 os<<e.id<<" "<<e.name<<" "<<e.age<<std::endl; in operator <<() 100 struct age{}; struct 113 boost::multi_index::tag<age>, [all …]
|
/third_party/boost/libs/thread/example/ |
D | synchronized_person.cpp | 80 SafeMemberPerson(unsigned int age) : in SafeMemberPerson() argument 81 member(Member(age)) in SafeMemberPerson() 91 Member(unsigned int age) : in Member() 92 age(age) in Member() 95 unsigned int age; member 103 Person2(unsigned int age) : age_(age) in Person2() argument 154 HelperPerson(unsigned int age) : in HelperPerson() argument 155 member(age) in HelperPerson() 177 Member(unsigned int age) : in Member() 178 age(age) in Member() [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | GLX_EXT_buffer_age.txt | 59 This extension lets applications query the age of the back buffer 62 either be reported as invalid (has an age of 0) or it may be 66 Once the application has queried the buffer age, the age of 83 knowing the age of the buffer they know how to efficiently repair 98 Querying GLX_BACK_BUFFER_AGE_EXT returns the age of the color 101 under certain conditions described below, use this age to 118 * The current back buffer's age is set to 1. 120 their age was previously greater than 0. 122 For the purposes of buffer age tracking, a buffer's content 123 is considered defined when its age transitions to a value [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | GLX_EXT_buffer_age.txt | 59 This extension lets applications query the age of the back buffer 62 either be reported as invalid (has an age of 0) or it may be 66 Once the application has queried the buffer age, the age of 83 knowing the age of the buffer they know how to efficiently repair 98 Querying GLX_BACK_BUFFER_AGE_EXT returns the age of the color 101 under certain conditions described below, use this age to 118 * The current back buffer's age is set to 1. 120 their age was previously greater than 0. 122 For the purposes of buffer age tracking, a buffer's content 123 is considered defined when its age transitions to a value [all …]
|
/third_party/boost/libs/hana/example/tutorial/ |
D | introspection.adapt.cpp | 18 (int, age) 51 int age = hana::at_key(john, "age"_s); in main() local 52 BOOST_HANA_RUNTIME_CHECK(age == 30); in main() 66 int age = map["age"_s]; in main() local 67 BOOST_HANA_RUNTIME_CHECK(age == 30); in main() 80 int age; member 84 BOOST_HANA_ADAPT_STRUCT(not_my_namespace::Person, name, age); 98 (age, [](auto const& p) { return p.get_age(); }) in __anon350c8eb20402()
|
/third_party/boost/libs/assign/test/ |
D | multi_index_container.cpp | 43 int age; member 45 employee(int id_,std::string name_,int age_):id(id_),name(name_),age(age_){} in employee() 49 return id==x.id&&name==x.name&&age==x.age; in operator ==() 70 os<<e.id<<" "<<e.name<<" "<<e.age<<std::endl; in operator <<() 77 struct age{}; struct 90 tag<age>, 91 BOOST_MULTI_INDEX_MEMBER(employee,int,age)>, 104 employee_set,age>::type employee_set_by_age; 136 BOOST_CHECK( i->age == 50 ); in test_multi_index_container()
|
/third_party/boost/libs/hana/test/concept/struct/ |
D | at_key.cpp | 18 (int, age) 28 int& age = hana::at_key(john, BOOST_HANA_STRING("age")); in main() local 32 age = 99; in main() 36 BOOST_HANA_RUNTIME_CHECK(john.age == 99); in main() 45 int const& age = hana::at_key(const_john, BOOST_HANA_STRING("age")); in main() local 49 john.age = 99; in main() 53 BOOST_HANA_RUNTIME_CHECK(age == 99); in main()
|
/third_party/jerryscript/tests/jerry/ |
D | object-literal.js | 18 age:50, property 28 assert (person.age === 50); 37 x.age = 40; 38 assert (x.age === 40); 39 assert (person.age === 40); 44 john.age = 40; 49 assert (person.age === john.age);
|
/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/ |
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes04.ts | 5 age: number; property 18 return {name: "myName", age: 22, color: "red"}; 22 return {name: "myName", age: 27}; 29 age: number; property 49 return {name: "myName", age: 22, color: "red"}; 53 return {name: "myName", age: 27};
|
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
D | EGL_EXT_buffer_age.txt | 64 This extension lets applications query the age of the back buffer 67 either be reported as invalid (has an age of 0) or it may be 71 Once the application has queried the buffer age, the age of 95 knowing the age of the buffer they know how to efficiently repair 153 Querying EGL_BUFFER_AGE_EXT returns the age of the color 156 under certain conditions described below, use this age to 172 * The current back buffer's age is set to 1. 174 their age was previously greater than 0. 176 For the purposes of buffer age tracking, a buffer's content 177 is considered defined when its age is a value greater than 0. [all …]
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_buffer_age.txt | 64 This extension lets applications query the age of the back buffer 67 either be reported as invalid (has an age of 0) or it may be 71 Once the application has queried the buffer age, the age of 95 knowing the age of the buffer they know how to efficiently repair 153 Querying EGL_BUFFER_AGE_EXT returns the age of the color 156 under certain conditions described below, use this age to 172 * The current back buffer's age is set to 1. 174 their age was previously greater than 0. 176 For the purposes of buffer age tracking, a buffer's content 177 is considered defined when its age is a value greater than 0. [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | islamcal.cpp | 428 double age = moonAge(origin, status); in trueMonthStart() local 433 if (age >= 0) { in trueMonthStart() 437 age = moonAge(origin, status); in trueMonthStart() 441 } while (age >= 0); in trueMonthStart() 447 age = moonAge(origin, status); in trueMonthStart() 451 } while (age < 0); in trueMonthStart() 474 double age = 0; in moonAge() local 481 return age; in moonAge() 486 age = gIslamicCalendarAstro->getMoonAge(); in moonAge() 490 age = age * 180 / CalendarAstronomer::PI; in moonAge() [all …]
|
/third_party/json/test/src/ |
D | unit-udt_macro.cpp | 43 int age = 0; member in persons::person_with_private_data 49 return name == rhs.name && age == rhs.age && metadata == rhs.metadata; in operator ==() 55 , age(age_) in person_with_private_data() 59 NLOHMANN_DEFINE_TYPE_INTRUSIVE(person_with_private_data, age, name, metadata) 66 int age = 0; member in persons::person_without_private_data_1 71 return name == rhs.name && age == rhs.age && metadata == rhs.metadata; in operator ==() 77 , age(age_) in person_without_private_data_1() 81 NLOHMANN_DEFINE_TYPE_INTRUSIVE(person_without_private_data_1, age, name, metadata) 88 int age = 0; member in persons::person_without_private_data_2 93 return name == rhs.name && age == rhs.age && metadata == rhs.metadata; in operator ==() [all …]
|
/third_party/boost/libs/multi_index/example/ |
D | basic.cpp | 33 int age; member 35 employee(int id_,std::string name_,int age_):id(id_),name(name_),age(age_){} in employee() 39 os<<e.id<<" "<<e.name<<" "<<e.age<<std::endl; in operator <<() 48 struct age{}; struct 68 tag<age>, BOOST_MULTI_INDEX_MEMBER(employee,int,age)> > 115 print_out_by<age>(es); in main()
|
/third_party/boost/libs/hana/example/ |
D | struct.mcd.tag_dispatching.cpp | 26 int age; member 31 constexpr auto age = hana::string_c<'a', 'g', 'e'>; variable 41 make_pair(age, [](auto&& p) -> decltype(auto) { in apply() 42 return id(std::forward<decltype(p)>(p).age); in apply() 56 BOOST_HANA_RUNTIME_CHECK(hana::find(john, age) == hana::just(30)); in main() 61 hana::make_pair(age, 30) in main()
|