Home
last modified time | relevance | path

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

/external/perfetto/include/perfetto/base/
Dlogging.h61 constexpr const char* StrEnd(const char* s) { in StrEnd() function
62 return *s ? StrEnd(s + 1) : s; in StrEnd()
74 return BasenameRecursive(StrEnd(str), str, StrEnd(str)); in Basename()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp215 const char *StrEnd = strchr(StrStart, '}'); in EmitMSInlineAsmStr() local
216 if (!StrEnd) in EmitMSInlineAsmStr()
220 std::string Val(StrStart, StrEnd); in EmitMSInlineAsmStr()
222 LastEmitted = StrEnd+1; in EmitMSInlineAsmStr()
359 const char *StrEnd = strchr(StrStart, '}'); in EmitGCCInlineAsmStr() local
360 if (!StrEnd) in EmitGCCInlineAsmStr()
364 std::string Val(StrStart, StrEnd); in EmitGCCInlineAsmStr()
366 LastEmitted = StrEnd+1; in EmitGCCInlineAsmStr()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp269 const char *StrEnd = strchr(StrStart, '}'); in EmitInlineAsm() local
270 if (StrEnd == 0) in EmitInlineAsm()
274 std::string Val(StrStart, StrEnd); in EmitInlineAsm()
276 LastEmitted = StrEnd+1; in EmitInlineAsm()
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/
Dpath.append.pass.cpp139 LHS.append(RHS, StrEnd(RHS)); in doAppendSourceAllocTest()
162 InputIter REnd(StrEnd(R)); in doAppendSourceAllocTest()
232 path& Ref = LHS.append(RHS, StrEnd(RHS)); in doAppendSourceTest()
254 InputIter REnd(StrEnd(R)); in doAppendSourceTest()
Dpath.concat.pass.cpp129 LHS.concat(RHS, StrEnd(RHS)); in doConcatSourceAllocTest()
152 InputIter REnd(StrEnd(R)); in doConcatSourceAllocTest()
221 path& Ref = LHS.concat(RHS, StrEnd(RHS)); in doConcatSourceTest()
242 InputIter REnd(StrEnd(R)); in doConcatSourceTest()
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/
Dsource.pass.cpp37 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCaseImpl()
39 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCaseImpl()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp329 const char *StrEnd = strchr(StrStart, '}'); in EmitGCCInlineAsmStr() local
330 if (!StrEnd) in EmitGCCInlineAsmStr()
334 std::string Val(StrStart, StrEnd); in EmitGCCInlineAsmStr()
336 LastEmitted = StrEnd+1; in EmitGCCInlineAsmStr()
/external/clang/lib/AST/
DStmt.cpp479 const char *StrEnd = Str.end(); in AnalyzeAsmString() local
486 for (; CurPtr != StrEnd; ++CurPtr) { in AnalyzeAsmString()
511 if (CurPtr == StrEnd) { in AnalyzeAsmString()
531 if (CurPtr == StrEnd) { in AnalyzeAsmString()
563 if (CurPtr == StrEnd) { // Premature end. in AnalyzeAsmString()
580 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
611 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr); in AnalyzeAsmString()
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/
Dsource.pass.cpp42 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCase()
44 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCase()
/external/libcxx/test/support/
Dfilesystem_test_helper.hpp343 const CharT* StrEnd(CharT const* P) { in StrEnd() function
349 return StrEnd(P) - P; in StrLen()
/external/clang/lib/Basic/
DDiagnostic.cpp680 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); in FormatDiagnostic() local
681 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic()
682 DiagStr = StrEnd; in FormatDiagnostic()