/third_party/skia/third_party/externals/angle2/extensions/ |
H A D | EGL_ANGLE_software_display.txt | 11 John Bauman 16 John Bauman, Google Inc. (jbauman 'at' chromium.org)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | templateLiteralTypes1.types | 558 >obj2 : { readonly name: "John"; readonly age: 42; readonly cars: readonly [{ readonly make: "Ford"; readonly age: 10; }, { readonly make: "Trabant"; readonly age: 35; }]; }
559 >{ name: 'John', age: 42, cars: [ { make: 'Ford', age: 10 }, { make: 'Trabant', age: 35 } ]} as const : { readonly name: "John"; readonly age: 42; readonly cars: readonly [{ readonly make: "Ford"; readonly age: 10; }, { readonly make: "Trabant"; readonly age: 35; }]; }
560 >{ name: 'John', age: 42, cars: [ { make: 'Ford', age: 10 }, { make: 'Trabant', age: 35 } ]} : { readonly name: "John"; readonly age: 42; readonly cars: readonly [{ readonly make: "Ford"; readonly age: 10; }, { readonly make: "Trabant"; readonly age: 35; }]; }
562 name: 'John',
563 >name : "John"
564 >'John' : "John"
595 >obj2 : { readonly name: "John"; readonl [all...] |
/third_party/elfutils/ |
H A D | AUTHORS | 48 John M Mellor-Crummey 49 John Ogness
|
/third_party/glib/patch/ |
H A D | backport-gmessages-Add-missing-trailing-newline-in-fallback-log-hander.patch | 2 From: John Lindgren <john@jlindgren.net>
|
/third_party/skia/third_party/externals/swiftshader/ |
H A D | CONTRIBUTORS.txt | 21 John Bauman <jbauman@google.com>
23 John Sheu <sheu@google.com>
|
/third_party/skia/third_party/externals/libpng/contrib/conftest/ |
H A D | s_read.dfa | 4 # Author: John Bowler 5 # Copyright: (c) John Bowler, 2013
|
H A D | s_write.dfa | 4 # Author: John Bowler 5 # Copyright: (c) John Bowler, 2013
|
H A D | simple.dfa | 4 # Author: John Bowler 5 # Copyright: (c) John Bowler, 2013
|
H A D | write.dfa | 4 # Author: John Bowler 5 # Copyright: (c) John Bowler, 2013
|
/third_party/typescript/tests/issues_cookbook_tests/pages/cookbook/ |
H A D | 5.17.ets | 15 name: 'John',
44 let person_right = new Person_right('John', 30, '***@example.com', '18*********');
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/5.2/named_and_anonymous_tuple_elements/ |
H A D | anonymous_tuple_elements_1.ts | 28 const person: Person = ['John', 25]; 32 Assert.equal(name, 'John');
|
H A D | anonymous_tuple_elements_2.ts | 28 const person: Person = ['John', 25]; 32 Assert.equal(name, 'John');
|
H A D | anonymous_tuple_elements_3.ts | 28 const person: Person = ['John', 25]; 32 Assert.equal(name, 'John');
|
H A D | anonymous_tuple_elements_4.ts | 28 const person: Person = ['John', 25]; 32 Assert.equal(name, 'John');
|
H A D | anonymous_tuple_elements_7.ts | 28 const person: Person = ['John', 25, 'gaming', 'reading']; 32 Assert.equal(name, 'John');
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/identifiers/ |
H A D | name_space.ts | 34 Assert.equal(person.name, "John");
39 name: "John",
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-funcs/ |
H A D | arkts-no-ctor-signatures-funcs-3-error.ets | 36 const person = createPerson(Person, 'John', 30);
37 console.log(person.name); // John
|
H A D | arkts-no-ctor-signatures-funcs-3-ok.ets | 41 const person = createPerson(Impersonizer, 'John', 30);
42 console.log(person.name); // John
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-type/ |
H A D | arkts-no-ctor-signatures-type-3-ok.ets | 34 let person = new Person('John', 30)
35 person.sayHello() // Hello, my name is John
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-destruct-decls/ |
H A D | arkts-no-destruct-decls-4-error.ets | 32 yourName: "John",
44 console.log(yourName); // John
|
H A D | arkts-no-destruct-decls-4-ok.ets | 32 yourName: "John",
44 console.log(yourName); // John
|
H A D | arkts-no-destruct-decls-7-ok.ets | 24 NameInfo: "John",
33 console.log(NameInfo); // John
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-intersection-types/ |
H A D | arkts-no-intersection-types-1-error.ets | 23 const person: Person = {name:'John', age:25};
25 const personEmployee: PersonEmployee = { name: 'John', age: 25, id: 1, department: 'IT' };
|
H A D | arkts-no-intersection-types-2-ok.ets | 30 const person: Person = { name: 'John', age: 25 }; 32 const personEmployee: PersonEmployee = { name: 'John', age: 25, id: 1, department: 'IT' };
|
/third_party/typescript/tests/cases/conformance/ |
H A D | inferFromBindingPattern.ts | 35 const john = selectJohn();
36 const [personAgain, nufinspecial] = john;
|