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 313 const char *StrEnd = strchr(StrStart, '}');
314 if (StrEnd == 0)
318 std::string Val(StrStart, StrEnd);
320 LastEmitted = StrEnd+1;
  /external/clang/lib/AST/
Stmt.cpp 446 const char *StrEnd = Str.end();
453 for (; CurPtr != StrEnd; ++CurPtr) {
475 if (CurPtr == StrEnd) {
495 if (CurPtr == StrEnd) {
523 if (CurPtr == StrEnd) { // Premature end.
536 while (CurPtr != StrEnd && isDigit(*CurPtr))
555 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 681 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
682 OutStr.append(DiagStr, StrEnd);
683 DiagStr = StrEnd;
    [all...]

Completed in 70 milliseconds