HomeSort by relevance Sort by last modified time
    Searched refs:StrEnd (Results 1 - 15 of 15) sorted by null

  /external/perfetto/include/perfetto/base/
logging.h 43 constexpr const char* StrEnd(const char* s) {
44 return *s ? StrEnd(s + 1) : s;
56 return BasenameRecursive(StrEnd(str), str, StrEnd(str));
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.construct/
source.pass.cpp 38 const CharT* TestPathEnd = StrEnd(TestPath);
40 const std::size_t SSize = StrEnd(Expect) - Expect;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.construct/
source.pass.cpp 38 const CharT* TestPathEnd = StrEnd(TestPath);
40 const std::size_t SSize = StrEnd(Expect) - Expect;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/
path.append.pass.cpp 129 LHS.append(RHS, StrEnd(RHS));
152 InputIter REnd(StrEnd(R));
221 path& Ref = LHS.append(RHS, StrEnd(RHS));
242 InputIter REnd(StrEnd(R));
path.concat.pass.cpp 130 LHS.concat(RHS, StrEnd(RHS));
153 InputIter REnd(StrEnd(R));
222 path& Ref = LHS.concat(RHS, StrEnd(RHS));
243 InputIter REnd(StrEnd(R));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 269 const char *StrEnd = strchr(StrStart, '}');
270 if (StrEnd == 0)
274 std::string Val(StrStart, StrEnd);
276 LastEmitted = StrEnd+1;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/
path.append.pass.cpp 129 LHS.append(RHS, StrEnd(RHS));
152 InputIter REnd(StrEnd(R));
221 path& Ref = LHS.append(RHS, StrEnd(RHS));
242 InputIter REnd(StrEnd(R));
path.concat.pass.cpp 130 LHS.concat(RHS, StrEnd(RHS));
153 InputIter REnd(StrEnd(R));
222 path& Ref = LHS.concat(RHS, StrEnd(RHS));
243 InputIter REnd(StrEnd(R));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 329 const char *StrEnd = strchr(StrStart, '}');
330 if (!StrEnd)
334 std::string Val(StrStart, StrEnd);
336 LastEmitted = StrEnd+1;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/
source.pass.cpp 43 const CharT* TestPathEnd = StrEnd(TestPath);
45 const std::size_t SSize = StrEnd(Expect) - Expect;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.assign/
source.pass.cpp 43 const CharT* TestPathEnd = StrEnd(TestPath);
45 const std::size_t SSize = StrEnd(Expect) - Expect;
  /external/clang/lib/AST/
Stmt.cpp 479 const char *StrEnd = Str.end();
486 for (; CurPtr != StrEnd; ++CurPtr) {
511 if (CurPtr == StrEnd) {
531 if (CurPtr == StrEnd) {
563 if (CurPtr == StrEnd) { // Premature end.
580 while (CurPtr != StrEnd && isDigit(*CurPtr))
611 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
    [all...]
  /external/libcxx/test/support/
filesystem_test_helper.hpp 335 const CharT* StrEnd(CharT const* P) {
341 return StrEnd(P) - P;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
filesystem_test_helper.hpp 335 const CharT* StrEnd(CharT const* P) {
341 return StrEnd(P) - P;
  /external/clang/lib/Basic/
Diagnostic.cpp 680 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
681 OutStr.append(DiagStr, StrEnd);
682 DiagStr = StrEnd;
    [all...]

Completed in 211 milliseconds