Home
last modified time | relevance | path

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

123

/freebsd/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()
295 std::unique_ptr<SourceCoverageView> View);
299 std::unique_ptr<SourceCoverageView> View);
H A DCodeCoverage.cpp98 void attachExpansionSubViews(SourceCoverageView &View,
103 void attachBranchSubViews(SourceCoverageView &View,
107 void attachMCDCSubViews(SourceCoverageView &View,
306 SourceCoverageView &View, ArrayRef<ExpansionRecord> Expansions, in attachExpansionSubViews() argument
325 View.addExpansion(Expansion.Region, std::move(SubView)); in attachExpansionSubViews()
329 void CodeCoverageTool::attachBranchSubViews(SourceCoverageView &View, in attachBranchSubViews() argument
344 View.addBranch(CurrentLine, std::move(ViewBranches)); in attachBranchSubViews()
348 void CodeCoverageTool::attachMCDCSubViews(SourceCoverageView &View, in attachMCDCSubViews() argument
365 View.addMCDCRecord(CurrentLine, std::move(ViewMCDCRecords)); in attachMCDCSubViews()
382 auto View = SourceCoverageView::create(DC.demangle(Function.Name), in createFunctionView() local
[all …]
H A DSourceCoverageView.cpp173 std::unique_ptr<SourceCoverageView> View) { in addExpansion() argument
174 ExpansionSubViews.emplace_back(Region, std::move(View)); in addExpansion()
189 std::unique_ptr<SourceCoverageView> View) { in addInstantiation() argument
190 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View)); in addInstantiation()
H A DSourceCoverageViewText.cpp287 ESV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/false, in renderExpansionView()
397 if (!ISV.View) in renderInstantiationView()
401 ISV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/true, in renderInstantiationView()
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DCustomBehaviour.cpp27 std::vector<std::unique_ptr<View>>
30 return std::vector<std::unique_ptr<View>>(); in getStartViews()
33 std::vector<std::unique_ptr<View>>
36 return std::vector<std::unique_ptr<View>>(); in getPostInstrInfoViews()
39 std::vector<std::unique_ptr<View>>
42 return std::vector<std::unique_ptr<View>>(); in getEndViews()
H A DView.cpp21 void View::anchor() {} in anchor()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCTargetOptionsCommandFlags.cpp21 static cl::opt<TY> *NAME##View; \
23 assert(NAME##View && "RegisterMCTargetOptionsFlags not created."); \
24 return *NAME##View; \
30 if (NAME##View->getNumOccurrences()) { \
31 TY res = *NAME##View; \
59 NAME##View = std::addressof(NAME); \ in MCOPT_EXP()
/freebsd/usr.sbin/bsdconfig/includes/
H A DUSAGE39 View a list of available includes:
43 View functions for all available includes (function names are
48 View functions with less(1) (function names are not highlighted):
52 View functions with less(1) and color:
56 View functions from `common.subr':
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DView.h26 class View : public HWEventListener {
28 virtual ~View() = default;
H A DCustomBehaviour.h107 virtual std::vector<std::unique_ptr<View>>
110 virtual std::vector<std::unique_ptr<View>>
114 virtual std::vector<std::unique_ptr<View>>
/freebsd/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/contrib/llvm-project/llvm/lib/CodeGen/
H A DCommandFlags.cpp33 static cl::opt<TY> *NAME##View; \
35 assert(NAME##View && "RegisterCodeGenFlags not created."); \
36 return *NAME##View; \
40 static cl::list<TY> *NAME##View; \
42 assert(NAME##View && "RegisterCodeGenFlags not created."); \
43 return *NAME##View; \
50 if (NAME##View->getNumOccurrences()) { \
51 TY res = *NAME##View; \
117 NAME##View = std::addressof(NAME); \ in CGOPT()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h236 BinaryStreamRef View; in readArray()
237 if (auto EC = readStreamRef(View, NumItems * sizeof(T))) in readArray()
240 Array = FixedStreamArray<T>(View); in readArray()
238 BinaryStreamRef View; readArray() local
/freebsd/contrib/file/magic/Magdir/
H A Dsoftquad21 # GRR: the line below is also true for 5View capture file handled by ./sniffer
23 # skip 5View capture file with "invalid" version AAAAh
/freebsd/contrib/file/tests/
H A Djson1.testfile5 "Title": "View from 15th Floor",
/freebsd/usr.sbin/bsdconfig/dot/
H A DUSAGE35 View dot(1) language output describing bsdconfig(8) layout/make-up:
45 View the above-rendered SVG file using your favorite X11-based viewer:
99 View the above-rendered PostScript poster using X11:
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
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.h32 #include "llvm/MCA/View.h"
39 class SummaryView : public View {
H A DInstructionView.h27 class InstructionView : public View {
H A DSchedulerStatistics.h47 class SchedulerStatistics final : public View {
/freebsd/usr.sbin/bsdconfig/usermgmt/include/
H A Dmessages.subr54 msg_edit_group="Edit/View Group"
55 msg_edit_login="Edit/View Login"
56 msg_edit_view="Edit/View"
/freebsd/usr.sbin/bsdconfig/startup/include/
H A Dmessages.subr44 msg_choose_view_details="Choose View Details"
104 msg_view_details="View Details"
107 msg_view_edit_startup_configuration="View/Edit Startup Configuration"
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2412 typedef internal::StlContainerView<Container> View;
2413 typedef typename View::type StlContainer;
2414 typedef typename View::const_reference StlContainerReference;
2424 : expected_(View::Copy(expected)) {}
2699 typedef StlContainerView<RawContainer> View;
2700 typedef typename View::type StlContainer;
2701 typedef typename View::const_reference StlContainerReference;
2714 StlContainerReference stl_container = View::ConstReference(container);
2734 StlContainerReference stl_container = View::ConstReference(container);
3371 typedef internal::StlContainerView<RawContainer> View;
[all …]

123