/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | unicode.rs | 465 feature = "unicode-age", in canonical_prop() 477 feature = "unicode-age", in canonical_prop() 522 feature = "unicode-age", in canonical_value() 534 feature = "unicode-age", 570 /// If the given age value isn't valid or if the data isn't available, then an 573 #[cfg(not(feature = "unicode-age"))] in ages() 579 #[cfg(feature = "unicode-age")] in ages() 581 use crate::unicode_tables::age; in ages() 584 ("V1_1", age::V1_1), in ages() 585 ("V2_0", age in ages() [all...] |
/third_party/json/tests/src/ |
H A D | unit-udt_macro.cpp | 22 int age = 0; member in persons::person_with_private_data 28 return name == rhs.name && age == rhs.age && metadata == rhs.metadata; in operator ==() 34 , age(age_) in person_with_private_data() 38 NLOHMANN_DEFINE_TYPE_INTRUSIVE(person_with_private_data, age, name, metadata) 45 int age = 0; member in persons::person_with_private_data_2 51 return name == rhs.name && age == rhs.age && metadata == rhs.metadata; in operator ==() 57 , age(age_) in person_with_private_data_2() 67 return age; in getAge() 81 int age = 0; global() member in persons::person_without_private_data_1 103 int age = 0; global() member in persons::person_without_private_data_2 125 int age = 0; global() member in persons::person_without_private_data_3 [all...] |
H A D | unit-udt.cpp | 35 struct age struct 38 age(int rhs = 0) : m_val(rhs) {} in age() function 55 age m_age{}; 59 person(const age& a, name n, const country& c) : m_age(a), m_name(std::move(n)), m_country(c) {} in person() 84 static void to_json(BasicJsonType& j, age a) in to_json() 117 j = BasicJsonType{{"age", p.m_age}, {"name", p.m_name}, {"country", p.m_country}}; in to_json() 136 static bool operator==(age lhs, age rhs) in operator ==() 173 static void from_json(const BasicJsonType& j, age& a) in from_json() 203 p.m_age = j["age"] in from_json() 272 const auto age = contact_json["person"]["age"].get<udt::age>(); global() variable 311 const udt::age age = contact_json["person"]["age"]; global() variable [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | object-literal.js | 18 age:50, 28 assert (person.age === 50); 29 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/icu/tools/unicode/c/genuts46/ |
H A D | genuts46.cpp | 116 getAgeIfAssigned(UChar32 c, UVersionInfo age) { in getAgeIfAssigned() argument 118 u_charAge(c, age); in getAgeIfAssigned() 120 age[0]=0; in getAgeIfAssigned() 121 age[1]=0; in getAgeIfAssigned() 122 age[2]=0; in getAgeIfAssigned() 123 age[3]=1; in getAgeIfAssigned() 125 memset(age, 0, 4); in getAgeIfAssigned() 290 UVersionInfo prevAge={ 1, 1, 0, 0 }, age; in main() local 331 // the character age change. in main() 332 getAgeIfAssigned(c, age); in main() [all...] |
/third_party/node/deps/npm/node_modules/http-cache-semantics/ |
H A D | index.js | 81 // TODO: When there is more than one value present for a given directive (e.g., two Expires header fields, multiple Cache-Control: max-age directives), 200 // contains a max-age response directive, or 203 this._rescc['max-age'] || 215 this._rescc['max-age'] || 237 if (requestCC['max-age'] && this.age() > requestCC['max-age']) { 255 requestCC['max-stale'] > this.age() - this.maxAge()); 335 const age = this.age(); [all...] |
/third_party/f2fs-tools/lib/ |
H A D | nls_utf8.c | 478 * Maximum age of any character in s. 485 int age = 0; 498 if (leaf_age <= data->maxage && leaf_age > age) 499 age = leaf_age; 502 return age; 508 * Minimum age of any character in s. 515 int age; 521 age = data->maxage; 527 if (leaf_age <= data->maxage && leaf_age < age) 528 age [all...] |
/third_party/json/docs/examples/ |
H A D | nlohmann_define_type_intrusive_with_default_explicit.cpp | 14 int age = -1; member in ns::person 19 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 26 nlohmann_json_j["age"] = nlohmann_json_t.age; in to_json() 34 nlohmann_json_t.age = nlohmann_json_j.value("age", nlohmann_json_default_obj.age); in from_json() 48 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_non_intrusive_with_default_explicit.cpp | 13 int age = -1; member 17 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 25 nlohmann_json_j["age"] = nlohmann_json_t.age; in to_json() 33 nlohmann_json_t.age = nlohmann_json_j.value("age", nlohmann_json_default_obj.age); in from_json() 46 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_intrusive_explicit.cpp | 14 int age = -1; member in ns::person 19 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 26 nlohmann_json_j["age"] = nlohmann_json_t.age; in to_json() 33 nlohmann_json_t.age = nlohmann_json_j.at("age"); in from_json() 47 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_non_intrusive_explicit.cpp | 13 int age; member 20 nlohmann_json_j["age"] = nlohmann_json_t.age; in to_json() 27 nlohmann_json_t.age = nlohmann_json_j.at("age"); in from_json() 40 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_intrusive_with_default_macro.cpp | 14 int age = -1; member in ns::person 19 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 22 NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(person, name, address, age) 35 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_intrusive_macro.cpp | 14 int age = -1; member in ns::person 19 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 22 NLOHMANN_DEFINE_TYPE_INTRUSIVE(person, name, address, age) 35 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | nlohmann_define_type_non_intrusive_with_default_macro.cpp | 13 int age = -1; member 17 : name(std::move(name_)), address(std::move(address_)), age(age_) in person() 21 NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(person, name, address, age) 33 json j2 = R"({"address": "742 Evergreen Terrace", "age": 40, "name": "Homer Simpson"})"_json; in main()
|
H A D | from_json__non_default_constructible.cpp | 12 : name(std::move(n)), address(std::move(a)), age(aa) in person() 17 int age; member 28 return {j.at("name"), j.at("address"), j.at("age")}; in from_json() 38 j["age"] = p.age; in to_json() 48 j["age"] = 60; in main() 52 std::cout << p.name << " (" << p.age << ") lives in " << p.address << std::endl; in main()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | emitArrowFunctionThisCapturing.js | 3 this.age = 10 12 this.age = 100; 20 _this.age = 10;
27 _this.age = 100;
|
H A D | emitArrowFunctionThisCapturingES6.js | 3 this.age = 10 12 this.age = 100; 19 this.age = 10;
26 this.age = 100;
|
H A D | typeInferenceWithExcessProperties.js | 19 age: 5, 24 age: function () { }, 44 age: 5
48 age: function () { }
|
H A D | genericInference2.js | 14 age: ko.observable(37) 17 var age_v = o.age(); // should be 'number' 26 age: ko.observable(37)
29 var age_v = o.age(); // should be 'number'
|
H A D | knockout.js | 14 age: ko.observable(37) 17 var age_v = o.age(); 28 age: ko.observable(37)
31 var age_v = o.age();
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
H A D | EGLBufferAgeTest.cpp | 106 // Query for buffer age 134 EGLint age = queryAge(surface); in TEST_P() local 135 // Should start with zero age and then flip to buffer count - which we don't know. in TEST_P() 136 if ((expectedAge == 0) && (age > 0)) in TEST_P() 138 expectedAge = age; in TEST_P() 140 EXPECT_EQ(age, expectedAge); in TEST_P() 191 EGLint age = 0; in TEST_P() local 196 age = queryAge(surface); in TEST_P() 197 if (age > 0) in TEST_P() 200 expectedColor = kColorSet[i - age]; in TEST_P() 325 EGLint age = queryAge(surface); TEST_P() local [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_sampler_view.c | 148 sv->age = tex->age; in svga_get_tex_sampler_view() 184 unsigned age = 0; in svga_validate_sampler_view() local 194 age = tex->age; in svga_validate_sampler_view() 204 if (v->age < tex->view_age[i]) in svga_validate_sampler_view() 214 v->age = age; in svga_validate_sampler_view()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | islamcal.cpp | 425 double age = moonAge(origin, status); in trueMonthStart() local 430 if (age >= 0) { in trueMonthStart() 434 age = moonAge(origin, status); in trueMonthStart() 438 } while (age >= 0); in trueMonthStart() 444 age = moonAge(origin, status); in trueMonthStart() 448 } while (age < 0); in trueMonthStart() 462 * Return the "age" of the moon at the given time; this is the difference 467 * @param time The time at which the moon's age is desired, 472 double age = 0; in moonAge() local 480 return age; in moonAge() [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | islamcal.cpp | 357 double age = moonAge(origin, status); in trueMonthStart() local 362 if (age >= 0) { in trueMonthStart() 366 age = moonAge(origin, status); in trueMonthStart() 370 } while (age >= 0); in trueMonthStart() 376 age = moonAge(origin, status); in trueMonthStart() 380 } while (age < 0); in trueMonthStart() 394 * Return the "age" of the moon at the given time; this is the difference 399 * @param time The time at which the moon's age is desired, 404 double age = 0; in moonAge() local 412 return age; in moonAge() 522 double age = moonAge(internalGetTime(), status); handleComputeFields() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | islamcal.cpp | 425 double age = moonAge(origin, status); in trueMonthStart() local 430 if (age >= 0) { in trueMonthStart() 434 age = moonAge(origin, status); in trueMonthStart() 438 } while (age >= 0); in trueMonthStart() 444 age = moonAge(origin, status); in trueMonthStart() 448 } while (age < 0); in trueMonthStart() 462 * Return the "age" of the moon at the given time; this is the difference 467 * @param time The time at which the moon's age is desired, 472 double age = 0; in moonAge() local 480 return age; in moonAge() [all...] |