Home | History | Annotate | Download | only in Support

Lines Matching full:indent

436   /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
534 int Indent;
775 Indent = -1;
1019 while (Indent > ToColumn) {
1023 Indent = Indents.pop_back_val();
1034 if (Indent < ToColumn) {
1035 Indents.push_back(Indent);
1036 Indent = ToColumn;
1340 assert(Indent >= -1 && "Indent must be >= -1 !");
1341 unsigned indent = static_cast<unsigned>(Indent + 1);
1376 if (LeadingBlanks && (Column < indent) && *Tmp == '\t') {
1392 if (!FlowLevel && Column < indent)
1473 unsigned Indent = 0;
1475 Indent = unsigned(*Current - '0');
1478 return Indent;
1527 "Leading all-spaces line must be smaller than the block indent",
1536 // discovered block indent.
1600 unsigned BlockExitIndent = Indent < 0 ? 0 : (unsigned)Indent;