/third_party/boost/libs/multi_index/test/ |
D | employee.hpp | 30 struct employee struct 37 employee(int id_,std::string name_,int age_,int ssn_): in employee() argument 41 employee(const employee& x): in employee() argument 45 employee(BOOST_RV_REF(employee) x): in employee() function 49 employee& operator=(BOOST_COPY_ASSIGN_REF(employee) x) in operator =() argument 58 employee& operator=(BOOST_RV_REF(employee) x) in operator =() argument 67 bool operator==(const employee& x)const in operator ==() argument 72 bool operator<(const employee& x)const in operator <() argument 77 bool operator!=(const employee& x)const{return !(*this==x);} in operator !=() argument 78 bool operator> (const employee& x)const{return x<*this;} in operator >() argument [all …]
|
/third_party/boost/libs/assign/test/ |
D | multi_index_container.cpp | 39 struct employee struct 45 employee(int id_,std::string name_,int age_):id(id_),name(name_),age(age_){} in employee() argument 47 bool operator==(const employee& x)const in operator ==() argument 52 bool operator<(const employee& x)const in operator <() argument 57 bool operator!=(const employee& x)const{return !(*this==x);} in operator !=() argument 58 bool operator> (const employee& x)const{return x<*this;} in operator >() argument 59 bool operator>=(const employee& x)const{return !(*this<x);} in operator >=() argument 60 bool operator<=(const employee& x)const{return !(x<*this);} in operator <=() argument 64 bool operator()(int x,const employee& e2)const{return x<e2.id;} in operator ()() argument
|
/third_party/boost/libs/fusion/test/sequence/ |
D | adt_attribute_proxy.cpp | 19 struct employee struct 22 Name name; 23 Age age; 28 set_name(OtherName const& n) in set_name() 35 set_age(OtherAge const& a) in set_age() 40 Name& get_name() in get_name() 45 Name const& get_name()const in get_name() 69 (employee) (Name)(Age), argument
|
D | adapt_struct.cpp | 77 struct employee { struct 78 std::string name; 79 std::string nickname; 81 employee(std::string name, std::string nickname) in employee() argument
|
/third_party/boost/libs/local_function/example/ |
D | n2550_find_if.cpp | 15 struct employee { struct 17 explicit employee(const int& a_salary): salary(a_salary) {} in employee() argument 19 BOOST_TYPEOF_REGISTER_TYPE(employee) // Register for `NAME` below. in BOOST_TYPEOF_REGISTER_TYPE() argument
|
/third_party/boost/libs/spirit/example/x3/minimal/ |
D | ast.hpp | 20 struct employee struct 22 int age; 23 std::string forename; 24 std::string surname; 25 double salary;
|
D | employee_def.hpp | 33 x3::rule<class employee, ast::employee> const employee = "employee"; variable 50 parser::employee_type employee() in employee() function
|
/third_party/boost/libs/spirit/example/x3/ |
D | employee.cpp | 30 struct employee struct 45 BOOST_FUSION_ADAPT_STRUCT(client::ast::employee, 65 x3::rule<class employee, ast::employee> const employee = "employee"; variable
|
D | error_handling.cpp | 53 struct employee : x3::position_tagged struct 71 BOOST_FUSION_ADAPT_STRUCT(client::ast::employee, 114 x3::rule<employee_class, ast::employee> const employee = "employee"; variable
|
D | annotation.cpp | 52 struct employee : x3::position_tagged struct 70 BOOST_FUSION_ADAPT_STRUCT(client::ast::employee, 114 x3::rule<employee_class, ast::employee> const employee = "employee"; variable
|
/third_party/boost/libs/multi_index/example/ |
D | basic.cpp | 29 struct employee struct 35 employee(int id_,std::string name_,int age_):id(id_),name(name_),age(age_){} in employee() argument
|
/third_party/boost/libs/interprocess/example/ |
D | doc_multi_index.cpp | 38 struct employee struct 43 employee( int id_ in employee() argument
|
/third_party/boost/libs/spirit/example/karma/ |
D | reorder_struct.cpp | 22 struct employee struct 24 std::string surname; 25 std::string forename; 26 int age; 50 client::employee,
|
/third_party/boost/libs/spirit/example/qi/ |
D | reorder_struct.cpp | 23 struct employee struct 25 std::string surname; 49 client::employee,
|
D | employee.cpp | 37 struct employee struct 53 client::employee,
|
/third_party/typescript/tests/baselines/reference/ |
D | templateLiteralsAndDecoratorMetadata.js | 5 greeting: `boss` | `employee` = `employee`; //template literals on this line cause the issue field in Greeter
|