Home
last modified time | relevance | path

Searched defs:FooBar (Results 1 – 13 of 13) sorted by relevance

/third_party/boost/libs/assign/test/
Dptr_list_inserter.cpp42 struct FooBar : Foo struct
44 FooBar( int i ) : Foo(i) in FooBar() function
47 FooBar( int i, const char* ) in FooBar() function
/third_party/typescript/tests/baselines/reference/
DmoduleDuplicateIdentifiers.js49 var FooBar; variable
50 (function (FooBar) { argument
53 (function (FooBar) { argument
/third_party/typescript/tests/cases/compiler/
DmappedTypeIndexedAccess.ts14 type FooBar = { alias
26 let pair2: Pairs<FooBar>[keyof FooBar] = { variable
DcomputedTypesKeyofNoIndexSignatureType.ts13 type FooBar = { foo: "hello"; bar: "world"; }; alias
18 type FooBarKey = keyof FooBar; // "foo" | "bar" <-- OK alias
DmoduleDuplicateIdentifiers.ts13 export namespace FooBar { namespace
17 export namespace FooBar { // Shouldn't error namespace
DerrorMessagesIntersectionTypes02.ts9 interface FooBar extends Foo, Bar { interface
DerrorMessagesIntersectionTypes01.ts9 interface FooBar extends Foo, Bar { interface
DintersectionTypeNormalization.ts99 type FooBar = Foo & Bar; alias
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DdiscriminatedUnionInference.ts8 type FooBar<A> = Foo<A> | Bar<A>; alias
/third_party/googletest/googletest/test/
Dgoogletest-list-tests-unittest_.cc58 TEST(FooBar, Baz) { in TEST() argument
/third_party/python/Lib/unittest/test/
Dtest_program.py59 class FooBar(unittest.TestCase): class in Test_TestProgram
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes1.ts338 type FooBar = Foo2 | Bar2; alias
/third_party/python/Lib/test/
D_test_multiprocessing.py2825 class FooBar(object): class