/third_party/typescript/tests/baselines/reference/ |
H A D | moduleDuplicateIdentifiers.js | 13 export namespace FooBar { 17 export namespace FooBar { // Shouldn't error 46 exports.Utensils = exports.Pot = exports.Kettle = exports.FooBar = exports.Foo = void 0;
49 var FooBar;
variable 50 (function (FooBar) {
51 FooBar.member1 = 2;
52 })(FooBar = exports.FooBar || (exports.FooBar = {}));
53 (function (FooBar) {
[all...] |
H A D | mappedTypeIndexedAccess.js | 13 type FooBar = { 19 let pair1: Pair<FooBar> = { 25 let pair2: Pairs<FooBar>[keyof FooBar] = {
|
H A D | computedTypesKeyofNoIndexSignatureType.js | 14 type FooBar = { foo: "hello"; bar: "world"; }; 16 type WithIndex = Compute<FooBar & IndexObject>; // { [x: string]: {}; foo: "hello"; bar: "world"; } <-- OK 19 type FooBarKey = keyof FooBar; // "foo" | "bar" <-- OK
|
H A D | errorMessagesIntersectionTypes01.js | 10 interface FooBar extends Foo, Bar { 15 let fooBar: FooBar = mixBar({
|
H A D | errorMessagesIntersectionTypes02.js | 10 interface FooBar extends Foo, Bar { 15 let fooBar: FooBar = mixBar({
|
H A D | discriminatedUnionInference.js | 7 type FooBar<A> = Foo<A> | Bar<A>; 9 type InferA<T> = T extends FooBar<infer A> ? A : never;
|
H A D | intersectionTypeNormalization.js | 100 type FooBar = Foo & Bar; 103 const val = so as FooBar;
|
H A D | conditionalTypes1.js | 336 type FooBar = Foo2 | Bar2; 337 declare interface ExtractFooBar<FB extends FooBar> { } 340 [K in keyof Struct]: Struct[K] extends FooBar ? ExtractFooBar<Struct[K]> : Struct[K]; 706 type FooBar = Foo2 | Bar2;
707 declare interface ExtractFooBar<FB extends FooBar> {
710 [K in keyof Struct]: Struct[K] extends FooBar ? ExtractFooBar<Struct[K]> : Struct[K];
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | value_enum.rs | 188 FooBar, in multi_word_is_renamed_kebab() 200 arg: ArgChoice::FooBar in multi_word_is_renamed_kebab() 210 assert!(Opt::try_parse_from(["", "FooBar"]).is_err()); in multi_word_is_renamed_kebab() 218 FooBar, in variant_with_defined_casing() 229 arg: ArgChoice::FooBar in variant_with_defined_casing() 233 assert!(Opt::try_parse_from(["", "FooBar"]).is_err()); in variant_with_defined_casing() 241 FooBar, in casing_is_propagated_from_parent() 252 arg: ArgChoice::FooBar in casing_is_propagated_from_parent() 256 assert!(Opt::try_parse_from(["", "FooBar"]).is_err()); in casing_is_propagated_from_parent() 265 FooBar, in casing_propagation_is_overridden() [all...] |
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/ |
H A D | generated_code_test.rb | 17 m2 = FooBar::TestImportedMessage.new()
|
/third_party/protobuf/ruby/tests/ |
H A D | generated_code_proto2_test.rb | 18 FooBar::Proto2::TestImportedMessage.new
|
H A D | generated_code_test.rb | 20 FooBar::TestImportedMessage.new
|
/third_party/python/Lib/unittest/test/ |
H A D | test_program.py | 59 class FooBar(unittest.TestCase): class in Test_TestProgram 77 """Test loader that returns a suite containing FooBar.""" 80 [self.loadTestsFromTestCase(Test_TestProgram.FooBar)]) 84 [self.loadTestsFromTestCase(Test_TestProgram.FooBar)])
|
/third_party/googletest/googletest/test/ |
H A D | googletest-list-tests-unittest_.cc | 52 TEST(FooBar, Baz) {} in TEST()
|
/third_party/json/tests/src/ |
H A D | unit-regression2.cpp | 207 class FooBar class 213 inline void from_json(const nlohmann::json& j, FooBar& fb) in from_json() 835 std::vector<FooBar> foo;
|
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 2893 class FooBar(object): class 2915 MyManager.register('Foo', callable=FooBar) 2916 MyManager.register('Bar', callable=FooBar, exposed=('f', '_h'))
|
H A D | test_enum.py | 2650 class FooBar(Enum): class in TestSpecial.test_dynamic_members_with_static_methods.Foo
|