Lines Matching full:setw
39 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Bytecode" in ~OptCodeProfiler()
40 << std::setw(numberRightAdjustment) << "Count" in ~OptCodeProfiler()
41 << std::setw(numberRightAdjustment) << "TypedPathCount" in ~OptCodeProfiler()
42 << std::setw(numberRightAdjustment) << "SlowPathCount" in ~OptCodeProfiler()
43 << std::setw(numberRightAdjustment + 1) << "TypedPathRate"; in ~OptCodeProfiler()
57 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->fir… in ~OptCodeProfiler()
58 << std::setw(numberRightAdjustment) << val.Count() in ~OptCodeProfiler()
59 << std::setw(numberRightAdjustment) << val.TypedPathCount() in ~OptCodeProfiler()
60 << std::setw(numberRightAdjustment) << val.SlowPathCount() in ~OptCodeProfiler()
61 … << std::setw(numberRightAdjustment) << val.TypedPathCount() * hundred / val.Count() << "%"; in ~OptCodeProfiler()
71 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Total" in ~OptCodeProfiler()
72 << std::setw(numberRightAdjustment) << totalCount in ~OptCodeProfiler()
73 << std::setw(numberRightAdjustment) << totalTypedPathCount in ~OptCodeProfiler()
74 << std::setw(numberRightAdjustment) << totalSlowPathCount in ~OptCodeProfiler()
75 … << std::setw(numberRightAdjustment) << totalTypedPathCount * hundred / totalCount << "%"; in ~OptCodeProfiler()