Home
last modified time | relevance | path

Searched defs:employee (Results 1 – 16 of 16) sorted by relevance

/third_party/boost/libs/multi_index/test/
Demployee.hpp30 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/
Dmulti_index_container.cpp39 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/
Dadt_attribute_proxy.cpp19 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
Dadapt_struct.cpp77 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/
Dn2550_find_if.cpp15 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/
Dast.hpp20 struct employee struct
22 int age;
23 std::string forename;
24 std::string surname;
25 double salary;
Demployee_def.hpp33 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/
Demployee.cpp30 struct employee struct
45 BOOST_FUSION_ADAPT_STRUCT(client::ast::employee,
65 x3::rule<class employee, ast::employee> const employee = "employee"; variable
Derror_handling.cpp53 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
Dannotation.cpp52 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/
Dbasic.cpp29 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/
Ddoc_multi_index.cpp38 struct employee struct
43 employee( int id_ in employee() argument
/third_party/boost/libs/spirit/example/karma/
Dreorder_struct.cpp22 struct employee struct
24 std::string surname;
25 std::string forename;
26 int age;
50 client::employee,
/third_party/boost/libs/spirit/example/qi/
Dreorder_struct.cpp23 struct employee struct
25 std::string surname;
49 client::employee,
Demployee.cpp37 struct employee struct
53 client::employee,
/third_party/typescript/tests/baselines/reference/
DtemplateLiteralsAndDecoratorMetadata.js5 greeting: `boss` | `employee` = `employee`; //template literals on this line cause the issue field in Greeter