Home
last modified time | relevance | path

Searched refs:MultiMap (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/libs/concept_check/test/
Dstl_concept_check.cpp73 typedef std::multimap<int,int> MultiMap; in main() typedef
87 function_requires< SortedAssociativeContainer<MultiMap> >(); in main()
88 function_requires< MultipleAssociativeContainer<MultiMap> >(); in main()
89 function_requires< PairAssociativeContainer<MultiMap> >(); in main()
/third_party/typescript/src/harness/
DvirtualFileSystemWithWatch.ts125 function createWatcher<T>(map: MultiMap<Path, T>, path: Path, callback: T): FileWatcher {
163 …export function checkMap<T, U = undefined>(caption: string, actual: MultiMap<string, T>, expectedK…
164 …export function checkMap<T, U = undefined>(caption: string, actual: MultiMap<string, T>, expectedK…
165 …export function checkMap<T>(caption: string, actual: ESMap<string, T> | MultiMap<string, T>, expec…
168 actual: ESMap<string, T> | MultiMap<string, T>,
182 …assert.equal((actual as MultiMap<string, T>).get(name)!.length, count, `${caption}: Expected to be…
185 (actual as MultiMap<string, T>).get(name)!.map(valueMapper),
754 …private fsWatchCallback(map: MultiMap<Path, TestFsWatcher>, fullPath: string, eventName: "rename" …
1218 …function serializeMultiMap<T, U>(baseline: string[], caption: string, multiMap: MultiMap<string, T…
DfourslashImpl.ts46 rangesByText?: ts.MultiMap<string, Range>;
/third_party/boost/libs/container/test/
Dscoped_allocator_usage_test.cpp143 typedef multimap<alloc_int, alloc_int, std::less<alloc_int>, MapAllocator> MultiMap; typedef
445 if(!one_level_allocator_propagation_test<MultiMap>()) in main()
/third_party/typescript/src/compiler/
Dcore.ts1410 …export function arrayToMultiMap<K, V>(values: readonly V[], makeKey: (value: V) => K): MultiMap<K,…
1411 … V, U>(values: readonly V[], makeKey: (value: V) => K, makeValue: (value: V) => U): MultiMap<K, U>;
1412 …nly V[], makeKey: (value: V) => K, makeValue: (value: V) => V | U = identity): MultiMap<K, V | U> {
1472 export interface MultiMap<K, V> extends ESMap<K, V[]> { interface
1486 export function createMultiMap<K, V>(): MultiMap<K, V>;
1487 export function createMultiMap<V>(): MultiMap<string, V>;
1488 export function createMultiMap<K, V>(): MultiMap<K, V> {
1489 const map = new Map<K, V[]>() as MultiMap<K, V>;
1494 function multiMapAdd<K, V>(this: MultiMap<K, V>, key: K, value: V) {
1504 function multiMapRemove<K, V>(this: MultiMap<K, V>, key: K, value: V) {
Dtypes.ts3905 /* @internal */ redirectTargetsMap: MultiMap<string, string>;
3908 /* @internal */ getFileIncludeReasons(): MultiMap<Path, FileIncludeReason>;
8069 getFileIncludeReasons(): MultiMap<Path, FileIncludeReason>;
Dutilities.ts6394 getSymlinkedDirectoriesByRealpath(): MultiMap<Path, string> | undefined;
6403 let symlinkedDirectoriesByRealpath: MultiMap<Path, string> | undefined;
/third_party/typescript/src/testRunner/unittests/tsserver/
DcachingFileSystemInformation.ts19 …calledMaps: Record<CalledMapsWithSingleArg, MultiMap<string, true>> & Record<CalledMapsWithFiveArg…
/third_party/typescript/src/server/
DeditorServices.ts679 readonly realpathToScriptInfos: MultiMap<Path, ScriptInfo> | undefined;
2458 getSymlinkedProjects(info: ScriptInfo): MultiMap<Path, Project> | undefined {
2459 let projects: MultiMap<Path, Project> | undefined;
Dsession.ts275 readonly symLinkedProjects: MultiMap<Path, Project>;
1452 let symLinkedProjects: MultiMap<Path, Project> | undefined;
/third_party/googletest/googletest/test/
Dgoogletest-printers-test.cc1095 TEST(PrintStlContainerTest, MultiMap) {
/third_party/typescript/src/services/
DfindAllReferences.ts703 …function getReferencesForNonModule(referencedFile: SourceFile, refFileMap: MultiMap<Path, FileIncl…