• Home
  • Raw
  • Download

Lines Matching refs:LineClassification

92   LineClassification line{ClassifyLine(nextLine_)};  in Statement()
94 case LineClassification::Kind::Comment: in Statement()
98 case LineClassification::Kind::IncludeLine: in Statement()
102 case LineClassification::Kind::ConditionalCompilationDirective: in Statement()
103 case LineClassification::Kind::IncludeDirective: in Statement()
104 case LineClassification::Kind::DefinitionDirective: in Statement()
105 case LineClassification::Kind::PreprocessorDirective: in Statement()
108 case LineClassification::Kind::CompilerDirective: in Statement()
144 case LineClassification::Kind::Source: in Statement()
171 LineClassification ppl{ClassifyLine(ppd)}; in Statement()
174 case LineClassification::Kind::Comment: in Statement()
176 case LineClassification::Kind::IncludeLine: in Statement()
179 case LineClassification::Kind::ConditionalCompilationDirective: in Statement()
180 case LineClassification::Kind::IncludeDirective: in Statement()
181 case LineClassification::Kind::DefinitionDirective: in Statement()
182 case LineClassification::Kind::PreprocessorDirective: in Statement()
188 case LineClassification::Kind::CompilerDirective: in Statement()
199 case LineClassification::Kind::Source: in Statement()
217 if (line.kind == LineClassification::Kind::CompilerDirective) { in Statement()
814 if (lineClass.kind == LineClassification::Kind::Comment) { in SkipCommentLine()
820 LineClassification::Kind::ConditionalCompilationDirective || in SkipCommentLine()
821 lineClass.kind == LineClassification::Kind::PreprocessorDirective) { in SkipCommentLine()
831 (lineClass.kind == LineClassification::Kind::IncludeDirective || in SkipCommentLine()
832 lineClass.kind == LineClassification::Kind::IncludeLine)) { in SkipCommentLine()
996 ClassifyLine(nextLine_).kind == LineClassification::Kind::Source; in IsImplicitContinuation()
1011 std::optional<Prescanner::LineClassification>
1046 return {LineClassification{ in IsFixedFormCompilerDirectiveLine()
1047 LineClassification::Kind::CompilerDirective, payloadOffset, ss}}; in IsFixedFormCompilerDirectiveLine()
1052 std::optional<Prescanner::LineClassification>
1074 return {LineClassification{ in IsFreeFormCompilerDirectiveLine()
1075 LineClassification::Kind::CompilerDirective, offset, sp}}; in IsFreeFormCompilerDirectiveLine()
1119 Prescanner::LineClassification Prescanner::ClassifyLine( in ClassifyLine()
1122 if (std::optional<LineClassification> lc{ in ClassifyLine()
1127 return {LineClassification::Kind::Comment}; in ClassifyLine()
1130 if (std::optional<LineClassification> lc{ in ClassifyLine()
1135 return {LineClassification::Kind::Comment, in ClassifyLine()
1140 return {LineClassification::Kind::IncludeLine, *quoteOffset}; in ClassifyLine()
1145 return {LineClassification::Kind::ConditionalCompilationDirective}; in ClassifyLine()
1147 return {LineClassification::Kind::IncludeDirective}; in ClassifyLine()
1149 return {LineClassification::Kind::DefinitionDirective}; in ClassifyLine()
1151 return {LineClassification::Kind::PreprocessorDirective}; in ClassifyLine()
1154 return {LineClassification::Kind::Source}; in ClassifyLine()