Home
last modified time | relevance | path

Searched refs:prependPath (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dprovenance.cpp170 std::optional<std::string> &&prependPath) { in Open() argument
172 if (prependPath) { in Open()
176 searchPath_.emplace_front(std::move(*prependPath)); in Open()
179 if (prependPath) { in Open()
H A Dprescan.cpp840 std::optional<std::string> prependPath; in FortranInclude() local
842 prependPath = DirectoryName(currentFile->path()); in FortranInclude()
845 allSources_.Open(path, error, std::move(prependPath))}; in FortranInclude()
H A Dpreprocessor.cpp586 std::optional<std::string> prependPath; in Directive() local
611 prependPath = DirectoryName(currentFile->path()); in Directive()
631 allSources_.Open(include, error, std::move(prependPath))}; in Directive()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dprovenance.h155 std::optional<std::string> &&prependPath = std::nullopt);