Searched refs:Education (Results 1 – 1 of 1) sorted by relevance
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/ |
H A D | serialize.cpp | 38 class Education { class 40 Education(const std::string& school, double GPA) : school_(school), GPA_(GPA) {} in Education() function in Education 66 …Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), ed… in Dependent() 67 …rson(rhs), education_(0) { education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_)… in Dependent() 74 education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_); in operator =() 95 Education *education_; 141 … employees.back().AddDependent(Dependent("Lua YIP", 3, new Education("Happy Kindergarten", 3.5))); in main()
|