Searched refs:OptPath (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Support/ |
D | Process.cpp | 34 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() local 35 if (!OptPath.hasValue()) in FindInEnvPath() 40 SplitString(OptPath.getValue(), Dirs, EnvPathSeparatorStr); in FindInEnvPath()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Process.cpp | 34 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() local 35 if (!OptPath.hasValue()) in FindInEnvPath() 40 SplitString(OptPath.getValue(), Dirs, EnvPathSeparatorStr); in FindInEnvPath()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Process.cpp | 41 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() local 42 if (!OptPath.hasValue()) in FindInEnvPath() 47 SplitString(OptPath.getValue(), Dirs, EnvPathSeparatorStr); in FindInEnvPath()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
D | Process.cpp | 44 std::optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() local 45 if (!OptPath) in FindInEnvPath() 50 SplitString(*OptPath, Dirs, EnvPathSeparatorStr); in FindInEnvPath()
|
/external/clang/lib/Driver/ |
D | MSVCToolChain.cpp | 408 llvm::Optional<std::string> OptPath = llvm::sys::Process::GetEnv("PATH"); in getVisualStudioBinariesFolder() local 409 if (OptPath.hasValue()) { in getVisualStudioBinariesFolder() 412 llvm::SplitString(OptPath.getValue(), PathSegments, EnvPathSeparatorStr); in getVisualStudioBinariesFolder()
|