Searched refs:NativePath (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyFile.cpp279 llvm::SmallString<256> NativePath; local
280 llvm::sys::path::native(Filename.str(), NativePath);
286 if (NativePath.find_first_of(" #${}^!") != StringRef::npos)
287 OS << '\"' << NativePath << '\"'; local
289 OS << NativePath; local
293 for (unsigned i = 0, e = NativePath.size(); i != e; ++i) {
294 if (NativePath[i] == '#') // Handle '#' the broken gcc way.
296 else if (NativePath[i] == ' ') { // Handle space correctly.
299 while (j > 0 && NativePath[--j] == '\\')
301 } else if (NativePath[
303 OS << NativePath[i]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp394 SmallString<128> NativePath;
395 sys::path::native(Path, NativePath);
396 if (!sys::path::is_separator(NativePath.back()))
397 NativePath += sys::path::get_separator();
398 return NativePath.c_str();

Completed in 156 milliseconds