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

Declarations

tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
   33   const char *GetName();

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
71163     result = (char *)(arg1)->GetName();
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
tools/lldb/source/API/SBTypeCategory.cpp
  203         ConstString(spec.GetName()), children_sp);
  206         ConstString(spec.GetName()), children_sp);
  230         ConstString(spec.GetName()), format_sp);
  233         ConstString(spec.GetName()), format_sp);
  255         ConstString(spec.GetName()), summary_sp);
  258         ConstString(spec.GetName()), summary_sp);
  280         ConstString(spec.GetName()), children_sp);
  283         ConstString(spec.GetName()), children_sp);
  368             llvm::StringRef::withNullAsEmpty(type_name.GetName())),
  372         ConstString(type_name.GetName()), format.GetSP());
  389         ConstString(type_name.GetName()));
  392         ConstString(type_name.GetName()));
  418         (const void *)ConstString(type_name.GetName()).GetCString();
  447             llvm::StringRef::withNullAsEmpty(type_name.GetName())),
  451         ConstString(type_name.GetName()), summary.GetSP());
  468         ConstString(type_name.GetName()));
  471         ConstString(type_name.GetName()));
  492             llvm::StringRef::withNullAsEmpty(type_name.GetName())),
  496         ConstString(type_name.GetName()), filter.GetSP());
  513         ConstString(type_name.GetName()));
  516         ConstString(type_name.GetName()));
  542         (const void *)ConstString(type_name.GetName()).GetCString();
  571             llvm::StringRef::withNullAsEmpty(type_name.GetName())),
  575         ConstString(type_name.GetName()), synth.GetSP());
  592         ConstString(type_name.GetName()));
  595         ConstString(type_name.GetName()));
tools/lldb/source/API/SBTypeNameSpecifier.cpp
   61   LLDB_RECORD_METHOD_NO_ARGS(const char *, SBTypeNameSpecifier, GetName);
   97   description.Printf("SBTypeNameSpecifier(%s,%s)", GetName(),
  132   if (GetName() == nullptr || rhs.GetName() == nullptr)
  132   if (GetName() == nullptr || rhs.GetName() == nullptr)
  135   return (strcmp(GetName(), rhs.GetName()) == 0);
  135   return (strcmp(GetName(), rhs.GetName()) == 0);
  172   LLDB_REGISTER_METHOD(const char *, SBTypeNameSpecifier, GetName, ());