Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Utility/
DArchSpec.cpp41 static const CoreDefinition g_core_definitions[] = { variable
230 static_assert(sizeof(g_core_definitions) / sizeof(CoreDefinition) ==
250 for (uint32_t i = 0; i < llvm::array_lengthof(g_core_definitions); ++i) in ListSupportedArchNames()
251 list.AppendString(g_core_definitions[i].name); in ListSupportedArchNames()
255 for (uint32_t i = 0; i < llvm::array_lengthof(g_core_definitions); ++i) in AutoComplete()
256 request.TryCompleteCurrentArg(g_core_definitions[i].name); in AutoComplete()
456 for (unsigned int i = 0; i < llvm::array_lengthof(g_core_definitions); ++i) { in FindCoreDefinition()
457 if (name.equals_lower(g_core_definitions[i].name)) in FindCoreDefinition()
458 return &g_core_definitions[i]; in FindCoreDefinition()
464 if (core < llvm::array_lengthof(g_core_definitions)) in FindCoreDefinition()
[all …]