Searched refs:NewPrefix (Results 1 - 7 of 7) sorted by relevance

/external/llvm/utils/TableGen/
H A DOptParserEmitter.cpp127 unsigned NewPrefix = CurPrefix + 1; local
129 Twine(NewPrefix)).str())).second)
130 CurPrefix = NewPrefix;
/external/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp310 /// \p NewPrefix strings, if it was specified.
312 std::string &NewPrefix) {
318 NewPrefix = Split.second.str();
322 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
326 const std::string &NewPrefix) {
327 if (OldPrefix.empty() && NewPrefix.empty())
330 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
467 std::string OldPrefix, NewPrefix; local
468 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix);
482 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix);
311 getThinLTOOldAndNewPrefix(std::string &OldPrefix, std::string &NewPrefix) argument
324 getThinLTOOutputFile(const std::string &Path, const std::string &OldPrefix, const std::string &NewPrefix) argument
499 std::string OldPrefix, NewPrefix; local
[all...]
/external/llvm/include/llvm/Support/
H A DPath.h155 /// start with \a NewPrefix.
157 /// @param NewPrefix The path prefix to replace \a NewPrefix with.
160 const StringRef &NewPrefix);
/external/llvm/tools/gold/
H A Dgold-plugin.cpp1273 /// \p NewPrefix strings, if it was specified.
1275 std::string &NewPrefix) {
1280 NewPrefix = Split.second.str();
1284 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
1288 const std::string &NewPrefix) {
1289 if (OldPrefix.empty() && NewPrefix.empty())
1292 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
1409 std::string OldPrefix, NewPrefix; local
1410 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix);
1419 getThinLTOOutputFile(F.name, OldPrefix, NewPrefix);
1274 getThinLTOOldAndNewPrefix(std::string &OldPrefix, std::string &NewPrefix) argument
1286 getThinLTOOutputFile(const std::string &Path, const std::string &OldPrefix, const std::string &NewPrefix) argument
[all...]
/external/llvm/lib/Support/
H A DPath.cpp527 const StringRef &NewPrefix) {
528 if (OldPrefix.empty() && NewPrefix.empty())
536 if (OldPrefix.size() == NewPrefix.size()) {
537 std::copy(NewPrefix.begin(), NewPrefix.end(), Path.begin());
543 path::append(NewPath, NewPrefix);
/external/llvm/unittests/Support/
H A DPath.cpp978 SmallString<64> NewPrefix("/new");
983 path::replace_path_prefix(Path, OldPrefix, NewPrefix);
986 path::replace_path_prefix(Path, OldPrefix, NewPrefix);
992 path::replace_path_prefix(Path, EmptyPrefix, NewPrefix);
/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl6572 my $NewPrefix = $1;
6587 $Prefix = $NewPrefix; # increase prefix

Completed in 1573 milliseconds