Searched refs:StrEnd (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp222 const char *StrEnd = strchr(StrStart, '}'); local
223 if (!StrEnd)
227 std::string Val(StrStart, StrEnd);
229 LastEmitted = StrEnd+1;
387 const char *StrEnd = strchr(StrStart, '}'); local
388 if (!StrEnd)
392 std::string Val(StrStart, StrEnd);
394 LastEmitted = StrEnd+1;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp538 const char *StrEnd = Str.end(); local
545 for (; CurPtr != StrEnd; ++CurPtr) {
570 if (CurPtr == StrEnd) {
590 if (CurPtr == StrEnd) {
624 if (CurPtr == StrEnd) { // Premature end.
641 while (CurPtr != StrEnd && isDigit(*CurPtr))
672 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp817 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); local
818 OutStr.append(DiagStr, StrEnd);
819 DiagStr = StrEnd;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp540 const llvm::UTF8 *StrEnd = Str.bytes_end(); local
542 if (llvm::isLegalUTF8String(&StrBegin, StrEnd)) {

Completed in 61 milliseconds