Home
last modified time | relevance | path

Searched refs:Student (Results 1 – 19 of 19) sorted by relevance

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/type_guard_functions/
Dtype_guard_functions_1.ts24 class Student { class
42 function isTeacher(obj: Student | Teacher): obj is Teacher {
45 function printInfo(obj: Student | Teacher) {
62 let ss: Student = new Student("caihuaStudent", 20);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/class_declarations/class_heritage_specification/
Dclass_heritage_specification_6.ts33 class Student extends Person { class
39 let stu1: Student = new Student("xiao", 18, "001");
/third_party/libabigail/tests/data/test-abicompat/
Dtest7-fn-changed-report-1.txt4 function void print(const Student):
5 parameter 1 of type 'const Student' has sub-type changes:
6 in unqualified underlying type 'struct Student':
Dtest7-fn-changed-report-2.txt4 function void print(const Student):
5 parameter 1 of type 'const Student' has sub-type changes:
6 in unqualified underlying type 'struct Student' at test7-fn-changed-libapp-v1.h:3:1:
Dtest7-fn-changed-report-0.txt12 [C] 'function void print(const Student)' has some indirect sub-type changes:
13 parameter 1 of type 'const Student' has sub-type changes:
14 in unqualified underlying type 'struct Student':
Dtest7-fn-changed-libapp-v0.h3 struct Student struct
9 void print (const struct Student); argument
Dtest7-fn-changed-libapp-v1.h3 struct Student struct
10 void print (const struct Student); argument
Dtest7-fn-changed-app.c9 struct Student s = {7, "foo"}; in main()
Dtest7-fn-changed-libapp-v0.c12 void print (const struct Student s) in print()
Dtest7-fn-changed-libapp-v1.c11 void print (const struct Student s) in print()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/grammar/ambients/
Dambient_2.ts26 declare class Student { class
32 let s1: Student = {
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/ambients/ambient_declarations/Ambient_Class_Declarations/
DAmbient_Class_Declarations.ts25 declare class Student { class
31 let s1 :Student ={
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/object_types/constructor_types/
Dconstructor_types_2.ts37 class Student extends Person { class
48 let testClass1: new (name: string, age: number) => Person = Student;
/third_party/python/Doc/howto/
Dsorting.rst84 >>> class Student:
93 ... Student('john', 'A', 15),
94 ... Student('jane', 'B', 12),
95 ... Student('dave', 'B', 10),
334 >>> Student.__lt__ = lambda self, other: self.age < other.age
/third_party/python/Doc/library/
Dstruct.rst364 >>> Student = namedtuple('Student', 'name serialnum school gradelevel')
365 >>> Student._make(unpack('<10sHHb', record))
366 Student(name=b'raymond ', serialnum=4658, school=264, gradelevel=8)
Dtyping.rst2043 class Student(NamedTuple):
2046 get_type_hints(Student) == {'name': str}
2047 get_type_hints(Student, include_extras=False) == {'name': str}
2048 get_type_hints(Student, include_extras=True) == {
Dfunctools.rst267 class Student:
/third_party/node/doc/contributing/
Dwriting-and-running-benchmarks.md580 [t-test]: https://en.wikipedia.org/wiki/Student%27s_t-test#Equal_or_unequal_sample_sizes%2C_unequal…
/third_party/python/Doc/whatsnew/
D3.2.rst810 class Student: