Lines Matching full:array
17 // -- Data: array => Homogeneous array of one or more export objects
19 // -- Files: array => List of objects describing coverage for files
21 // -- Branches: array => List of Branches in the file
23 // -- MCDC Records: array => List of MCDC records in the file
24 // -- MCDC Values: array => List of T/F covered condition values
25 // -- Segments: array => List of Segments contained in the file
27 // -- Expansions: array => List of expansion records
30 // -- TargetRegions: array => List of Regions in the expansion
32 // -- Branches: array => List of Branches in the expansion
40 // -- Functions: array => List of objects describing coverage for functions
42 // -- Filenames: array => List of filenames that the function relates to
83 json::Array renderSegment(const coverage::CoverageSegment &Segment) { in renderSegment()
84 return json::Array({Segment.Line, Segment.Col, in renderSegment()
89 json::Array renderRegion(const coverage::CountedRegion &Region) { in renderRegion()
90 return json::Array({Region.LineStart, Region.ColumnStart, Region.LineEnd, in renderRegion()
96 json::Array renderBranch(const coverage::CountedRegion &Region) { in renderBranch()
97 return json::Array( in renderBranch()
104 json::Array gatherConditions(const coverage::MCDCRecord &Record) { in gatherConditions()
105 json::Array Conditions; in gatherConditions()
111 json::Array renderMCDCRecord(const coverage::MCDCRecord &Record) { in renderMCDCRecord()
113 return json::Array({CMR.LineStart, CMR.ColumnStart, CMR.LineEnd, in renderMCDCRecord()
118 json::Array renderRegions(ArrayRef<coverage::CountedRegion> Regions) { in renderRegions()
119 json::Array RegionArray; in renderRegions()
125 json::Array renderBranchRegions(ArrayRef<coverage::CountedRegion> Regions) { in renderBranchRegions()
126 json::Array RegionArray; in renderBranchRegions()
133 json::Array renderMCDCRecords(ArrayRef<coverage::MCDCRecord> Records) { in renderMCDCRecords()
134 json::Array RecordArray; in renderMCDCRecords()
166 {{"filenames", json::Array(Expansion.Function.Filenames)}, in renderExpansion()
216 json::Array renderFileExpansions(const coverage::CoverageMapping &Coverage, in renderFileExpansions()
219 json::Array ExpansionArray; in renderFileExpansions()
225 json::Array renderFileSegments(const coverage::CoverageData &FileCoverage, in renderFileSegments()
227 json::Array SegmentArray; in renderFileSegments()
233 json::Array renderFileBranches(const coverage::CoverageData &FileCoverage, in renderFileBranches()
235 json::Array BranchArray; in renderFileBranches()
241 json::Array renderFileMCDC(const coverage::CoverageData &FileCoverage, in renderFileMCDC()
243 json::Array MCDCRecordArray; in renderFileMCDC()
269 json::Array renderFiles(const coverage::CoverageMapping &Coverage, in renderFiles()
281 json::Array FileArray; in renderFiles()
299 json::Array renderFunctions( in renderFunctions()
301 json::Array FunctionArray; in renderFunctions()
309 {"filenames", json::Array(F.Filenames)}})); in renderFunctions()
345 auto ExportArray = json::Array({std::move(Export)}); in renderRoot()