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

  /external/libcxx/test/support/
filesystem_test_helper.hpp 335 const CharT* StrEnd(CharT const* P) {
341 return StrEnd(P) - P;
  /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/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;
  /external/clang/lib/Basic/
Diagnostic.cpp 680 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
681 OutStr.append(DiagStr, StrEnd);
682 DiagStr = StrEnd;
    [all...]
  /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...]

Completed in 739 milliseconds