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

/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/
H A DBuiltins.cpp119 char *EndPos; local
120 unsigned Width = ::strtol(WidthPos, &EndPos, 10);
121 assert(*EndPos == ':' && "Vector width specific must end with a ':'");
169 char *EndPos; local
170 int CalleeIdx = ::strtol(CalleePos, &EndPos, 10);
174 while (*EndPos == ',') {
175 const char *PayloadPos = EndPos + 1;
177 int PayloadIdx = ::strtol(PayloadPos, &EndPos, 10);
181 assert(*EndPos == '>' && "Callback callee specifier must end with a '>'");
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPLexerChange.cpp241 const char *EndPos = CurLexer->BufferEnd;
242 if (EndPos != CurLexer->BufferStart &&
243 (EndPos[-1] == '\n' || EndPos[-1] == '\r')) {
244 --EndPos;
247 if (EndPos != CurLexer->BufferStart &&
248 (EndPos[-1] == '\n' || EndPos[-1] == '\r') &&
249 EndPos[-1] != EndPos[
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerIO.cpp41 auto EndPos = T.tellg(); local
42 if (EndPos < 0) return {};
43 size_t FileLen = EndPos;
H A DFuzzerDriver.cpp497 auto EndPos = StartPos + Dict[i].size(); local
498 for (auto It = StartPos; It != EndPos; ++It)
501 StartPos = std::search(EndPos, Data.end(),
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteMacros.cpp170 unsigned EndPos;
173 EndPos = RawOffs+RawTok.getLength();
187 RB.InsertTextBefore(EndPos, "*/");
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceScriptToken.cpp226 auto EndPos = Data.find("*/", Pos); local
227 if (EndPos == StringRef::npos)
230 advance(EndPos - Pos);
/netbsd-current/sys/external/bsd/gnu-efi/dist/lib/
H A Dsread.c307 UINTN EndPos; local
319 EndPos = Offset + *ReadSize;
320 if (EndPos > FHand->SourceSize) {
/netbsd-current/external/apache2/llvm/dist/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');
/netbsd-current/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DDwarfLinkerForBinary.h95 uint64_t EndPos);
H A DDwarfLinkerForBinary.cpp620 const std::vector<ValidReloc> &Relocs, uint64_t StartPos, uint64_t EndPos) {
628 CurReloc->Offset < EndPos) {
619 getRelocations( const std::vector<ValidReloc> &Relocs, uint64_t StartPos, uint64_t EndPos) argument
/netbsd-current/external/apache2/llvm/dist/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);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1031 size_t EndPos = String.find('}', i);
1032 assert(EndPos != StringRef::npos &&
1034 addAsmOperand(String.slice(i, EndPos+1), IsIsolatedToken);
1035 Prev = EndPos + 1;
1036 i = EndPos;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1276 const char *EndPos = BufData.data() + FIDAndOffset.second; local
1284 for (const char *CurPos = EndPos - (ColNo - 1); CurPos != EndPos;

Completed in 211 milliseconds