Lines Matching defs:triple
36 getTargetIncludePaths(const llvm::Triple &triple) {
38 if (!triple.str().empty()) {
39 paths.push_back("/usr/include/" + triple.str());
40 if (!triple.getArchName().empty() ||
41 triple.getOSAndEnvironmentName().empty())
42 paths.push_back(("/usr/include/" + triple.getArchName() + "-" +
43 triple.getOSAndEnvironmentName())
63 const llvm::Triple &triple) {
78 if (triple.str().empty())
84 (posix_dir + triple.str() + "/c++/v1").str());
89 for (auto &path : getTargetIncludePaths(triple)) {
135 const FileSpecList &support_files, const llvm::Triple &triple) {
138 return CppModuleConfiguration::analyzeFile(file, triple);