Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DManualDWARFIndex.cpp97 NameToDIE &result = m_set.*index; in Index()
334 m_set.globals.Find(basename, in GetGlobalVariables()
342 m_set.globals.Find(regex, DIERefCallback(callback, regex.GetText())); in GetGlobalVariables()
348 m_set.globals.FindAllEntriesForUnit(unit, DIERefCallback(callback)); in GetGlobalVariables()
354 m_set.objc_class_selectors.Find( in GetObjCMethods()
362 m_set.types.Find(class_name, in GetCompleteObjCClass()
369 m_set.types.Find(name, DIERefCallback(callback, name.GetStringRef())); in GetTypes()
377 m_set.types.Find(ConstString(name), in GetTypes()
384 m_set.namespaces.Find(name, DIERefCallback(callback, name.GetStringRef())); in GetNamespaces()
394 if (!m_set.function_fullnames.Find( in GetFunctions()
[all …]
DManualDWARFIndex.h82 IndexSet m_set; variable
/external/llvm-project/lldb/include/lldb/Core/
DThreadSafeDenseSet.h26 : m_set(set_initial_capacity), m_mutex() {} in m_set() function
30 m_set.insert(e); in Insert()
35 m_set.erase(e); in Erase()
40 return (m_set.count(e) > 0); in Lookup()
45 m_set.clear(); in Clear()
49 LLVMSetType m_set;
/external/deqp/executor/
DxeTestCase.cpp388 addNodeAndParents(m_set, testCase); in addCase()
393 addNodeAndParents(m_set, testGroup); in addGroup()
394 addChildren(m_set, testGroup); in addGroup()
411 if (m_set.find(testCase) != m_set.end()) in removeCase()
413 m_set.erase(testCase); in removeCase()
414 removeEmptyGroups(m_set, testCase->getParent()); in removeCase()
420 if (m_set.find(testGroup) != m_set.end()) in removeGroup()
422 m_set.erase(testGroup); in removeGroup()
423 removeChildren(m_set, testGroup); in removeGroup()
425 removeEmptyGroups(m_set, testGroup->getParent()); in removeGroup()
DxeTestCase.hpp160 bool empty (void) const { return m_set.empty(); } in empty()
170 bool hasNode (const TestNode* node) const { return m_set.find(node) != m_set.end(); } in hasNode()
173 std::set<const TestNode*> m_set; member in xe::TestSet
/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp843 if (m_set) { in ~VkDescriptorSetObj()
844 delete m_set; in ~VkDescriptorSetObj()
905 if (m_set) in GetDescriptorSetHandle()
906 return m_set->handle(); in GetDescriptorSetHandle()
949 m_set = alloc_sets(*m_device, m_layout); in CreateVKDescriptorSet()
954 it->dstSet = m_set->handle(); in CreateVKDescriptorSet()
Dvkrenderframework.h399 vk_testing::DescriptorSet *m_set = NULL; variable