Lines Matching refs:record

100     const CPslRecord& record) const  in xFieldMatches()
103 auto rawString = sFormatInt(record.GetMatches(), -1); in xFieldMatches()
113 const CPslRecord& record) const in xFieldMisMatches()
116 auto rawString = sFormatInt(record.GetMisMatches(), -1); in xFieldMisMatches()
126 const CPslRecord& record) const in xFieldRepMatches()
129 auto rawString = sFormatInt(record.GetRepMatches(), -1); in xFieldRepMatches()
139 const CPslRecord& record) const in xFieldCountN()
142 auto rawString = sFormatInt(record.GetCountN(), -1); in xFieldCountN()
152 const CPslRecord& record) const in xFieldNumInsertQ()
155 auto rawString = sFormatInt(record.GetNumInsertQ(), -1); in xFieldNumInsertQ()
165 const CPslRecord& record) const in xFieldBaseInsertQ()
168 auto rawString = sFormatInt(record.GetBaseInsertQ(), -1); in xFieldBaseInsertQ()
178 const CPslRecord& record) const in xFieldNumInsertT()
181 auto rawString = sFormatInt(record.GetNumInsertT(), -1); in xFieldNumInsertT()
191 const CPslRecord& record) const in xFieldBaseInsertT()
194 auto rawString = sFormatInt(record.GetBaseInsertT(), -1); in xFieldBaseInsertT()
204 const CPslRecord& record) const in xFieldStrand()
208 if (record.GetStrandT() != eNa_strand_unknown) { in xFieldStrand()
209 rawString = (record.GetStrandT() == eNa_strand_minus ? "-" : "+"); in xFieldStrand()
220 const CPslRecord& record) const in xFieldNameQ()
223 auto rawString = record.GetNameQ(); in xFieldNameQ()
236 const CPslRecord& record) const in xFieldSizeQ()
239 auto rawString = sFormatInt(record.GetSizeQ(), -1); in xFieldSizeQ()
249 const CPslRecord& record) const in xFieldStartQ()
252 auto rawString = sFormatInt(record.GetStartQ(), -1); in xFieldStartQ()
262 const CPslRecord& record) const in xFieldEndQ()
265 auto rawString = sFormatInt(record.GetEndQ(), -1); in xFieldEndQ()
275 const CPslRecord& record) const in xFieldNameT()
278 auto rawString = record.GetNameT(); in xFieldNameT()
291 const CPslRecord& record) const in xFieldSizeT()
294 auto rawString = sFormatInt(record.GetSizeT(), -1); in xFieldSizeT()
304 const CPslRecord& record) const in xFieldStartT()
307 auto rawString = sFormatInt(record.GetStartT(), -1); in xFieldStartT()
317 const CPslRecord& record) const in xFieldEndT()
320 auto rawString = sFormatInt(record.GetEndT(), -1); in xFieldEndT()
330 const CPslRecord& record) const in xFieldBlockCount()
333 auto rawString = sFormatInt(record.GetBlockCount(), -1); in xFieldBlockCount()
343 const CPslRecord& record) const in xFieldBlockSizes()
346 auto blockSizes = record.GetBlockSizes(); in xFieldBlockSizes()
375 const CPslRecord& record) const in xFieldStartsQ()
378 auto blockStartsQ = record.GetBlockStartsQ(); in xFieldStartsQ()
407 const CPslRecord& record) const in xFieldStartsT()
410 auto blockStartsT = record.GetBlockStartsT(); in xFieldStartsT()
439 const CPslRecord& record) in Format() argument
442 mOstr << xFieldMatches(record) in Format()
443 << xFieldMisMatches(record) in Format()
444 << xFieldRepMatches(record) in Format()
445 << xFieldCountN(record) in Format()
446 << xFieldNumInsertQ(record) in Format()
447 << xFieldBaseInsertQ(record) in Format()
448 << xFieldNumInsertT(record) in Format()
449 << xFieldBaseInsertT(record) in Format()
450 << xFieldStrand(record) in Format()
451 << xFieldNameQ(record) in Format()
452 << xFieldSizeQ(record) in Format()
453 << xFieldStartQ(record) in Format()
454 << xFieldEndQ(record) in Format()
455 << xFieldNameT(record) in Format()
456 << xFieldSizeT(record) in Format()
457 << xFieldStartT(record) in Format()
458 << xFieldEndT(record) in Format()
459 << xFieldBlockCount(record) in Format()
460 << xFieldBlockSizes(record) in Format()
461 << xFieldStartsQ(record) in Format()
462 << xFieldStartsT(record) in Format()