Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/lldb/source/DataFormatters/
HDFormattersHelpers.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()
HDVectorType.cpp274 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
275 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
HDNSDictionary.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()
HDNSSet.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()
HDNSIndexPath.cpp130 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
131 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
HDNSArray.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-head/contrib/ncurses/menu/
HDm_item_nam.c52 item_name(const ITEM *item) in MENU_EXPORT()
HDllib-lmenu229 #undef item_name
230 const char *item_name(
HDllib-lmenutw229 #undef item_name
230 const char *item_name(
HDllib-lmenut229 #undef item_name
230 const char *item_name(
HDllib-lmenuw229 #undef item_name
230 const char *item_name(
HDmenu.h215 extern MENU_EXPORT(const char *) item_name(const ITEM *);
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDLibCxxVector.cpp260 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
261 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/freebsd-head/contrib/ncurses/misc/
HDmenu.ref22 "item_name" @15 ;NONAME
HDmenu.def25 "item_name" @15 NONAME
/freebsd-head/lib/ncurses/menu/
HDMakefile118 mitem_name.3 item_name.3 \
/freebsd-head/contrib/llvm-project/lldb/include/lldb/DataFormatters/
HDFormattersHelpers.h57 size_t ExtractIndexFromString(const char *item_name);