Home
last modified time | relevance | path

Searched refs:BundlePath (Results 1 – 3 of 3) sorted by relevance

/external/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp119 SmallString<256> BundlePath(InputPath); in expandBundle() local
121 if (sys::fs::is_directory(BundlePath) && in expandBundle()
122 sys::path::extension(BundlePath) == ".dSYM") { in expandBundle()
124 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in expandBundle()
125 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; in expandBundle()
140 error(BundlePath, EC); in expandBundle()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp514 SmallString<256> BundlePath(InputPath); in expandBundle() local
516 sys::path::remove_dots(BundlePath); in expandBundle()
518 if (sys::fs::is_directory(BundlePath) && in expandBundle()
519 sys::path::extension(BundlePath) == ".dSYM") { in expandBundle()
521 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in expandBundle()
522 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; in expandBundle()
537 error(BundlePath, EC); in expandBundle()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
Ddsymutil.cpp370 SmallString<256> BundlePath(Input); in getInputs() local
371 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in getInputs()
372 if (!llvm::sys::fs::is_directory(BundlePath)) in getInputs()
380 llvm::sys::fs::directory_iterator DirIt(BundlePath, EC); in getInputs()