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

Declarations

tools/lldb/include/lldb/Symbol/TypeList.h
   35   uint32_t GetSize() const;

References

tools/lldb/include/lldb/Symbol/TypeList.h
   37   bool Empty() const { return !GetSize(); }
tools/lldb/source/API/SBModule.cpp
  520       for (size_t idx = 0; idx < type_list.GetSize(); idx++) {
tools/lldb/source/API/SBTarget.cpp
 1892     for (size_t idx = 0; idx < type_list.GetSize(); idx++) {
tools/lldb/source/Commands/CommandObjectMemory.cpp
  471       if (type_list.GetSize() == 0 && lookup_type_name.GetCString()) {
  508         if (type_list.GetSize() == 0) {
tools/lldb/source/Commands/CommandObjectTarget.cpp
 1670   return type_list.GetSize();
 1713   return type_list.GetSize();
tools/lldb/source/Core/Module.cpp
  954   if (type_list.GetSize())
tools/lldb/source/Core/ModuleList.cpp
  503         if (types.GetSize() >= max_matches)
  517     if (types.GetSize() >= max_matches)
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  339         for (uint32_t ti = 0, te = types.GetSize(); ti != te && !found; ++ti) {
  377       for (uint32_t ti = 0, te = types.GetSize(); ti != te && !found; ++ti) {
  885     if (size_t num_types = types.GetSize()) {
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  118             if (class_types.GetSize() == 1) {
  136                 for (i = 0; i < class_types.GetSize(); i++) {
  150               for (i = 0; i < class_types.GetSize(); i++) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
  127     for (uint32_t i = 0; i < types.GetSize(); ++i) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1288   const size_t old_count = GetTypeList().GetSize();
 1318   const size_t new_count = GetTypeList().GetSize();
tools/lldb/source/Symbol/ClangASTContext.cpp
 8981   size_t ntypes = type_list.GetSize();
tools/lldb/source/Symbol/SymbolContext.cpp
  603     const size_t old_type_list_size = type_list.GetSize();
  613     const size_t new_type_list_size = type_list.GetSize();
  622     const size_t old_type_list_size = type_list.GetSize();
  633     const size_t new_type_list_size = type_list.GetSize();
  642     const size_t old_type_list_size = type_list.GetSize();
  651     const size_t new_type_list_size = type_list.GetSize();
tools/lldb/source/Symbol/TypeList.cpp
   69   assert(i < GetSize() && "Accessing past the end of a TypeList");