Home
last modified time | relevance | path

Searched refs:SpacePos (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp143 size_t SpacePos = Line.find(' '); in ParseDFTLine() local
144 if (SpacePos == std::string::npos) in ParseDFTLine()
149 const char *Beg = Line.c_str() + SpacePos + 1; in ParseDFTLine()
/src/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2764 const char *SpacePos = nullptr; in isEndOfBlockCommentWithEscapedNewLine() local
2782 SpacePos = CurPtr; in isEndOfBlockCommentWithEscapedNewLine()
2823 if (SpacePos && !L->isLexingRawMode()) in isEndOfBlockCommentWithEscapedNewLine()
2824 L->Diag(SpacePos, diag::backslash_newline_space); in isEndOfBlockCommentWithEscapedNewLine()
/src/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp895 size_t SpacePos = MatchStr.substr(0, VarEndIdx).find_first_of(" \t"); in parsePattern() local
896 if (SpacePos != StringRef::npos) { in parsePattern()
897 SM.PrintMessage(SMLoc::getFromPointer(MatchStr.data() + SpacePos), in parsePattern()