Searched refs:EndPos (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DBuiltins.cpp122 char *EndPos; local
123 unsigned Width = ::strtol(WidthPos, &EndPos, 10);
124 assert(*EndPos == ':' && "Vector width specific must end with a ':'");
172 char *EndPos; local
173 int CalleeIdx = ::strtol(CalleePos, &EndPos, 10);
177 while (*EndPos == ',') {
178 const char *PayloadPos = EndPos + 1;
180 int PayloadIdx = ::strtol(PayloadPos, &EndPos, 10);
184 assert(*EndPos == '>' && "Callback callee specifier must end with a '>'");
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp242 const char *EndPos = CurLexer->BufferEnd;
243 if (EndPos != CurLexer->BufferStart &&
244 (EndPos[-1] == '\n' || EndPos[-1] == '\r')) {
245 --EndPos;
248 if (EndPos != CurLexer->BufferStart &&
249 (EndPos[-1] == '\n' || EndPos[-1] == '\r') &&
250 EndPos[-1] != EndPos[
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteMacros.cpp170 unsigned EndPos;
173 EndPos = RawOffs+RawTok.getLength();
187 RB.InsertTextBefore(EndPos, "*/");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp41 auto EndPos = T.tellg(); local
42 if (EndPos < 0) return {};
43 size_t FileLen = EndPos;
H A DFuzzerDriver.cpp533 auto EndPos = StartPos + Dict[i].size(); local
534 for (auto It = StartPos; It != EndPos; ++It)
537 StartPos = std::search(EndPos, Data.end(),
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp94 auto EndPos = Code.find("\n", End); local
95 if (EndPos == llvm::StringRef::npos)
96 EndPos = Code.size();
99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n');
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1419 size_t EndPos = MangledName.find('@'); local
1420 if (EndPos == StringView::npos) {
1424 StringView NamespaceKey = MangledName.substr(0, EndPos);
1426 MangledName = MangledName.substr(EndPos + 1);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1032 size_t EndPos = String.find('}', i);
1033 assert(EndPos != StringRef::npos &&
1035 addAsmOperand(String.slice(i, EndPos+1), IsIsolatedToken);
1036 Prev = EndPos + 1;
1037 i = EndPos;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1255 const char *EndPos = BufData.data() + FIDAndOffset.second; local
1263 for (const char *CurPos = EndPos - (ColNo - 1); CurPos != EndPos;

Completed in 193 milliseconds