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()
175 LineClassification ppl{ClassifyLine(ppd)}; in Statement()
178 case LineClassification::Kind::Comment: in Statement()
180 case LineClassification::Kind::IncludeLine: in Statement()
183 case LineClassification::Kind::ConditionalCompilationDirective: in Statement()
184 case LineClassification::Kind::IncludeDirective: in Statement()
185 case LineClassification::Kind::DefinitionDirective: in Statement()
186 case LineClassification::Kind::PreprocessorDirective: in Statement()
194 case LineClassification::Kind::CompilerDirective: in Statement()
206 case LineClassification::Kind::Source: in Statement()
225 if (line.kind == LineClassification::Kind::CompilerDirective) { in Statement()
228 if (inFixedForm_ && line.kind == LineClassification::Kind::Source) { in Statement()
889 if (lineClass.kind == LineClassification::Kind::Comment) { in SkipCommentLine()
895 LineClassification::Kind::ConditionalCompilationDirective || in SkipCommentLine()
896 lineClass.kind == LineClassification::Kind::PreprocessorDirective) { in SkipCommentLine()
906 (lineClass.kind == LineClassification::Kind::IncludeDirective || in SkipCommentLine()
907 lineClass.kind == LineClassification::Kind::IncludeLine)) { in SkipCommentLine()
1071 ClassifyLine(nextLine_).kind == LineClassification::Kind::Source; in IsImplicitContinuation()
1086 std::optional<Prescanner::LineClassification>
1121 return {LineClassification{ in IsFixedFormCompilerDirectiveLine()
1122 LineClassification::Kind::CompilerDirective, payloadOffset, ss}}; in IsFixedFormCompilerDirectiveLine()
1127 std::optional<Prescanner::LineClassification>
1149 return {LineClassification{ in IsFreeFormCompilerDirectiveLine()
1150 LineClassification::Kind::CompilerDirective, offset, sp}}; in IsFreeFormCompilerDirectiveLine()
1194 Prescanner::LineClassification Prescanner::ClassifyLine( in ClassifyLine()
1197 if (std::optional<LineClassification> lc{ in ClassifyLine()
1202 return {LineClassification::Kind::Comment}; in ClassifyLine()
1205 if (std::optional<LineClassification> lc{ in ClassifyLine()
1210 return {LineClassification::Kind::Comment, in ClassifyLine()
1215 return {LineClassification::Kind::IncludeLine, *quoteOffset}; in ClassifyLine()
1220 return {LineClassification::Kind::ConditionalCompilationDirective}; in ClassifyLine()
1222 return {LineClassification::Kind::IncludeDirective}; in ClassifyLine()
1224 return {LineClassification::Kind::DefinitionDirective}; in ClassifyLine()
1226 return {LineClassification::Kind::PreprocessorDirective}; in ClassifyLine()
1229 return {LineClassification::Kind::Source}; in ClassifyLine()