Lines Matching full:width
30 static constexpr int WIDTH = 20; variable
31 static constexpr int COLUMN_WIDTH = NAME_WIDTH + WIDTH * 6;
101 …TRACE(INFO) << std::left << std::setw(NAME_WIDTH) << name_ << std::right << std::setw(WIDTH) << id_ in Print()
102 … << std::setw(WIDTH) << codesize_ << std::setw(WIDTH) << hotness_ << std::setw(WIDTH) in Print()
103 … << count << std::fixed << std::setprecision(PRECISION) << std::setw(WIDTH) in Print()
104 << avgProfileBytecodeTime << std::setw(WIDTH) << totalTime; in Print()
146 …LOG_TRACE(INFO) << std::setw(NAME_WIDTH + WIDTH * (TOTAL_COLUMN - PROFILE_BYTECODE_TIME_COLUMN)) <… in Print()
147 … << std::right << std::setw(WIDTH * PROFILE_BYTECODE_TIME_COLUMN) << "Profile Bytecode Time(ms)"; in Print()
148 …ACE(INFO) << std::left << std::setw(NAME_WIDTH) << "Name" << std::right << std::setw(WIDTH) << "Id" in Print()
149 … << std::setw(WIDTH) << "CodeSize" << std::setw(WIDTH) << "Hotness" << std::setw(WIDTH) in Print()
150 … << "Count" << std::setw(WIDTH) << "Avg(ms)" << std::setw(WIDTH) << "Total(ms)"; in Print()