Home
last modified time | relevance | path

Searched refs:item_name (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp100 size_t lldb_private::formatters::ExtractIndexFromString(const char *item_name) { in ExtractIndexFromString() argument
101 if (!item_name || !*item_name) in ExtractIndexFromString()
103 if (*item_name != '[') in ExtractIndexFromString()
105 item_name++; in ExtractIndexFromString()
107 unsigned long int idx = ::strtoul(item_name, &endptr, 0); in ExtractIndexFromString()
108 if (idx == 0 && endptr == item_name) in ExtractIndexFromString()
H A DVectorType.cpp274 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
275 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp602 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
603 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
740 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
741 const uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
876 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
877 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
1082 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
1083 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
1247 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
1248 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
H A DNSSet.cpp415 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
416 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
552 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
553 const uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
692 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
693 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
H A DNSIndexPath.cpp130 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
131 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
H A DNSArray.cpp543 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
544 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
629 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
630 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/freebsd/contrib/ncurses/menu/
H A Dm_item_nam.c52 item_name(const ITEM *item) in MENU_EXPORT()
H A Dllib-lmenut229 #undef item_name
230 const char *item_name(
H A Dllib-lmenutw229 #undef item_name
230 const char *item_name(
H A Dllib-lmenuw229 #undef item_name
230 const char *item_name(
H A Dllib-lmenu229 #undef item_name
230 const char *item_name(
H A Dmenu.h215 extern MENU_EXPORT(const char *) item_name(const ITEM *);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxVector.cpp260 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
261 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/freebsd/contrib/ncurses/misc/
H A Dmenu.ref22 "item_name" @15 ;NONAME
H A Dmenu.def25 "item_name" @15 NONAME
/freebsd/lib/ncurses/menu/
H A DMakefile118 mitem_name.3 item_name.3 \
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h57 size_t ExtractIndexFromString(const char *item_name);