reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-cxxfilt/llvm-cxxfilt.cpp
   63     if (DecoratedStr[0] == '_')
   64       ++DecoratedStr;
   65   size_t DecoratedLength = strlen(DecoratedStr);
   70       ((DecoratedLength >= 2 && strncmp(DecoratedStr, "_Z", 2) == 0) ||
   71        (DecoratedLength >= 4 && strncmp(DecoratedStr, "___Z", 4) == 0)))
   72     Undecorated = itaniumDemangle(DecoratedStr, nullptr, nullptr, &Status);
   75       (DecoratedLength > 6 && strncmp(DecoratedStr, "__imp_", 6) == 0)) {
   77     Undecorated = itaniumDemangle(DecoratedStr + 6, nullptr, nullptr, &Status);