reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Format/AffectedRangeManager.cpp
   34     if (Line->InPPDirective) {
tools/clang/lib/Format/ContinuationIndenter.cpp
  845         State.Line->InPPDirective && State.Line->Type != LT_ImportStatement;
 1810           State.Line->InPPDirective, Encoding, Style);
 1822         State.Line->InPPDirective, Encoding, Style, Whitespaces.useCRLF());
 2213   return Style.ColumnLimit - (State.Line->InPPDirective ? 2 : 0);
tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
  157   if (!Line->Affected || Line->InPPDirective || !Line->startsWith(tok::r_brace))
tools/clang/lib/Format/TokenAnnotator.cpp
  213     } else if (Line.InPPDirective &&
  228     } else if (!Line.MustBeDeclaration && !Line.InPPDirective) {
tools/clang/lib/Format/UnwrappedLineFormatter.cpp
   59     if (Line.InPPDirective) {
   86         !Line.InPPDirective)
  207     if (TheLine->InPPDirective &&
  208         (!I[1]->InPPDirective || I[1]->First->HasUnescapedNewline))
  404     if (TheLine->InPPDirective &&
  417     if (I + 2 != E && I[2]->InPPDirective && !I[2]->First->HasUnescapedNewline)
  434     if (I[1]->InPPDirective != (*I)->InPPDirective ||
  434     if (I[1]->InPPDirective != (*I)->InPPDirective ||
  435         (I[1]->InPPDirective && I[1]->First->HasUnescapedNewline))
  467     bool InPPDirective = I[0]->InPPDirective;
  473       if (Line->InPPDirective != InPPDirective)
  487           if (Line->InPPDirective != InPPDirective)
  661     if (I[0]->InPPDirective && I + 1 != E &&
  807           /*StartOfTokenColumn=*/State.Column, State.Line->InPPDirective);
 1114       unsigned ColumnLimit = getColumnLimit(TheLine.InPPDirective, NextLine);
 1121            TheLine.InPPDirective); // don't split #regions in C#
 1160                                            TheLine.InPPDirective);
 1164           Whitespaces->addUntouchableToken(*Tok, TheLine.InPPDirective);
 1220       (!PreviousLine->InPPDirective || !RootToken.HasUnescapedNewline))
 1239                                  Line.InPPDirective &&
 1253        (NextLine->InPPDirective &&
tools/clang/lib/Format/UsingDeclarationsSorter.cpp
  193     if (AnnotatedLines[I]->InPPDirective ||