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

  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 334 const char *StrEnd = strchr(StrStart, '}');
335 if (!StrEnd)
339 std::string Val(StrStart, StrEnd);
341 LastEmitted = StrEnd+1;
  /external/clang/lib/Basic/
Diagnostic.cpp 666 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
667 OutStr.append(DiagStr, StrEnd);
668 DiagStr = StrEnd;
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 477 const char *StrEnd = Str.end();
484 for (; CurPtr != StrEnd; ++CurPtr) {
506 if (CurPtr == StrEnd) {
526 if (CurPtr == StrEnd) {
558 if (CurPtr == StrEnd) { // Premature end.
575 while (CurPtr != StrEnd && isDigit(*CurPtr))
604 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
    [all...]

Completed in 193 milliseconds