Lines Matching refs:hsOpts
4506 const HeaderSearchOptions &hsOpts = getHeaderSearchOpts(); in getModuleHash() local
4512 if (!hsOpts.ModulesIgnoreMacros.empty()) { in getModuleHash()
4515 if (hsOpts.ModulesIgnoreMacros.count( in getModuleHash()
4524 code = hash_combine(code, hsOpts.Sysroot, in getModuleHash()
4525 hsOpts.ModuleFormat, in getModuleHash()
4526 hsOpts.UseDebugInfo, in getModuleHash()
4527 hsOpts.UseBuiltinIncludes, in getModuleHash()
4528 hsOpts.UseStandardSystemIncludes, in getModuleHash()
4529 hsOpts.UseStandardCXXIncludes, in getModuleHash()
4530 hsOpts.UseLibcxx, in getModuleHash()
4531 hsOpts.ModulesValidateDiagnosticOptions); in getModuleHash()
4532 code = hash_combine(code, hsOpts.ResourceDir); in getModuleHash()
4534 if (hsOpts.ModulesStrictContextHash) { in getModuleHash()
4535 hash_code SHPC = hash_combine_range(hsOpts.SystemHeaderPrefixes.begin(), in getModuleHash()
4536 hsOpts.SystemHeaderPrefixes.end()); in getModuleHash()
4537 hash_code UEC = hash_combine_range(hsOpts.UserEntries.begin(), in getModuleHash()
4538 hsOpts.UserEntries.end()); in getModuleHash()
4539 code = hash_combine(code, hsOpts.SystemHeaderPrefixes.size(), SHPC, in getModuleHash()
4540 hsOpts.UserEntries.size(), UEC); in getModuleHash()
4553 code = hash_combine(code, hsOpts.ModuleUserBuildPath); in getModuleHash()