| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A D | TypeCategory.h | 231 template <typename T> void ForEach(const ForEachCallbacks<T> &foreach) { in ForEach() function 232 GetTypeFormatsContainer()->ForEach(foreach.GetFormatExactCallback()); in ForEach() 233 GetRegexTypeFormatsContainer()->ForEach(foreach.GetFormatRegexCallback()); in ForEach() 235 GetTypeSummariesContainer()->ForEach(foreach.GetSummaryExactCallback()); in ForEach() 236 GetRegexTypeSummariesContainer()->ForEach( in ForEach() 239 GetTypeFiltersContainer()->ForEach(foreach.GetFilterExactCallback()); in ForEach() 240 GetRegexTypeFiltersContainer()->ForEach(foreach.GetFilterRegexCallback()); in ForEach() 243 GetTypeSyntheticsContainer()->ForEach(foreach.GetSynthExactCallback()); in ForEach() 244 GetRegexTypeSyntheticsContainer()->ForEach(foreach.GetSynthRegexCallback()); in ForEach() 247 GetTypeValidatorsContainer()->ForEach(foreach.GetValidatorExactCallback()); in ForEach() [all …]
|
| H A D | DataVisualization.h | 90 ForEach(std::function<bool(ConstString, const lldb::TypeSummaryImplSP &)> 131 static void ForEach(TypeCategoryMap::ForEachCallback callback);
|
| H A D | FormattersContainer.h | 115 void ForEach(ForEachCallback callback) { in ForEach() function 227 void ForEach(ForEachCallback callback) { m_format_map.ForEach(callback); } in ForEach() function
|
| H A D | TypeCategoryMap.h | 68 void ForEach(ForEachCallback callback);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | TypeList.h | 51 void ForEach( 54 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback);
|
| H A D | TypeMap.h | 51 void ForEach( 54 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StackFrameRecognizer.cpp | 67 void ForEach( in ForEach() function in StackFrameRecognizerManagerImpl 169 void StackFrameRecognizerManager::ForEach( in ForEach() function in StackFrameRecognizerManager 172 GetStackFrameRecognizerManagerImpl().ForEach(callback); in ForEach()
|
| H A D | InstrumentationRuntime.cpp | 53 module_list.ForEach([this](const lldb::ModuleSP module_sp) -> bool { in ModulesDidLoad()
|
| H A D | Language.cpp | 82 ForEach([&result, file_path](Language *language) { in FindPlugin() 102 void Language::ForEach(std::function<bool(Language *)> callback) { in ForEach() function in Language
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | DataVisualization.cpp | 181 void DataVisualization::Categories::ForEach( in ForEach() function in DataVisualization::Categories 214 void DataVisualization::NamedSummaryFormats::ForEach( in ForEach() function in DataVisualization::NamedSummaryFormats 217 GetFormatManager().GetNamedSummaryContainer().ForEach(callback); in ForEach()
|
| /freebsd-12.1/contrib/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread_list.h | 95 void ForEach(CB cb) { in ForEach() function 156 live_list_.ForEach(cb); in VisitAllLiveThreads()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | TypeList.cpp | 85 void TypeList::ForEach( in ForEach() function in TypeList 93 void TypeList::ForEach( in ForEach() function in TypeList
|
| H A D | TypeMap.cpp | 114 void TypeMap::ForEach( in ForEach() function in TypeMap 122 void TypeMap::ForEach( in ForEach() function in TypeMap
|
| H A D | SymbolContext.cpp | 595 type_map.ForEach( in SortTypeList() 605 type_list.ForEach([&type_map](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 617 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 639 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 660 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 678 type_map.ForEach([&type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | NameToDIE.h | 46 ForEach(std::function<bool(lldb_private::ConstString name,
|
| H A D | NameToDIE.cpp | 64 void NameToDIE::ForEach( in ForEach() function in NameToDIE
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerValueBitMap.h | 59 void ForEach(Callback CB) const { in ForEach() function
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1604 bool ForEach = false; in ParseForStatement() local 1677 } else if ((ForEach = isTokIdentifier_in())) { in ParseForStatement() 1695 ForEach = isTokIdentifier_in(); in ParseForStatement() 1699 if (ForEach) in ParseForStatement() 1707 } else if (ForEach) { in ParseForStatement() 1737 if (!ForEach && !ForRangeInfo.ParsedForRangeDecl() && in ParseForStatement() 1781 if (!ForEach && !ForRangeInfo.ParsedForRangeDecl()) { in ParseForStatement() 1827 } else if (ForEach) { in ParseForStatement() 1873 if (ForEach) in ParseForStatement()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointSiteList.h | 128 void ForEach(std::function<void(BreakpointSite *)> const &callback);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | StackFrameRecognizer.h | 112 static void ForEach(
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | TSanRuntime.cpp | 703 report->GetObjectForDotSeparatedPath("mops")->GetAsArray()->ForEach( in GetMainRacyAddress() 845 report->GetObjectForDotSeparatedPath("mops")->GetAsArray()->ForEach( in NotifyBreakpointHit() 1018 info->GetObjectForDotSeparatedPath(path)->GetAsArray()->ForEach( in AddThreadsForPath() 1021 o->GetObjectForDotSeparatedPath("trace")->GetAsArray()->ForEach( in AddThreadsForPath()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBStructuredData.cpp | 102 key_arr->ForEach([&keys] (StructuredData::Object *object) -> bool { in GetKeys()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 171 ForEach(std::function<bool(Object *object)> const &foreach_callback) const { in ForEach() function 359 void ForEach(std::function<bool(ConstString key, Object *object)> const in ForEach() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | MainThreadCheckerRuntime.cpp | 252 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool { in GetBacktracesFromExtendedStopInfo()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointSiteList.cpp | 165 void BreakpointSiteList::ForEach( in ForEach() function in BreakpointSiteList
|