Searched refs:Employee (Results 1 – 16 of 16) sorted by relevance
/external/libchrome/mojo/public/interfaces/bindings/tests/ |
D | versioning_test_client.mojom | 16 struct Employee { 23 AddEmployee(Employee employee) => (bool success); 26 => (Employee? employee, [MinVersion=1] array<uint8>? finger_print);
|
D | versioning_test_service.mojom | 22 struct Employee { 30 AddEmployee(Employee employee) => (bool success); 33 => (Employee? employee, [MinVersion=1] array<uint8>? finger_print);
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | versioning_apptest.cc | 39 EmployeePtr employee(Employee::New()); in TEST_F() 53 EmployeePtr new_employee(Employee::New()); in TEST_F()
|
D | versioning_test_service.cc | 41 info->employee = Employee::New(); in HumanResourceDatabaseImpl()
|
/external/dokka/test/ |
D | playground.kt | 45 data class Employee(val name: ClassWithConstructor, val age: Int) {} class
|
/external/catch2/docs/ |
D | test-fixtures.md | 23 TEST_CASE_METHOD(UniqueTestsFixture, "Create Employee/No Name", "[create]") { 26 TEST_CASE_METHOD(UniqueTestsFixture, "Create Employee/Normal", "[create]") {
|
/external/libchrome/mojo/public/tools/bindings/ |
D | README.md | 296 struct Employee { 324 struct Employee { 529 struct Employee { 538 struct Employee { 570 struct Employee { 604 AddEmployee(Employee employee) => (bool success); 605 QueryEmployee(uint64 id) => (Employee? employee); 610 AddEmployee(Employee employee) => (bool success); 613 => (Employee? employee,
|
/external/python/cpython3/Lib/test/ |
D | test_typing.py | 54 class Employee: class 58 class Manager(Employee): 62 class Founder(Employee): 78 issubclass(Employee, Any) 80 issubclass(Any, Employee) 120 issubclass(Employee, NoReturn) 122 issubclass(NoReturn, Employee) 221 TypeVar('X', str, float, bound=Employee) 270 t = Union[Employee] 271 self.assertIs(t, Employee) [all …]
|
/external/python/cpython3/Doc/library/ |
D | typing.rst | 185 def notify_by_email(employees: Sequence[Employee], 917 class Employee(NamedTuple): 923 Employee = collections.namedtuple('Employee', ['name', 'id']) 927 class Employee(NamedTuple): 931 employee = Employee('Guido') 944 class Employee(NamedTuple): 950 return f'<Employee {self.name}, id={self.id}>' 954 Employee = NamedTuple('Employee', [('name', str), ('id', int)])
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | README.md | 555 struct Employee { 568 class Employee; 570 using EmployeePtr = mojo::StructPtr<Employee>; 572 class Employee { 576 Employee(); 580 Employee(int64_t id, const std::string& username, Department department); 586 bool Equals(const Employee& other); 609 mojom::EmployeePtr e1 = mojom::Employee::New(); 618 auto e1 = mojom::Employee::New(42, "mojo", mojom::Department::kEngineering); 625 AddEmployee(Employee e); [all …]
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 257 Do not simplify arguments to `typing.Union`. Now `Union[Manager, Employee]` 258 is not simplified to `Employee` at runtime. Such simplification previously
|
D | 3.8.0a1.rst | 4659 Do not simplify arguments to `typing.Union`. Now `Union[Manager, Employee]` 4660 is not simplified to `Employee` at runtime. Such simplification previously
|
/external/python/cpython2/Doc/tutorial/ |
D | classes.rst | 675 class Employee: 678 john = Employee() # Create an empty employee record
|
/external/python/cpython3/Doc/tutorial/ |
D | classes.rst | 743 class Employee: 746 john = Employee() # Create an empty employee record
|
/external/dnsmasq/ |
D | dnsmasq.conf.example | 513 #ptr-record=_http._tcp.dns-sd-services,"New Employee Page._http._tcp.dns-sd-services"
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 551 ``Employee(name='jones', title='programmer')``.
|