Searched refs:ForEach (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DTypeList.h63 ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const;
66 ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback);
H A DTypeMap.h66 ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const;
69 ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback);
H A DTypeSystem.h591 ForEach (std::function <bool(TypeSystem *)> const &callback);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.h56 ForEach (std::function <bool(const char *name, const DIERef& die_ref)> const &callback) const;
H A DNameToDIE.cpp77 NameToDIE::ForEach (std::function <bool(const char *name, const DIERef& die_ref)> const &callback) const function in class:NameToDIE
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h278 ForEach (const ForEachCallbacks<T> &foreach) function in class:lldb_private::TypeCategoryImpl
280 GetTypeFormatsContainer()->ForEach(foreach.GetFormatExactCallback());
281 GetRegexTypeFormatsContainer()->ForEach(foreach.GetFormatRegexCallback());
283 GetTypeSummariesContainer()->ForEach(foreach.GetSummaryExactCallback());
284 GetRegexTypeSummariesContainer()->ForEach(foreach.GetSummaryRegexCallback());
286 GetTypeFiltersContainer()->ForEach(foreach.GetFilterExactCallback());
287 GetRegexTypeFiltersContainer()->ForEach(foreach.GetFilterRegexCallback());
290 GetTypeSyntheticsContainer()->ForEach(foreach.GetSynthExactCallback());
291 GetRegexTypeSyntheticsContainer()->ForEach(foreach.GetSynthRegexCallback());
294 GetTypeValidatorsContainer()->ForEach(foreac
[all...]
H A DDataVisualization.h104 ForEach (std::function<bool(ConstString, const lldb::TypeSummaryImplSP&)> callback);
161 ForEach (TypeCategoryMap::ForEachCallback callback);
H A DTypeCategoryMap.h89 ForEach (ForEachCallback callback);
H A DFormattersContainer.h142 ForEach (ForEachCallback callback) function in class:lldb_private::FormatMap
300 ForEach (ForEachCallback callback) function in class:lldb_private::FormattersContainer
302 m_format_map.ForEach(callback);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointSiteList.h136 ForEach (std::function <void(BreakpointSite *)> const &callback);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DTypeList.cpp107 TypeList::ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const function in class:TypeList
117 TypeList::ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback) function in class:TypeList
H A DTypeMap.cpp145 TypeMap::ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const function in class:TypeMap
155 TypeMap::ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback) function in class:TypeMap
H A DSymbolContext.cpp708 type_map.ForEach([curr_block, &type_list](const lldb::TypeSP& type_sp) -> bool {
717 type_list.ForEach([&type_map](const lldb::TypeSP& type_sp) -> bool {
730 type_map.ForEach([this, &type_list](const lldb::TypeSP& type_sp) -> bool {
754 type_map.ForEach([this, &type_list](const lldb::TypeSP& type_sp) -> bool {
777 type_map.ForEach([this, &type_list](const lldb::TypeSP& type_sp) -> bool {
797 type_map.ForEach([&type_list](const lldb::TypeSP& type_sp) -> bool {
H A DTypeSystem.cpp183 TypeSystemMap::ForEach (std::function <bool(TypeSystem *)> const &callback) function in class:TypeSystemMap
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DDataVisualization.cpp229 DataVisualization::Categories::ForEach (TypeCategoryMap::ForEachCallback callback) function in class:DataVisualization::Categories
271 DataVisualization::NamedSummaryFormats::ForEach (std::function<bool(ConstString, const lldb::TypeSummaryImplSP&)> callback) function in class:DataVisualization::NamedSummaryFormats
273 GetFormatManager().GetNamedSummaryContainer().ForEach(callback);
H A DTypeCategoryMap.cpp376 TypeCategoryMap::ForEach(ForEachCallback callback) function in class:TypeCategoryMap
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DLanguage.h84 ForEach (std::function<bool(Language*)> callback);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1534 bool ForEach = false, ForRange = false; local
1601 } else if ((ForEach = isTokIdentifier_in())) {
1619 ForEach = isTokIdentifier_in();
1623 if (ForEach)
1631 } else if (ForEach) {
1661 if (!ForEach && !ForRange) {
1726 } else if (ForEach) {
1772 if (ForEach)
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleList.h570 ForEach (std::function <bool (const lldb::ModuleSP &module_sp)> const &callback) const;
H A DStructuredData.h216 ForEach (std::function <bool(Object* object)> const &foreach_callback) const function in class:lldb_private::StructuredData::Array
514 ForEach (std::function <bool(ConstString key, Object* object)> const &callback) const function in class:Dictionary
H A DMappedHash.h525 ForEach (std::function <bool(const HashData &hash_data)> const &callback) const function in class:MappedHash::MemoryTable
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp201 BreakpointSiteList::ForEach (std::function <void(BreakpointSite *)> const &callback) function in class:BreakpointSiteList
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DLanguage.cpp81 Language::ForEach (std::function<bool(Language*)> callback) function in class:Language
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp1040 DataVisualization::Categories::ForEach( [this, typeCS] (const lldb::TypeCategoryImplSP& category_sp) -> bool {
1185 DataVisualization::Categories::ForEach( [this] (const TypeCategoryImplSP& category_sp) -> bool {
1444 category->ForEach(foreach);
1456 DataVisualization::Categories::ForEach( [this, &command, &result, &category_regex, &formatter_regex, &category_closure] (const lldb::TypeCategoryImplSP& category) -> bool {
2092 DataVisualization::NamedSummaryFormats::ForEach( [&result] (ConstString name, const TypeSummaryImplSP& summary_sp) -> bool {
2666 DataVisualization::Categories::ForEach( [&regex, &result] (const lldb::TypeCategoryImplSP& category_sp) -> bool {
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1700 thread_infos->ForEach([this](StructuredData::Object* object) -> bool {
2176 thread_dict->ForEach([this,
2210 array->ForEach([&exc_data](StructuredData::Object* object) -> bool {
2278 registers_dict->ForEach([&expedited_register_map](ConstString key, StructuredData::Object* object) -> bool {
2291 array->ForEach([this](StructuredData::Object* object) -> bool {
4852 new_modules.ForEach ([&target](const lldb::ModuleSP module_sp) -> bool

Completed in 223 milliseconds

12