Home | History | Annotate | Download | only in src

Lines Matching refs:c_

672     inline void init (const struct CoverageFormat1 &c_) { c = &c_; i = 0; };
769 inline void init (const CoverageFormat2 &c_) {
770 c = &c_;
773 j = c->rangeRecord.len ? c_.rangeRecord[0].start : 0;
873 inline void init (const Coverage &c_) {
874 format = c_.u.format;
876 case 1: u.format1.init (c_.u.format1); return;
877 case 2: u.format2.init (c_.u.format2); return;