Lines Matching refs:IFRHS

315                             const InterfaceFile *IFRHS) {  in findDifferences()  argument
317 if (IFLHS->getInstallName() != IFRHS->getInstallName()) in findDifferences()
322 IFRHS->getInstallName()), in findDifferences()
325 if (IFLHS->getCurrentVersion() != IFRHS->getCurrentVersion()) in findDifferences()
330 rhs, IFRHS->getCurrentVersion()), in findDifferences()
332 if (IFLHS->getCompatibilityVersion() != IFRHS->getCompatibilityVersion()) in findDifferences()
337 rhs, IFRHS->getCompatibilityVersion()), in findDifferences()
339 if (IFLHS->getSwiftABIVersion() != IFRHS->getSwiftABIVersion()) in findDifferences()
344 rhs, IFRHS->getSwiftABIVersion()), in findDifferences()
346 if (IFLHS->isInstallAPI() != IFRHS->isInstallAPI()) in findDifferences()
349 DiffScalarVal<bool, AD_Diff_Scalar_Bool>(rhs, IFRHS->isInstallAPI()), in findDifferences()
352 if (IFLHS->isTwoLevelNamespace() != IFRHS->isTwoLevelNamespace()) in findDifferences()
356 rhs, IFRHS->isTwoLevelNamespace()), in findDifferences()
360 IFRHS->isApplicationExtensionSafe()) in findDifferences()
365 rhs, IFRHS->isApplicationExtensionSafe()), in findDifferences()
368 if (IFLHS->reexportedLibraries() != IFRHS->reexportedLibraries()) in findDifferences()
370 IFRHS->reexportedLibraries(), in findDifferences()
373 if (IFLHS->allowableClients() != IFRHS->allowableClients()) in findDifferences()
375 IFRHS->allowableClients(), in findDifferences()
378 if (IFLHS->umbrellas() != IFRHS->umbrellas()) in findDifferences()
379 Output.push_back(recordDifferences(IFLHS->umbrellas(), IFRHS->umbrellas(), in findDifferences()
382 if (!checkSymbolEquality(IFLHS->symbols(), IFRHS->symbols())) in findDifferences()
384 recordDifferences(IFLHS->symbols(), IFRHS->symbols(), "Symbols")); in findDifferences()
386 if (IFLHS->documents() != IFRHS->documents()) { in findDifferences()
393 auto Pair = llvm::find_if(IFRHS->documents(), [&](const auto &DocRHS) { in findDifferences()
397 if (Pair != IFRHS->documents().end()) { in findDifferences()
411 for (auto DocRHS : IFRHS->documents()) { in findDifferences()
547 const auto *IFRHS = &(FileRHS->getInterfaceFile()); in compareFiles() local
548 if (*IFLHS == *IFRHS) in compareFiles()
551 << std::string(IFRHS->getPath().data()) << "\n\n"; in compareFiles()
552 std::vector<DiffOutput> Diffs = findDifferences(IFLHS, IFRHS); in compareFiles()