Home
last modified time | relevance | path

Searched refs:StrEnd (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DObjDumper.cpp73 const uint8_t *StrEnd = StringContent.bytes_end(); in printAsStringList() local
75 while (CurrentWord <= StrEnd) { in printAsStringList()
77 StrEnd - CurrentWord); in printAsStringList()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/
H A Dpath.concat.pass.cpp134 LHS.concat(RHS, StrEnd(RHS)); in doConcatSourceAllocTest()
165 InputIter REnd(StrEnd(R)); in doConcatSourceAllocTest()
237 path& Ref = LHS.concat(RHS, StrEnd(RHS)); in doConcatSourceTest()
258 InputIter REnd(StrEnd(R)); in doConcatSourceTest()
H A Dpath.append.pass.cpp178 LHS.append(RHS, StrEnd(RHS)); in doAppendSourceAllocTest()
221 InputIter REnd(StrEnd(R)); in doAppendSourceAllocTest()
293 path& Ref = LHS.append(RHS, StrEnd(RHS)); in doAppendSourceTest()
314 InputIter REnd(StrEnd(R)); in doAppendSourceTest()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp223 const char *StrEnd = strchr(StrStart, '}'); in EmitInlineAsmStr() local
224 if (!StrEnd) in EmitInlineAsmStr()
228 AP->PrintSpecial(MI, OS, StringRef(StrStart, StrEnd - StrStart)); in EmitInlineAsmStr()
229 LastEmitted = StrEnd+1; in EmitInlineAsmStr()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/
H A Dsource.pass.cpp39 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCaseImpl()
41 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCaseImpl()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/
H A Dsource.pass.cpp46 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCase()
48 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCase()
/llvm-project-15.0.7/clang/lib/AST/
H A DStmt.cpp604 const char *StrEnd = Str.end(); in AnalyzeAsmString() local
611 for (; CurPtr != StrEnd; ++CurPtr) { in AnalyzeAsmString()
636 if (CurPtr == StrEnd) { in AnalyzeAsmString()
658 if (CurPtr == StrEnd) { in AnalyzeAsmString()
697 if (CurPtr == StrEnd) { // Premature end. in AnalyzeAsmString()
713 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
744 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr); in AnalyzeAsmString()
/llvm-project-15.0.7/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp429 size_t StrEnd = Str.find('\0', Offset); in terminatedSubstr() local
430 if (StrEnd == StringLiteral::npos) { in terminatedSubstr()
435 size_t StrLen = StrEnd - Offset; in terminatedSubstr()
/llvm-project-15.0.7/clang/lib/Basic/
H A DDiagnostic.cpp883 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); in FormatDiagnostic() local
884 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic()
885 DiagStr = StrEnd; in FormatDiagnostic()
/llvm-project-15.0.7/libcxx/test/support/
H A Dfilesystem_test_helper.h505 const CharT* StrEnd(CharT const* P) { in StrEnd() function
511 return StrEnd(P) - P; in StrLen()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp176 Value *StrEnd = B.CreateInBoundsGEP(B.getInt8Ty(), StrBeg, Off, "endptr"); in convertStrToInt() local
177 B.CreateStore(StrEnd, EndPtr); in convertStrToInt()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprObjC.cpp540 const llvm::UTF8 *StrEnd = Str.bytes_end(); in BuildObjCBoxedExpr() local
542 if (llvm::isLegalUTF8String(&StrBegin, StrEnd)) { in BuildObjCBoxedExpr()