/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatManager.h | 53 EnableCategory(ConstString category_name, 55 EnableCategory(category_name, pos, {}); 58 void EnableCategory(ConstString category_name, in EnableCategory() argument 61 if (m_categories_map.Get(category_name, category_sp) && category_sp) { in EnableCategory() 67 void DisableCategory(ConstString category_name) { in DisableCategory() argument 68 m_categories_map.Disable(category_name); in DisableCategory() 85 bool DeleteCategory(ConstString category_name) { in DeleteCategory() argument 86 return m_categories_map.Delete(category_name); in DeleteCategory() 99 lldb::TypeCategoryImplSP GetCategory(const char *category_name = nullptr, 101 if (!category_name) [all …]
|
H A D | TypeCategoryMap.h | 48 bool Enable(KeyType category_name, Position pos = Default); 50 bool Disable(KeyType category_name);
|
/freebsd/usr.bin/localedef/ |
H A D | localedef.c | 67 category_name(void) in category_name() function 97 locname, category_name()); in category_file() 100 locname, category_name()); in category_file() 110 (void) printf("Writing category %s: ", category_name()); in open_category() 160 src, category_name()); in copy_category() 165 "/usr/lib/locale/%s/%s", src, category_name()); in copy_category() 176 category_name(), src); in copy_category()
|
H A D | localedef.h | 68 const char *category_name(void);
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBDebugger.cpp | 1551 SBTypeCategory SBDebugger::GetCategory(const char *category_name) { in GetCategory() argument 1552 LLDB_INSTRUMENT_VA(this, category_name); in GetCategory() 1554 if (!category_name || *category_name == 0) in GetCategory() 1559 if (DataVisualization::Categories::GetCategory(ConstString(category_name), in GetCategory() 1578 SBTypeCategory SBDebugger::CreateCategory(const char *category_name) { in CreateCategory() argument 1579 LLDB_INSTRUMENT_VA(this, category_name); in CreateCategory() 1581 if (!category_name || *category_name == 0) in CreateCategory() 1586 if (DataVisualization::Categories::GetCategory(ConstString(category_name), in CreateCategory() 1594 bool SBDebugger::DeleteCategory(const char *category_name) { in DeleteCategory() argument 1595 LLDB_INSTRUMENT_VA(this, category_name); in DeleteCategory() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | TypeCategoryMap.cpp | 58 bool TypeCategoryMap::Enable(KeyType category_name, Position pos) { in Enable() argument 61 if (!Get(category_name, category)) in Enable() 66 bool TypeCategoryMap::Disable(KeyType category_name) { in Disable() argument 69 if (!Get(category_name, category)) in Disable()
|
H A D | FormatManager.cpp | 407 FormatManager::GetCategory(ConstString category_name, bool can_create) { in GetCategory() argument 408 if (!category_name) in GetCategory() 411 if (m_categories_map.Get(category_name, category)) in GetCategory() 418 category_name, in GetCategory() 419 lldb::TypeCategoryImplSP(new TypeCategoryImpl(this, category_name))); in GetCategory() 420 return GetCategory(category_name); in GetCategory()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBDebugger.h | 405 SBTypeCategory GetCategory(const char *category_name); 409 SBTypeCategory CreateCategory(const char *category_name); 411 bool DeleteCategory(const char *category_name);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Timer.h | 27 explicit Category(const char *category_name);
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectType.cpp | 505 FormatterMatchType match_type, std::string category_name, 1564 std::string category_name, in AddSummary() argument 1567 DataVisualization::Categories::GetCategory(ConstString(category_name.c_str()), in AddSummary() 2207 std::string category_name, in AddSynth() argument 2210 DataVisualization::Categories::GetCategory(ConstString(category_name.c_str()), in AddSynth() 2347 FilterFormatType type, std::string category_name, in AddFilter() argument 2351 ConstString(category_name.c_str()), category); in AddFilter()
|
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | Index.h | 4004 const char *class_name, const char *category_name);
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 3869 uint32_t category_name; /* char * (32-bit pointer) */ member 4152 sys::swapByteOrder(objc_category.category_name); in swapStruct() 5950 << format("0x%08" PRIx32, objc_category->category_name); in print_objc_objc_category_t() 5952 name = get_pointer_32(objc_category->category_name, offset, left, S, info, in print_objc_objc_category_t()
|