Lines Matching full:mappings
24 llvm::Expected<PathMappings> Mappings = parsePathMappings(RawMappings); in failedParse() local
25 if (!Mappings) { in failedParse()
26 consumeError(Mappings.takeError()); in failedParse()
63 // uneven mappings in TEST()
65 // mappings need to be absolute in TEST()
87 llvm::Expected<PathMappings> Mappings = parsePathMappings(RawMappings); in mapsProperly() local
88 if (!Mappings) in mapsProperly()
90 std::optional<std::string> MappedPath = doPathMapping(Orig, Dir, *Mappings); in mapsProperly()
142 // Path mappings with a windows-style client path and unix-style server path in TEST()
155 PathMappings Mappings; local
156 applyPathMappings(*Params, PathMapping::Direction::ClientToServer, Mappings);
170 auto Mappings = parsePathMappings("/home=/workarea"); local
171 ASSERT_TRUE(bool(Params) && bool(ExpectedParams) && bool(Mappings));
172 applyPathMappings(*Params, PathMapping::Direction::ClientToServer, *Mappings);
189 auto Mappings = local
191 ASSERT_TRUE(bool(Params) && bool(ExpectedParams) && bool(Mappings));
192 applyPathMappings(*Params, PathMapping::Direction::ServerToClient, *Mappings);
209 auto Mappings = parsePathMappings("/home=/workarea"); local
210 ASSERT_TRUE(bool(Params) && bool(ExpectedParams) && bool(Mappings));
211 applyPathMappings(*Params, PathMapping::Direction::ClientToServer, *Mappings);