Home
last modified time | relevance | path

Searched defs:CounterMappingRegion (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h204 struct CounterMappingRegion { struct
228 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion() argument
238 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart, in makeRegion() argument
245 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart, in makeExpansion() argument
253 return CounterMappingRegion(Counter(), FileID, 0, LineStart, ColumnStart, in makeSkipped() argument
260 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart, in makeGapRegion() argument
272 struct CountedRegion : public CounterMappingRegion { argument
/third_party/rust/rust/compiler/rustc_codegen_llvm/src/llvm/
Dffi.rs735 pub struct CounterMappingRegion { struct
737 counter: coverage_map::Counter,
741 false_counter: coverage_map::Counter,
746 file_id: u32,
751 expanded_file_id: u32,
754 start_line: u32,
757 start_col: u32,
760 end_line: u32,
764 end_col: u32,
766 kind: RegionKind,
[all …]
/third_party/rust/rust/compiler/rustc_codegen_llvm/src/coverageinfo/
Dmod.rs360 mapping_regions: Vec<CounterMappingRegion>, in write_mapping_to_buffer()