/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/type_guard_functions/ |
D | type_guard_functions_1.ts | 24 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/ |
D | class_heritage_specification_6.ts | 33 class Student extends Person { class 39 let stu1: Student = new Student("xiao", 18, "001");
|
/third_party/libabigail/tests/data/test-abicompat/ |
D | test7-fn-changed-report-1.txt | 4 function void print(const Student): 5 parameter 1 of type 'const Student' has sub-type changes: 6 in unqualified underlying type 'struct Student':
|
D | test7-fn-changed-report-2.txt | 4 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:
|
D | test7-fn-changed-report-0.txt | 12 [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':
|
D | test7-fn-changed-libapp-v0.h | 3 struct Student struct 9 void print (const struct Student); argument
|
D | test7-fn-changed-libapp-v1.h | 3 struct Student struct 10 void print (const struct Student); argument
|
D | test7-fn-changed-app.c | 9 struct Student s = {7, "foo"}; in main()
|
D | test7-fn-changed-libapp-v0.c | 12 void print (const struct Student s) in print()
|
D | test7-fn-changed-libapp-v1.c | 11 void print (const struct Student s) in print()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/grammar/ambients/ |
D | ambient_2.ts | 26 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/ |
D | Ambient_Class_Declarations.ts | 25 declare class Student { class 31 let s1 :Student ={
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/object_types/constructor_types/ |
D | constructor_types_2.ts | 37 class Student extends Person { class 48 let testClass1: new (name: string, age: number) => Person = Student;
|
/third_party/python/Doc/howto/ |
D | sorting.rst | 84 >>> 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/ |
D | struct.rst | 364 >>> Student = namedtuple('Student', 'name serialnum school gradelevel') 365 >>> Student._make(unpack('<10sHHb', record)) 366 Student(name=b'raymond ', serialnum=4658, school=264, gradelevel=8)
|
D | typing.rst | 2043 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) == {
|
D | functools.rst | 267 class Student:
|
/third_party/node/doc/contributing/ |
D | writing-and-running-benchmarks.md | 580 [t-test]: https://en.wikipedia.org/wiki/Student%27s_t-test#Equal_or_unequal_sample_sizes%2C_unequal…
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 810 class Student:
|