Home | History | Annotate | Download | only in Support

Lines Matching defs:Indent

411   /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
481 int Indent;
704 , Indent(-1)
722 , Indent(-1)
941 while (Indent > ToColumn) {
945 Indent = Indents.pop_back_val();
956 if (Indent < ToColumn) {
957 Indents.push_back(Indent);
958 Indent = ToColumn;
1259 assert(Indent >= -1 && "Indent must be >= -1 !");
1260 unsigned indent = static_cast<unsigned>(Indent + 1);
1295 if (LeadingBlanks && (Column < indent) && *Tmp == '\t') {
1311 if (!FlowLevel && Column < indent)