Searched refs:MultiMap (Results 1 – 12 of 12) sorted by relevance
/third_party/boost/libs/concept_check/test/ |
D | stl_concept_check.cpp | 73 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/ |
D | virtualFileSystemWithWatch.ts | 125 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…
|
D | fourslashImpl.ts | 46 rangesByText?: ts.MultiMap<string, Range>;
|
/third_party/boost/libs/container/test/ |
D | scoped_allocator_usage_test.cpp | 143 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/ |
D | core.ts | 1410 …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) {
|
D | types.ts | 3905 /* @internal */ redirectTargetsMap: MultiMap<string, string>; 3908 /* @internal */ getFileIncludeReasons(): MultiMap<Path, FileIncludeReason>; 8069 getFileIncludeReasons(): MultiMap<Path, FileIncludeReason>;
|
D | utilities.ts | 6394 getSymlinkedDirectoriesByRealpath(): MultiMap<Path, string> | undefined; 6403 let symlinkedDirectoriesByRealpath: MultiMap<Path, string> | undefined;
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | cachingFileSystemInformation.ts | 19 …calledMaps: Record<CalledMapsWithSingleArg, MultiMap<string, true>> & Record<CalledMapsWithFiveArg…
|
/third_party/typescript/src/server/ |
D | editorServices.ts | 679 readonly realpathToScriptInfos: MultiMap<Path, ScriptInfo> | undefined; 2458 getSymlinkedProjects(info: ScriptInfo): MultiMap<Path, Project> | undefined { 2459 let projects: MultiMap<Path, Project> | undefined;
|
D | session.ts | 275 readonly symLinkedProjects: MultiMap<Path, Project>; 1452 let symLinkedProjects: MultiMap<Path, Project> | undefined;
|
/third_party/googletest/googletest/test/ |
D | googletest-printers-test.cc | 1095 TEST(PrintStlContainerTest, MultiMap) {
|
/third_party/typescript/src/services/ |
D | findAllReferences.ts | 703 …function getReferencesForNonModule(referencedFile: SourceFile, refFileMap: MultiMap<Path, FileIncl…
|