Home
last modified time | relevance | path

Searched refs:View (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h32 std::unique_ptr<SourceCoverageView> View; member
35 std::unique_ptr<SourceCoverageView> View) in ExpansionView()
36 : Region(Region), View(std::move(View)) {} in ExpansionView()
38 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {} in ExpansionView()
41 View = std::move(RHS.View);
58 std::unique_ptr<SourceCoverageView> View; member
61 std::unique_ptr<SourceCoverageView> View) in InstantiationView()
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
73 std::unique_ptr<SourceCoverageView> View; member
77 std::unique_ptr<SourceCoverageView> View) in BranchView()
[all …]
H A DSourceCoverageView.cpp167 std::unique_ptr<SourceCoverageView> View) { in addExpansion() argument
168 ExpansionSubViews.emplace_back(Region, std::move(View)); in addExpansion()
173 std::unique_ptr<SourceCoverageView> View) { in addBranch() argument
174 BranchSubViews.emplace_back(Line, Regions, std::move(View)); in addBranch()
179 std::unique_ptr<SourceCoverageView> View) { in addInstantiation() argument
180 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View)); in addInstantiation()
H A DCodeCoverage.cpp93 void attachExpansionSubViews(SourceCoverageView &View,
315 View.addExpansion(Expansion.Region, std::move(SubView)); in attachExpansionSubViews()
361 attachExpansionSubViews(*View, Expansions, Coverage); in createFunctionView()
365 return View; in createFunctionView()
382 attachExpansionSubViews(*View, Expansions, Coverage); in createSourceFileView()
386 return View; in createSourceFileView()
414 View->addInstantiation(Funcname, Line, std::move(SubView)); in createSourceFileView()
417 return View; in createSourceFileView()
600 auto View = createSourceFileView(SourceFile, *Coverage); in writeSourceFileView() local
601 if (!View) { in writeSourceFileView()
[all …]
H A DSourceCoverageViewText.cpp222 ESV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/false, in renderExpansionView()
278 if (!ISV.View) in renderInstantiationView()
282 ISV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/true, in renderInstantiationView()
H A DSourceCoverageViewHTML.cpp654 ESV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/false, in renderExpansionView()
729 if (!ISV.View) in renderInstantiationView()
736 ISV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/true, in renderInstantiationView()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCTargetOptionsCommandFlags.cpp22 static cl::opt<TY> *NAME##View; \
24 assert(NAME##View && "RegisterMCTargetOptionsFlags not created."); \
25 return *NAME##View; \
31 if (NAME##View->getNumOccurrences()) { \
32 TY res = *NAME##View; \
52 NAME##View = std::addressof(NAME); \ in MCOPT_EXP()
/freebsd-13.1/usr.sbin/bsdconfig/includes/
H A DUSAGE40 View a list of available includes:
44 View functions for all available includes (function names are
49 View functions with less(1) (function names are not highlighted):
53 View functions with less(1) and color:
57 View functions from `common.subr':
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DView.h26 class View : public HWEventListener {
28 virtual ~View() = default;
H A DView.cpp21 void View::anchor() {} in anchor()
H A DRetireControlUnitStatistics.h38 class RetireControlUnitStatistics : public View {
H A DRegisterFileStatistics.h45 class RegisterFileStatistics : public View {
H A DDispatchStatistics.h44 class DispatchStatistics : public View {
H A DSummaryView.h40 class SummaryView : public View {
H A DSchedulerStatistics.h47 class SchedulerStatistics final : public View {
H A DInstructionView.h26 class InstructionView : public View {
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCommandFlags.cpp25 static cl::opt<TY> *NAME##View; \
27 assert(NAME##View && "RegisterCodeGenFlags not created."); \
28 return *NAME##View; \
32 static cl::list<TY> *NAME##View; \
34 assert(NAME##View && "RegisterCodeGenFlags not created."); \
35 return *NAME##View; \
41 if (NAME##View->getNumOccurrences()) { \
42 TY res = *NAME##View; \
101 NAME##View = std::addressof(NAME); \ in CGOPT()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/
H A DPipelinePrinter.h46 llvm::SmallVector<std::unique_ptr<View>, 8> Views;
58 void addView(std::unique_ptr<View> V) { in addView()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h245 BinaryStreamRef View; in readArray() local
246 if (auto EC = readStreamRef(View, NumItems * sizeof(T))) in readArray()
249 Array = FixedStreamArray<T>(View); in readArray()
/freebsd-13.1/contrib/file/tests/
H A Djson1.testfile5 "Title": "View from 15th Floor",
/freebsd-13.1/usr.sbin/bsdconfig/dot/
H A DUSAGE36 View dot(1) language output describing bsdconfig(8) layout/make-up:
46 View the above-rendered SVG file using your favorite X11-based viewer:
100 View the above-rendered PostScript poster using X11:
/freebsd-13.1/usr.sbin/bsdconfig/usermgmt/include/
H A Dmessages.subr55 msg_edit_group="Edit/View Group"
56 msg_edit_login="Edit/View Login"
57 msg_edit_view="Edit/View"
/freebsd-13.1/usr.sbin/bsdconfig/startup/include/
H A Dmessages.subr45 msg_choose_view_details="Choose View Details"
105 msg_view_details="View Details"
108 msg_view_edit_startup_configuration="View/Edit Startup Configuration"
/freebsd-13.1/usr.bin/clang/llvm-mca/
H A DMakefile19 SRCS+= Views/View.cpp
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2836 typedef internal::StlContainerView<Container> View;
2837 typedef typename View::type StlContainer;
2843 : expected_(View::Copy(expected)) {
3129 typedef StlContainerView<RawContainer> View;
3130 typedef typename View::type StlContainer;
3481 typedef internal::StlContainerView<RawContainer> View;
3482 typedef typename View::type StlContainer;
3735 typedef internal::StlContainerView<RawContainer> View;
3736 typedef typename View::type StlContainer;
3843 typedef typename View::value_type Element;
[all …]
/freebsd-13.1/contrib/libxo/
H A DREADME.md63 View the beautiful documentation at:

12