• Home
  • Raw
  • Download

Lines Matching full:setw

41     LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Bytecode"  in PrintAndReset()
42 << std::setw(numberRightAdjustment) << "bcIndex" in PrintAndReset()
43 << std::setw(numberRightAdjustment) << "Count" in PrintAndReset()
44 << std::setw(numberRightAdjustment) << "TypedPathCount" in PrintAndReset()
45 << std::setw(numberRightAdjustment) << "SlowPathCount" in PrintAndReset()
46 << std::setw(numberRightAdjustment + 1) << "TypedPathRate"; in PrintAndReset()
60 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->fir… in PrintAndReset()
61 << std::setw(numberRightAdjustment) << "NA" in PrintAndReset()
62 << std::setw(numberRightAdjustment) << val.Count() in PrintAndReset()
63 << std::setw(numberRightAdjustment) << val.TypedPathCount() in PrintAndReset()
64 << std::setw(numberRightAdjustment) << val.SlowPathCount() in PrintAndReset()
65 … << std::setw(numberRightAdjustment) << val.TypedPathCount() * hundred / val.Count() << "%"; in PrintAndReset()
75 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Total" in PrintAndReset()
76 << std::setw(numberRightAdjustment) << "NA" in PrintAndReset()
77 << std::setw(numberRightAdjustment) << totalCount in PrintAndReset()
78 << std::setw(numberRightAdjustment) << totalTypedPathCount in PrintAndReset()
79 << std::setw(numberRightAdjustment) << totalSlowPathCount in PrintAndReset()
80 … << std::setw(numberRightAdjustment) << totalTypedPathCount * hundred / totalCount << "%"; in PrintAndReset()
165 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(record.… in FilterMethodToPrint()
166 << std::setw(numberRightAdjustment) << it->first in FilterMethodToPrint()
167 << std::setw(numberRightAdjustment) << record.Count() in FilterMethodToPrint()
168 << std::setw(numberRightAdjustment) << record.GetFast() in FilterMethodToPrint()
169 << std::setw(numberRightAdjustment) << record.GetSlow() in FilterMethodToPrint()
170 … << std::setw(numberRightAdjustment) << record.GetFast() * hundred / record.Count() << "%"; in FilterMethodToPrint()