Home
last modified time | relevance | path

Searched refs:EndOfLine (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Format/
H A DBreakableToken.cpp871 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection() local
872 if (EndOfLine == StringRef::npos) in BreakableLineCommentSection()
873 EndOfLine = Content[i].size(); in BreakableLineCommentSection()
875 ++EndOfLine; in BreakableLineCommentSection()
876 Content[i] = Content[i].substr(0, EndOfLine); in BreakableLineCommentSection()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DCompilerInvocation.cpp4260 unsigned EndOfLine = 0; in ParsePreprocessorArgs() local
4264 Value.substr(Comma + 1).getAsInteger(10, EndOfLine)) in ParsePreprocessorArgs()
4268 Opts.PrecompiledPreambleBytes.second = (EndOfLine != 0); in ParsePreprocessorArgs()