Lines Matching refs:setw
119 // std::setw is used to set the output width and different width values are set to keep the format aligned.
120 oss << std::left << std::setw(21) << windowName // 21 is width
121 << std::left << std::setw(10) << windowNode->GetDisplayId() // 10 is width
122 << std::left << std::setw(8) << windowNode->GetCallingPid() // 8 is width
123 << std::left << std::setw(6) << windowNode->GetWindowId() // 6 is width
124 << std::left << std::setw(5) << static_cast<uint32_t>(windowNode->GetWindowType()) // 5 is width
125 << std::left << std::setw(5) << static_cast<uint32_t>(windowNode->GetWindowMode()) // 5 is width
126 << std::left << std::setw(5) << windowNode->GetWindowFlags() // 5 is width
127 << std::left << std::setw(5) << zOrder // 5 is width
128 << std::left << std::setw(12) << static_cast<uint32_t>(windowNode->GetRequestedOrientation()) // 12 is width
130 << std::left << std::setw(5) << rect.posX_ // 5 is width
131 << std::left << std::setw(5) << rect.posY_ // 5 is width
132 << std::left << std::setw(5) << rect.width_ // 5 is width
133 << std::left << std::setw(5) << rect.height_ // 5 is width